diff options
author | zachir <zachir@librem.one> | 2022-10-09 00:42:32 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-10-09 00:42:32 -0500 |
commit | 0217995cda2e5b3700b911b5561e99c659fba92b (patch) | |
tree | 80abdcf81366ebf51432b406e5e0e3293930cf8f /monattach-tofi | |
parent | 5355ec2d7e7e79d636e62b70af7dbb39002e98d3 (diff) |
add tofi scripts, replacing barmenu
Diffstat (limited to 'monattach-tofi')
-rwxr-xr-x | monattach-tofi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/monattach-tofi b/monattach-tofi new file mode 100755 index 0000000..f796355 --- /dev/null +++ b/monattach-tofi @@ -0,0 +1,22 @@ +#!/sbin/sh + +XSTATS="$(xrandr)" + +PRIMARY="$(echo "$XSTATS" | grep "primary" | awk '{print $1}')" +RIGHT=false + +for i in $@; do + case "$i" in + "right") + RIGHT="TRUE" ;; + "left") + RIGHT="FALSE" ;; + esac +done + +OUTPUT="$(echo "$XSTATS" | grep ' connected ' | grep -v '[0-9]*x[0-9]*+[0-9]*+[0-9]' | awk '{print $1}' | tofi --height 24 --prompt 'Which output?')" +[ -z "$OUTPUT" ] && exit 2 + +[ "$RIGHT" = "TRUE" ] && ARGS="--right-of $PRIMARY" || ARGS="--left-of $PRIMARY" + +xrandr --output "$OUTPUT" --mode 1920x1080 $ARGS |