22 lines
450 B
Plaintext
22 lines
450 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
# Autostart
|
||
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
||
|
xrdb -load $HOME/.config/.Xresources &
|
||
|
dunst -conf $HOME/.config/dunst/dunstrc &
|
||
|
picom &
|
||
|
feh --bg-fill ~/Pictures/nordic-obsession.png &
|
||
|
killall -q polybar
|
||
|
polybar example 2>&1 | tee -a /tmp/polybar.log & disown
|
||
|
|
||
|
xset -b
|
||
|
|
||
|
bspc monitor -d I II III IV V
|
||
|
|
||
|
bspc wm -O eDP HDMI-A-0
|
||
|
bspc config border_width 0
|
||
|
bspc config top_padding 34
|
||
|
bspc config window_gap 16
|
||
|
bspc config split_ratio 0.6
|
||
|
|