You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
#! /bin/sh |
|
|
|
#--- General ---# |
|
|
|
# Basic definitions |
|
bspc config border_width 4 |
|
bspc config window_gap 20 |
|
bspc config split_ratio 0.502 |
|
bspc config top_padding "$PANEL_HEIGHT" |
|
|
|
# Program startup |
|
"$HOME"/.scripts/wm/wallpaper.sh & |
|
"$HOME"/.scripts/wm/programs.sh & |
|
"$HOME"/.scripts/panel/lemonbar.sh & |
|
|
|
# Colors |
|
bspc config focused_border_color "$FGCOLOR_INACTIVE" |
|
bspc config normal_border_color "$BGCOLOR_INACTIVE" |
|
bspc config active_border_color "$BGCOLOR_INACTIVE" |
|
bspc config presel_feedback_color "$FGCOLOR_INACTIVE" |
|
|
|
# Node |
|
bspc config borderless_monocle true |
|
bspc config gapless_monocle true |
|
bspc config initial_polarity second_child |
|
bspc config single_monocle true |
|
|
|
# Pointer |
|
bspc config focus_follows_pointer true |
|
bspc config pointer_follows_monitor true |
|
bspc config pointer_modifier mod4 |
|
|
|
#--- Desktops ---# |
|
|
|
# Set desktops |
|
"$HOME"/.scripts/wm/desktops.sh |
|
|
|
# Open program on specific desktop |
|
bspc rule -a firefox desktop="$WS1" |
|
bspc rule -a Thunar desktop="$WS3" |
|
bspc rule -a krita desktop="$WS5" follow=on |
|
|
|
# Set program properties |
|
bspc rule -a Arandr state=floating |
|
bspc rule -a Bar layer=above |
|
bspc rule -a feh state=floating |
|
bspc rule -a firefox:Places state=floating |
|
bspc rule -a Lxappearance state=floating |
|
bspc rule -a mpv state=floating center=on |
|
bspc rule -a Pavucontrol state=floating |
|
bspc rule -a Qemu-system-i386 state=floating |
|
bspc rule -a Qemu-system-x86_64 state=floating |
|
bspc rule -a Zathura state=tiled
|
|
|