37 lines
874 B
Bash
Executable File
37 lines
874 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# MONITORS #
|
|
monitors=($(bspc query -M --names))
|
|
desktops=$(expr 10 / ${#monitors[@]})
|
|
start=1
|
|
end=$desktops
|
|
for monitor in ${monitors[@]}; do
|
|
bspc monitor $monitor -d $(seq -s ' ' $start $end)
|
|
start=$(expr $start + $desktops)
|
|
end=$(expr $end + $desktops)
|
|
done
|
|
|
|
# CONFIGURATION #
|
|
|
|
bspc config border_width 2
|
|
bspc config window_gap 5
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
bspc config focus_follows_pointer true
|
|
|
|
# Dracula theme #
|
|
|
|
bspc config focused_border_color "#bd93f9"
|
|
|
|
# WINDOW RULES #
|
|
bspc rule -a Steam state=tiled
|
|
bspc rule -a Zathura state=tiled
|
|
bspc rule -a Emacs state=tiled
|
|
bspc rule -a 'Emacs:emacs-everywhere' state=floating sticky=on
|
|
bspc rule -a feh state=floating
|
|
|
|
# AUTOSTART #
|
|
[[ ! $(pidof -x sxhkd) ]] && sxhkd &
|
|
feh --bg-fill ~/.config/wallpaper/dracula.png
|
|
systemctl --user start polybar
|