added all scripts

This commit is contained in:
liph22
2025-12-20 00:03:46 +01:00
parent cf14159137
commit c2f3269124
20 changed files with 1193 additions and 0 deletions

9
layer_notify.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
case $1 in
0) notify-send -t 1500 "Layer 0" "Base/QWERTY" ;;
1) notify-send -t 1500 "Layer 1" "Navigation/Numbers" ;;
2) notify-send -t 1500 "Layer 2" "Symbols" ;;
3) notify-send -t 1500 "Layer 3" "Function Keys" ;;
*) notify-send -t 1500 "Unknown Layer" ;;
esac