diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-02 12:33:49 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-02 12:33:49 +0200 |
commit | 9ad3f318b1eb574004f7db2306f9c84b5e8c949d (patch) | |
tree | 53d070e7cdecc0299d9e8242ce037215b1b16452 | |
parent | 71092ce6a4db21f91da5eb3cc964fd193e7342e9 (diff) |
Don't install lemonbar in the first place
Fixes #30
-rwxr-xr-x | install.sh | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -39,7 +39,7 @@ if command_exists apt; then echo "deb [arch=$(dpkg --print-architecture)] https://updates.signal.org/desktop/apt xenial main" | sudo tee -a /etc/apt/sources.list.d/signal-xenial.list ${SUDO} apt update - ${SUDO} apt install -y \ + ${SUDO} apt install --no-install-recommends -y \ bspwm \ xorg \ rofi \ @@ -59,8 +59,6 @@ if command_exists apt; then hexchat \ brightnessctl \ cava - ${SUDO} apt purge -y \ - lemonbar # automatically installed but unwanted else echo "Your distro is not supported." exit 1 |