diff options
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | install.sh | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -21,6 +21,7 @@ The `install.sh` script installs the entire setup: - fonts-noto-color-emoji - xclip - hexchat +- brightnessctl It then symlinks the configuration files for those packages to the files in this repository. This has two advantages. @@ -41,7 +41,8 @@ if command_exists apt; then fonts-hack \ fonts-noto-color-emoji \ xclip \ - hexchat + hexchat \ + brightnessctl $SUDO apt purge -y \ lemonbar # automatically installed but unwanted else @@ -70,4 +71,6 @@ ln -s ${PWD}/alacritty.yml ~/.config/alacritty/alacritty.yml mkdir -p ~/.config ln -s ${PWD}/picom.conf ~/.config/picom.conf +$SUDO usermod -G video ${USER} + ./shell_only.sh |