blob: ae698af0f177f2149072e725c85e210068b4c2b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#! /bin/sh
pgrep -x sxhkd > /dev/null || sxhkd &
xbanish &
thunderbird &
dunst &
picom --backend glx & # Vsync
tsarbar &
sleep 1
tsarbar_status.sh &
feh --bg-scale ~/media/img/bbwp10x.png &
bspc monitor -d www dev game misc
bspc config border_width 1
bspc config window_gap 0
bspc config top_padding 20
bspc config split_ratio 0.5
bspc config borderless_monocle true
bspc config gapless_monocle true
bspc config normal_active_color "#202020"
bspc config focused_border_color "#FFFFFF"
|