New configuration based on xfce4 + bpswm. No more tint2

This commit is contained in:
2024-06-29 18:25:01 -06:00
parent e06469f47b
commit 72ae9f6ce7
40 changed files with 1560 additions and 252 deletions

14
scripts/bsp-auto-monitors Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/env bash
monitors=($(xrandr | grep " connected " | awk '{ print$1 }'))
monitorcount=${#monitors[*]}
names=(I II III IV V)
if [ $monitorcount -eq 1 ]; then
bspc monitor -d ${names[@]}
else
for((i=0; i<${monitorcount}; i++)); do
name=${names[$i]}
bspc monitor ${monitors[$i]} -d ${name}-0 ${name}-1
done
fi