Update dotfiles (2026-02-16 13:30:23)

This commit is contained in:
2026-02-16 13:30:23 +01:00
parent 4b408fec54
commit ba545b73f1
16 changed files with 155 additions and 53 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ ecosystem {
}
cursor {
no_hardware_cursors = true
no_hardware_cursors = false
use_cpu_buffer = 2
}
xwayland {
@@ -3,4 +3,3 @@
opengl {
nvidia_anti_flicker = false
}
@@ -16,8 +16,15 @@ bind = $mainMod, C, exec, uwsm-app -S out -- Telegram # Open Telegram
bind = $mainMod, S, exec, uwsm-app -S out -- spotify-launcher # Open Spotify
bind = $mainMod, X, exec, uwsm-app -S out -- env SDL_VIDEODRIVER="x11" osu-lazer # pen Osu-Lazer!
# Zoom
bind = $mainMod, mouse_down, exec, hyprctl -q keyword cursor:zoom_factor $(hyprctl getoptions cursor:zoom_factor -j | jq '.float * 1.3')
bind = $mainMod, mouse_up, exec, hyprctl -q keyword cursor:zoom_factor $(hyprctl getoptions cursor:zoom_factor -j | jq '(.float * 0.7) | if . < 1 then 1 else . end')
# binde = SUPER, mouse_up, exec, echo zoom-in | socat - UNIX-CONNECT:/run/user/1000/i-zoom.sock
# binde = SUPER, mouse_down, exec, echo zoom-out | socat - UNIX-CONNECT:/run/user/1000/i-zoom.sock
# bind = SUPER, 0, exec, echo zoom-reset | socat - UNIX-CONNECT:/run/user/1000/i-zoom.sock
# Actions
bind = $mainMod CTRL, Q, exec, uwsm-app -S out -- hyprshutdown --post-cmd 'systemctl poweroff'
bind = $mainMod CTRL, Q, exec, uwsm-app -S out -- systemctl poweroff
# bind = $mainMod SHIFT, S, exec, uwsm-app -S out -- hyprshot -m region -o /home/inorishio/Pictures/Screenshots -s
bind = $mainMod, TAB, workspace, m+1 # Open next workspace
bind = $mainMod, Escape, workspace, m-1 # Open previous workspace
@@ -25,11 +32,13 @@ bind = $mainMod, Escape, workspace, m-1 # Open previous workspace
# QML
bind = CTRL, mouse:274, global, I-DeskPet:toggle-Region
bind = SHIFT, mouse:274, global, I-DeskPet:toggle-Layer
bind = $mainMod, Z, global, I-DeskPet:cycle-zIndex
bind = $mainMod CTRL, RETURN, global, z-cast:toggle-launcher
bind = $mainMod, N, global, zshell-nc:toggle-nc
bind = $mainMod, L, global, zshell-lock:lock
bind = $mainMod, L, exec, zshell -l
bind = $mainMod SHIFT, S, global, ZShell:screenshot
bind = $mainMod CTRL, S, global, ZShell:screenshotFreeze
bind = $mainMod CTRL, N, global, zshell-nc:toggle-dnd
# Mediakeys
bind = $mainMod, code:67, exec, uwsm-app -S out -- playerctl play-pause # F1
+4
View File
@@ -19,6 +19,10 @@ layerrule = blur on, match:namespace ZShell-Launcher
layerrule = blur_popups on, match:namespace ZShell-Launcher
layerrule = ignore_alpha 0.5, match:namespace ZShell-Launcher
layerrule = blur on, match:namespace ZShell-Auth
layerrule = blur_popups on, match:namespace ZShell-Auth
layerrule = ignore_alpha 0.5, match:namespace ZShell-Auth
layerrule = blur on, match:namespace IDeskPet-Pet
layerrule = blur_popups on, match:namespace IDeskPet-Pet
layerrule = ignore_alpha 0.5, match:namespace IDeskPet-Pet
@@ -24,6 +24,12 @@ windowrule = pin on, match:class (hyprland-share-picker)
windowrule = center on, match:title (hyprland-share-picker)
windowrule = size 600 400, match:class (hyprland-share-picker)
# Games
windowrule = tile on, match:title ^(ZenlessZoneZero)$
windowrule = move -1000 -1000, match:class ^(steam_app_default)$, match:title ^$
windowrule = tile on, match:title ^(Wuthering Waves)$
windowrule = fullscreen on, match:title ^(osu!)$
# Screenlock
windowrule = idle_inhibit always, match:content 2
windowrule = idle_inhibit always, match:content 3
+2 -2
View File
@@ -1,12 +1,12 @@
# Run on boot
exec-once = uwsm app -S out -- hyprpm reload
exec-once = uwsm app -S out -- obs --scene "Recording" --startreplaybuffer --minimize-to-tray
exec-once = uwsm app -S out -- /usr/bin/otd-daemon
exec-once = uwsm app -S out -- Telegram -startintray
exec-once = uwsm app -S out -- discord --start-minimized
exec-once = uwsm app -S out -- steam -silent
exec-once = uwsm app -S out -- qs -d -p /home/inorishio/.config/quickshell/z-bar-qt/shell.qml
exec-once = uwsm app -S out -- zshell
exec-once = uwsm app -S out -- qs -d -p /home/inorishio/.config/quickshell/I-DesktopPet/shell.qml
exec-once = uwsm app -S out -- sleep 5 && hyprpm reload
# Sourcing config files
source = ~/.config/hypr/conf/animations/InoriShio-animation.conf
+1 -1
View File
@@ -5,7 +5,7 @@ profile {
}
profile {
time = 21:00
time = 20:00
temperature = 3200
gamma = 1
}
+4 -4
View File
@@ -1,9 +1,9 @@
#!/bin/zsh
#!/usr/bin/env zsh
VPN="https://anyconnect.vught.nl"
if ( pgrep openconnect > /dev/null ); then
pkill openconnect
if [[ $(pgrep openconnect) ]]; then
pkill openconnect
else
openconnect-sso --server $VPN
openconnect-sso --server $VPN
fi