2021-09-07 23:08:46 +02:00
|
|
|
#!/usr/bin/env bash
|
2021-03-28 17:11:08 +02:00
|
|
|
|
|
|
|
# MONITORS #
|
2021-05-11 11:21:15 +02:00
|
|
|
if [[ "$(uname -n)" == *'desktop'* ]]; then
|
2021-07-15 17:20:29 +02:00
|
|
|
bspc monitor HDMI-0 -d 1 2 3 4 5
|
|
|
|
bspc monitor HDMI-1 -d 6 7 8 9 10
|
2021-04-19 11:53:49 +02:00
|
|
|
else
|
2021-07-15 17:20:29 +02:00
|
|
|
bspc monitor -d 1 2 3 4 5 6 7 8 9
|
2021-04-19 11:53:49 +02:00
|
|
|
fi
|
2021-03-28 17:11:08 +02:00
|
|
|
|
|
|
|
# CONFIGURATION #
|
|
|
|
|
2021-06-03 15:09:43 +02:00
|
|
|
bspc config border_width 2
|
2021-07-15 17:20:29 +02:00
|
|
|
bspc config window_gap 5
|
2021-06-03 15:09:43 +02:00
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
2021-03-28 17:11:08 +02:00
|
|
|
bspc config focus_follows_pointer true
|
|
|
|
|
2021-04-20 10:19:42 +02:00
|
|
|
# Dracula theme #
|
|
|
|
|
2021-07-30 11:43:25 +02:00
|
|
|
bspc config focused_border_color "#bd93f9"
|
2021-04-20 10:19:42 +02:00
|
|
|
|
2021-03-28 17:11:08 +02:00
|
|
|
# WINDOW RULES #
|
2021-06-03 15:09:43 +02:00
|
|
|
bspc rule -a Steam state=tiled
|
2021-04-11 17:49:28 +02:00
|
|
|
bspc rule -a Zathura state=tiled
|
2021-04-19 19:45:48 +02:00
|
|
|
bspc rule -a Emacs state=tiled
|
2021-04-11 17:49:28 +02:00
|
|
|
|
2021-03-28 17:11:08 +02:00
|
|
|
# AUTOSTART #
|
2021-09-05 17:02:11 +02:00
|
|
|
[[ ! $(pidof -x sxhkd) ]] && sxhkd &
|
2021-09-07 23:08:46 +02:00
|
|
|
feh --bg-fill ~/.dotfiles/config/wallpaper/base.png
|
2021-09-08 20:30:19 +02:00
|
|
|
systemctl --user start polybar
|