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

9
scripts/tabc-smart-detach Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
id=$(bspc query -N -n);
if [ "$(tabc printclass $id)" == "tabbed" ]; then
bspc node -p $1;
tabc detach $id;
else \
tabc attach $id $(bspc query -N -n $1);
fi