feat: add startup reminder notification and dark theme preference;

feat: implement privacy window tagging and screensharing protection rules;
feat: add cursor zoom keybinds and swapnext window keybinds;
feat: add keybinds for locking with sleep and shutdown;
refactor: change monitor swap keybind to focus monitor and adjust toggle mirror script;
chore: comment out hyprfocus and easymotion plugins;
feat: add random wallpaper mode for both monitors;
refactor: rewrite toggle mirror display script for mirror and normal modes
This commit is contained in:
2025-11-06 00:27:36 +03:00
parent ab1d58aed3
commit 070e44a5e0
4 changed files with 152 additions and 85 deletions

View File

@@ -39,4 +39,14 @@ loop() {
done
}
loop
if [[ $1 = "random" ]]; then
random_wallpaper "eDP-1" &
sleep 1
random_wallpaper "HDMI-A-1" &
exit 0
elif [[ -z $1 ]]; then
loop
else
echo "Error: unknown command '$1'"
exit 1
fi