13 lines
338 B
Bash
Executable File
13 lines
338 B
Bash
Executable File
#!/bin/bash
|
|
# ~/.config/hypr/scripts/keyboard-layer.sh
|
|
|
|
# This checks which modifiers are active as a proxy for layers
|
|
# Adjust based on your actual layer keys
|
|
|
|
while true; do
|
|
# You might need to adjust this based on your keyboard
|
|
# This is a simplified example
|
|
echo '{"text": "Layer ?", "class": "layer"}'
|
|
sleep 0.5
|
|
done
|