Initial commit

This commit is contained in:
2023-10-04 20:19:25 -04:00
commit fd1f37d786
59 changed files with 5501 additions and 0 deletions

14
scripts/bsp-floating-only Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
if [ ! -z $1 ]; then
# FLOATING_DESKTOP_ID=$(bspc query -D -d '^3')
FLOATING_DESKTOP_ID=$1
bspc subscribe node_add | while read -a msg ; do
desk_id=${msg[2]}
wid=${msg[4]}
[ "$FLOATING_DESKTOP_ID" = "$desk_id" ] && bspc node "$wid" -t floating
done
else
echo "No desktop provided"
fi