initial commit

This commit is contained in:
daniel fusser
2026-06-21 15:35:58 +02:00
committed by dafu
parent ce5bbf3916
commit 49462fb909
49 changed files with 2269 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/bash
enable=$(wlr-randr --json | jq --arg name "eDP-1" '.[] | select(.name == $name) | .enabled')
if [ $enable == "true" ]; then
wlr-randr --output eDP-1 --off
else
wlr-randr --output eDP-1 --on
fi