mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-19 07:19:59 -05:00
11 lines
338 B
Bash
Executable File
11 lines
338 B
Bash
Executable File
#!/usr/bin/bash
|
|
currentshader=$(hyprctl getoption decoration:screen_shader -j | gojq -r '.str')
|
|
|
|
if [[ "$currentshader" != *"extradark.frag" ]]; then
|
|
hyprctl keyword decoration:screen_shader '~/.config/hypr/shaders/extradark.frag'
|
|
else
|
|
hyprctl keyword decoration:screen_shader ''
|
|
hyprctl reload
|
|
fi
|
|
|
|
scripts/hyprsettings tickle |