Changes to SXHkD and added script to easily perform xrandr on displays

This commit is contained in:
2025-04-05 19:40:44 +01:00
parent 0d7970742f
commit e1cc5e133d
2 changed files with 28 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env sh
choice=$(xrandr | grep " connected" | sed "s/ .*//" | dmenu -i -p "Display:")
[ ! -z $choice ] && xrandr --output $choice $@