install.sh

This commit is contained in:
Spangenberg 2023-10-21 09:38:07 +02:00
parent ebdab7e429
commit a3269bdb52
5 changed files with 7 additions and 5 deletions

View File

@ -20,7 +20,7 @@ bind = $mainMod CTRL, RETURN, exec, ~/dotfiles/scripts/applauncher.sh
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh
bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh
bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh
#bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/themeswitcher.sh bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/themeswitcher.sh
bind = $mainMod, 1, workspace, 1 bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2 bind = $mainMod, 2, workspace, 2

View File

@ -4,10 +4,11 @@
source $(dirname "$0")/scripts/library.sh source $(dirname "$0")/scripts/library.sh
# install yay # install yay
cd ..
git clone https://aur.archlinux.org/yay-git.git git clone https://aur.archlinux.org/yay-git.git
cd yay-git cd yay-git
makepkg -si makepkg -si
cd .. cd ../dotfiles
# Install required packages # Install required packages
packagesPacman=( packagesPacman=(
@ -27,6 +28,7 @@ packagesPacman=(
"xfce4-power-manager" "xfce4-power-manager"
"mousepad" "mousepad"
"ranger" "ranger"
"thunar"
"ttf-font-awesome" "ttf-font-awesome"
"ttf-fira-sans" "ttf-fira-sans"
"ttf-fira-code" "ttf-fira-code"

View File

@ -114,7 +114,7 @@ set preview_images true
# Preview images in full color with the external command "ueberzug". # Preview images in full color with the external command "ueberzug".
# Images are shown by using a child window. # Images are shown by using a child window.
# Only for users who run X11 in GNU/Linux. # Only for users who run X11 in GNU/Linux.
set preview_images_method ueberzug set preview_images_method w3m
# Delay in seconds before displaying an image with the w3m method. # Delay in seconds before displaying an image with the w3m method.
# Increase it in case of experiencing display corruption. # Increase it in case of experiencing display corruption.

View File

@ -1,4 +1,4 @@
#/bin/sh #/bin/sh
nautilus thunar

View File

@ -22,7 +22,7 @@ if [ ! -f ~/dotfiles/waybar/themes${arrThemes[1]}/style.css ]; then
fi fi
# Loading the configuration and style file based on the username # Loading the configuration and style file based on the username
if [[ $USER = "stefan" ]] if [[ $USER = "raabe" ]]
then then
waybar -c ~/dotfiles/waybar/themes${arrThemes[0]}/myconfig -s ~/dotfiles/waybar/themes${arrThemes[1]}/style.css & waybar -c ~/dotfiles/waybar/themes${arrThemes[0]}/myconfig -s ~/dotfiles/waybar/themes${arrThemes[1]}/style.css &
else else