44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
wmname LG3D &
|
|
|
|
# START MONITOR BLOCK
|
|
bspc monitor HDMI-1 -d I II III IV
|
|
bspc monitor eDP-1 -d eDP-1
|
|
# END MONITOR BLOCK
|
|
|
|
bsp-key-daemon
|
|
|
|
bspc config border_width 1
|
|
bspc config window_gap 4
|
|
|
|
bspc config split_ratio 0.54
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
|
|
bspc config pointer_modifier mod4
|
|
bspc config pointer_action1 move
|
|
# bspc config pointer_action2 resize_side
|
|
bspc config pointer_action2 resize_corner
|
|
|
|
# Focus is on the hovered window, but the cursor is
|
|
# moved when the keyboard changes focus
|
|
bspc config focus_follows_pointer true
|
|
bspc config pointer_follows_focus true
|
|
|
|
# bspc rule -a \* state=pseudo_tiled
|
|
bspc rule -a qutebrowser state=tiled
|
|
bspc rule -a KittyScratch state=floating
|
|
bspc rule -a Wrapper-2.0 state=floating # Xfce start menu
|
|
bspc rule -a Rofi state=floating
|
|
bspc rule -a Gimp state=floating
|
|
bspc rule -a Chromium desktop='^2'
|
|
bspc rule -a mplayer2 state=floating
|
|
bspc rule -a Kupfer.py focus=on
|
|
bspc rule -a Screenkey manage=off
|
|
|
|
xsetroot -cursor_name left_ptr &
|
|
"$(dirname "$0")/colors"
|
|
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|