feat: gamemode, toggle-touchpad and restore-waybar \n fix: albert glitches and bugs in the scripts \n And appearance changes concerning waybar and single windows
This commit is contained in:
parent
6e4c3bb974
commit
d33ecc32e7
14 changed files with 124 additions and 19 deletions
|
|
@ -8,11 +8,4 @@ hyprpaper &
|
|||
albert &
|
||||
# mako &
|
||||
systemctl --user start hyprpolkitagent &
|
||||
|
||||
# Launch waybar depending on the last status
|
||||
waybar_status=~/.config/hypr/status/waybar
|
||||
if [ "$(cat $waybar_status)" == "on" ]; then
|
||||
waybar &
|
||||
elif [ "$(cat $waybar_status)" != "off" ]; then
|
||||
hyprctl notify 0 3000 0 Failed to retrieve waybar status
|
||||
fi
|
||||
~/.config/hypr/scripts/restore-waybar.sh
|
||||
22
.config/hypr/scripts/gamemode.sh
Executable file
22
.config/hypr/scripts/gamemode.sh
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# From Hyprland documentation - https://wiki.hyprland.org/0.41.2/Configuring/Uncommon-tips--tricks/#toggle-animationsbluretc-hotkey
|
||||
|
||||
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==1{print $2}')
|
||||
if [ "$HYPRGAMEMODE" = 1 ] ; then
|
||||
hyprctl --batch "\
|
||||
keyword animations:enabled 0;\
|
||||
keyword decoration:drop_shadow 0;\
|
||||
keyword decoration:blur:enabled 0;\
|
||||
keyword general:gaps_in 0;\
|
||||
keyword general:gaps_out 0;\
|
||||
keyword general:border_size 1;\
|
||||
keyword decoration:rounding 0"
|
||||
killall waybar
|
||||
hyprctl notify 1 2000 0 "Enabled game mode"
|
||||
exit
|
||||
fi
|
||||
|
||||
hyprctl reload
|
||||
~/.config/hypr/scripts/restore-waybar.sh
|
||||
hyprctl notify 1 2000 0 "Disabled game mode"
|
||||
10
.config/hypr/scripts/restore-waybar.sh
Executable file
10
.config/hypr/scripts/restore-waybar.sh
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Launch waybar depending on the last status
|
||||
waybar_status=~/.config/hypr/status/waybar
|
||||
if [ "$(cat $waybar_status)" == "on" ]; then
|
||||
killall waybar
|
||||
waybar &
|
||||
elif [ "$(cat $waybar_status)" != "off" ]; then
|
||||
hyprctl notify 0 3000 0 Failed to retrieve waybar status
|
||||
fi
|
||||
34
.config/hypr/scripts/toggle-touchpad.sh
Executable file
34
.config/hypr/scripts/toggle-touchpad.sh
Executable file
|
|
@ -0,0 +1,34 @@
|
|||
#!/bin/sh
|
||||
|
||||
device=znt0001:00-14e5:650e-touchpad
|
||||
toggle_variable="device[${device}]:enabled"
|
||||
|
||||
hyprctl keyword "${toggle_variable}" true
|
||||
|
||||
status_file="$XDG_RUNTIME_DIR/touchpad.status"
|
||||
|
||||
enable_touchpad() {
|
||||
printf "true" > "${status_file}"
|
||||
|
||||
hyprctl notify 1 2000 0 "Enabled touchpad"
|
||||
|
||||
hyprctl keyword "${toggle_variable}" true
|
||||
}
|
||||
|
||||
disable_touchpad() {
|
||||
printf "false" > "${status_file}"
|
||||
|
||||
hyprctl notify 0 2000 0 "Disabled Touchpad"
|
||||
|
||||
hyprctl keyword "${toggle_variable}" false
|
||||
}
|
||||
|
||||
if ! [ -f "${status_file}" ]; then
|
||||
enable_touchpad
|
||||
else
|
||||
if [ $(cat "${status_file}") = "true" ]; then
|
||||
disable_touchpad
|
||||
elif [ $(cat "${status_file}") = "false" ]; then
|
||||
enable_touchpad
|
||||
fi
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue