diff --git a/1-install.sh b/1-install.sh index e7a9ed0..b422c3c 100755 --- a/1-install.sh +++ b/1-install.sh @@ -12,7 +12,7 @@ echo "START INSTALLATION..." # Install required packages # ------------------------------------------------------ echo "-> Install main packages" -sudo pacman -S alacritty scrot nitrogen picom starship chromium slock neomutt rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme +sudo pacman -S alacritty scrot nitrogen picom starship chromium slock neomutt rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator # ------------------------------------------------------ # Install required packages @@ -44,6 +44,8 @@ rm ~/.bashrc ln -s ~/dotfiles/.bashrc ~/.bashrc rm ~/.gtkrc-2.0 ln -s ~/dotfiles/.gtkrc-2.0 ~/.gtkrc-2.0 +rm -r ~/.config/gtk-3.0/ +ln -s ~/dotfiles/gtk-3.0/ ~/.config/ # ------------------------------------------------------ # Clone wallpapers diff --git a/gtk-3.0/settings.ini b/gtk-3.0/settings.ini new file mode 100644 index 0000000..61e64ba --- /dev/null +++ b/gtk-3.0/settings.ini @@ -0,0 +1,15 @@ +[Settings] +gtk-theme-name=Adapta-Nokto-Eta +gtk-icon-theme-name=Tela-circle-orange-dark +gtk-font-name=Cantarell 11 +gtk-cursor-theme-name=Adwaita +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index 62f6961..436d20d 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ diff --git a/qtile/config.py b/qtile/config.py index 6b31588..1f404b2 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -45,7 +45,13 @@ from libqtile.widget.image import Image from libqtile.dgroups import simple_key_binder mod = "mod4" -terminal = guess_terminal("alacritty") + +if (os.path.isfile("/usr/bin/VBoxService")): + terminal = "terminator" +else: + terminal = "alacritty" + +terminal = guess_terminal(terminal) browser = "chromium" wp = "/home/raabe/wallpaper/"