diff --git a/config/hypr/hyprland_SIMONBOX.conf b/config/hypr/hyprland_SIMONBOX.conf index dab70f5..bbaf62d 100644 --- a/config/hypr/hyprland_SIMONBOX.conf +++ b/config/hypr/hyprland_SIMONBOX.conf @@ -17,12 +17,13 @@ exec = gsettings set org.gnome.desktop.interface color-scheme "prefer-dark" # exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 exec-once = udiskie -exec-once = sudo udisksctl mount -b /dev/sda1 +# exec-once = sudo udisksctl mount -b /dev/sdb1 exec-once = waybar exec-once = hypridle exec-once = systemctl --user start sunshine -exec-once = [workspace 3] steam +exec-once = [workspace 1] org.vinegarhq.Sober +exec-once = [workspace 2] steam ############################# ### ENVIRONMENT VARIABLES ### @@ -131,7 +132,7 @@ input { kb_rules = kb_options = ctrl:nocaps, fkeys:basic_13-24 follow_mouse = 1 - sensitivity = 0.4 # -1.0 - 1.0, 0 means no modification. + sensitivity = 0.0 # -1.0 - 1.0, 0 means no modification. accel_profile = flat touchpad { diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 1a64943..68db6af 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -1212,7 +1212,8 @@ confirm_os_window_close -1 #: Color scheme {{{ foreground #c6c6c6 -background #000000 +background #262626 +#background #000000 #: The foreground and background colors. @@ -1316,7 +1317,8 @@ background #000000 #: How much to dim text that has the DIM/FAINT attribute set. One #: means no dimming and zero means fully dimmed (i.e. invisible). -selection_foreground #000000 +selection_foreground #262626 +#selection_foreground #000000 selection_background #eeeeee #: The foreground and background colors for text selected with the diff --git a/config/systemd/user/sunshine.service b/config/systemd/user/sunshine.service index c55faae..f10fb6e 100644 --- a/config/systemd/user/sunshine.service +++ b/config/systemd/user/sunshine.service @@ -7,8 +7,6 @@ StartLimitBurst=5 ExecStart=/usr/bin/sunshine Restart=on-failure RestartSec=5s -#Flatpak Only -#ExecStop=flatpak kill dev.lizardbyte.sunshine [Install] WantedBy=graphical-session.target diff --git a/update_arch.sh b/update_arch.sh index 174e245..e3f3a55 100755 --- a/update_arch.sh +++ b/update_arch.sh @@ -135,18 +135,18 @@ if [ "$NVIDIA_GPU" == "yes" ] || [ "$NVIDIA_1080_GPU" == "yes" ]; then # Install nvidia drivers printf -- '\033[33m Installing NVIDIA drivers\n\033[37m' - if pacman -Qs nvidia-open >/dev/null; then + if pacman -Qs nvidia-open-dkms >/dev/null; then NEW_KERNEL="no" - elif pacman -Qs nvidia >/dev/null; then + elif pacman -Qs nvidia-dkms >/dev/null; then NEW_KERNEL="no" else NEW_KERNEL="yes" fi if [ "$NVIDIA_GPU" == "yes" ]; then - sudo pacman --noconfirm --needed -S nvidia-open + sudo pacman --noconfirm --needed -S nvidia-open-dkms elif [ "$NVIDIA_1080_GPU" == "yes" ]; then - sudo pacman --noconfirm --needed -S nvidia + sudo pacman --noconfirm --needed -S nvidia-dkms fi sudo pacman --noconfirm --needed -S nvidia-utils nvidia-settings opencl-nvidia cuda @@ -377,15 +377,22 @@ if [ "$DESKTOP_BASE" == "yes" ]; then sudo pacman --noconfirm --needed -S noto-fonts poppler-data adobe-source-code-pro-fonts printf -- '\033[33m Installing Sunshine\n\033[37m' - yay --noconfirm --needed -S sunshine + if ! grep -q "^\[lizardbyte\]" /etc/pacman.conf; then + sudo tee -a /etc/pacman.conf >/dev/null <