Fixes for the update

This commit is contained in:
Hannes
2026-05-11 21:57:29 +02:00
parent 4a82b18433
commit f9754ea924
8 changed files with 35 additions and 26 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
# Needs To start first
exec-once = tmux new-session -d -s qs 'quickshell'
exec-once = hypridle
# exec-once = hyprpaper
# now via: systemctl --user enable --now hyprpaper.service
exec-once = bash -c '~/.config/hypr/scripts/wallpapers/random_wallpaper.sh > ~/.config/hypr/scripts/wallpaper/random_wallpaper.log'
exec-once = hyprpaper
# now via:
exec-once = bash -c 'sleep 2 && ~/.config/hypr/scripts/wallpapers/random_wallpaper.sh > ~/.config/hypr/scripts/wallpapers/random_wallpaper.log'
exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
exec-once = tmux new-session -d -s keyring '/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh,gpg'
# exec-once = sleep 1 && ~/.config/hypr/scripts/wallpapers/wallpaper.sh
@@ -12,7 +12,7 @@ exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CUR
exec-once = systemctl --user start hyprpolkitagent
exec-once = tmux new-session -d -s carla 'carla -n /home/honney/Downloads/test.carxp'
# exec-once = udiskie -t
exec-once = tmux new-session -d -s fah 'fah-client'
exec-once = tmux new-session -d -s fah 'cd ~/.local/share/fah && fah-client'
exec-once = tmux new-session -d -s ollama '/usr/bin/ollama serve'
exec-once = tmux new-session -d -s ydotool 'ydotoold'
+2 -2
View File
@@ -9,7 +9,7 @@ bind = $mod, F, fullscreen,
bind = $mod, V, togglefloating,
bind = $mod, D, exec, $menu # "Apps"
bind = $mod SHIFT, D, pseudo, # dwindle
bind = $mod, J, togglesplit, # dwindle
# bind = $mod, J, togglesplit, # dwindle
#waybar
bind = $mod SHIFT, B, exec, ~/.config/waybar/launch.sh
@@ -122,4 +122,4 @@ bind = ALT, Y, exec, ~/.config/hypr/scripts/writing/tmdb.sh
# Opening Additional Apps
bind = $mod SHIFT, C, exec, code
bind = $mod SHIFT, V, exec, vscodium
bind = $mod SHIFT, V, exec, vscodium
+17 -1
View File
@@ -2,7 +2,23 @@
# other monitor Stuff is set up
# monitor = name, resolution, position, scale
monitor = desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609, 3840x2160@60, -3840x0, 1, bitdepth, 10, cm, wide
render {
cm_auto_hdr = 1 # 0: off, 1: on, 2: edid
}
monitorv2 {
output = desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609
mode = 3840x2160@60
position = -3840x0
scale = 1
bitdepth = 10
supports_hdr = 1
transform = 0
supports_wide_color = 1
sdr_min_luminance = 1000
sdr_max_luminance = 400
}
monitorv2 {
output = desc:BNQ BenQ EX2710U Y8P00876019
-9
View File
@@ -83,15 +83,6 @@ animations {
animation = workspaces, 1, 6, default
}
dwindle {
pseudotile = yes
preserve_split = yes
}
#gestures {
# workspace_swipe = off
#}
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
+5 -5
View File
@@ -15,7 +15,7 @@ background {
label {
monitor =
text = cmd[update:1000] echo "$(date +"%H:%M")"
color = 0xFFa6d395
color = 0xFFbac3ff
font_size = 80
font_family = JetBrains Mono ExtraBold
position = 0, 140
@@ -27,7 +27,7 @@ label {
label {
monitor =
text = - PAIN IS REAL, BUT SO IS HOPE -
color = 0xFFa0cfd1
color = 0xFFe5bad8
font_size = 12
font_family = JetBrains Mono ExtraLight
position = 0, 80
@@ -39,7 +39,7 @@ label {
label {
monitor =
text = Heya $USER :3
color = 0xFFa6d395
color = 0xFFbac3ff
font_size = 20
font_family = JetBrains Mono Light
position = 0, 0
@@ -55,8 +55,8 @@ input-field {
dots_size = 0.2
dots_spacing = 0.4
dots_center = true
inner_color = 0xFF294f1f
font_color = 0xFFa6d395
inner_color = 0xFF394379
font_color = 0xFFbac3ff
fade_on_empty = false
placeholder_text = unlock the magic...
fail_color = 0xFFffb4ab
+3 -3
View File
@@ -1,5 +1,5 @@
wallpaper {
monitor = *
path = /home/honney/Pictures/Wallpapers/countryside_river.png
monitor = *
path = /home/honney/Pictures/Wallpapers/snow_mountain_dark.png
fit_mode = cover
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ theme {
color_scheme = ~/.local/share/color-schemes/ColloidDark.colors
# Your icon theme
icon_theme = BeautyLine-Garuda
icon_theme = Colloid-Dark
# Main UI font
font = CodeNewRoman Nerd Font
+3 -1
View File
@@ -42,7 +42,9 @@ elif [ -x "/usr/bin/hyprpaper" ]; then
echo "daemon started"
fi
sed -i "3s|path = .*|path = ${image}|" ~/.config/hypr/hyprpaper.conf
hyprctl hyprpaper wallpaper ", $image"
hyprctl monitors -j | jq -r 'sort_by(.id) | .[].name' | while IFS= read -r display; do
hyprctl hyprpaper wallpaper "$display, $image"
done
echo "set Wallpaper to $image with hyprpaper"
fi