dotfiles

<-- duh.
git clone https://hhvn.uk/dotfiles
git clone git://hhvn.uk/dotfiles
Log | Files | Refs | Submodules | LICENSE

conf (838B)


      1 # vim: filetype=rcshell :
      2 
      3 fn set { bspc config $* }
      4 
      5 c_bg  = '#050a10'
      6 c_sel = '#1b364b'
      7 c_urg = '#90222b'
      8 
      9 fn c_global_settings {
     10 	set remove_unplugged_monitors true
     11 	set remove_disabled_monitors true
     12 
     13 	set split_ratio 0.5
     14 
     15 	set borderless_monocle true
     16 	set gapless_monocle true
     17 
     18 	set border_width 2
     19 	set normal_border_color $c_bg
     20 	set active_border_color $c_bg
     21 	set focused_border_color $c_sel
     22 
     23 	set ignore_ewmh_focus true
     24 	set honor_size_hints false
     25 
     26 	set pointer_follows_focus true
     27 	set pointer_modifier super
     28 	set pointer_action1 resize_corner
     29 	set pointer_action2 move
     30 	set pointer_action3 move
     31 	set click_to_focus none
     32 }
     33 
     34 fn rule { bspc rule -a $* }
     35 
     36 fn c_rules {
     37 	rule scrcpy state=floating sticky=on
     38 }
     39 
     40 # Monitors & desktops
     41 c_monpriority = (HDMI1 HDMI2 eDP1)
     42 
     43 c_desktops = (
     44 	'HDMI1 1 2  3 4'
     45 	'HDMI2 5 6  7 8'
     46 	'eDP1  9 10'
     47 )