atlas-desktop/config/.config/hypr/scripts/sharp-mode.sh

22 lines
783 B
Bash
Raw Permalink Normal View History

2025-04-04 16:51:00 +02:00
#!/usr/bin/env sh
2026-04-27 20:12:34 +02:00
# Disables animations accros the desktop (as well as some other tweaks)
# Similar to game mode but with the goal to enhance productivity
2025-04-04 16:51:00 +02:00
# From Hyprland documentation - https://wiki.hyprland.org/0.41.2/Configuring/Uncommon-tips--tricks/#toggle-animationsbluretc-hotkey
2026-04-27 20:12:34 +02:00
HYPRSHARPMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
if [ "$HYPRSHARPMODE" = 1 ] ; then
2025-04-04 16:51:00 +02:00
hyprctl --batch "\
keyword animations:enabled 0;\
keyword general:gaps_in 0;\
keyword general:gaps_out 0;\
keyword general:border_size 1;\
keyword decoration:rounding 0"
2026-04-27 20:12:34 +02:00
hyprctl notify 1 2000 0 "Enabled Sharp mode"
2025-04-04 16:51:00 +02:00
exit
fi
hyprctl reload
2026-04-27 20:12:34 +02:00
# ~/.config/hypr/scripts/restore-waybar.sh
hyprctl notify 1 2000 0 "Disabled Sharp mode"