33 lines
689 B
Bash
Executable File
33 lines
689 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# set root pointer
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
# key bindings
|
|
sxhkd &
|
|
|
|
# launch compton
|
|
al-compositor --start &
|
|
|
|
# xfce settings, commented out due to issues
|
|
# see: https://bitbucket.org/archlabslinux/skel/issues/1/bspwm-not-working-properly-with
|
|
# xfsettingsd &
|
|
|
|
# panel
|
|
al-polybar-session &
|
|
|
|
# Set some bsp specific stuff
|
|
bspc monitor -d I II III IV V VI VII VIII IX X
|
|
|
|
bspc config window_gap 12
|
|
bspc config border_width 2
|
|
|
|
bspc config split_ratio 0.62
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
|
|
bspc config pointer_modifier mod1
|
|
bspc config pointer_action1 move
|
|
bspc config pointer_action2 resize_side
|
|
bspc config pointer_action3 resize_corner
|