first commit

This commit is contained in:
2026-03-30 14:53:09 -06:00
commit fbec1a6ade
81 changed files with 4479 additions and 0 deletions

7
showfps.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
while true; do
FPS=$(hyprctl -j activeworkspace | jq '.monitorID' | xargs -I {} hyprctl -j monitors | jq ".[] | select(.id=={}) | .lastFrameTime" | awk '{ printf "%.0f", 1000 / $1 }')
echo "{\"text\":\"🎮 ${FPS} FPS\"}"
sleep 1
done