37 lines
		
	
	
		
			951 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			951 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| # Import user bin for sxhkd
 | |
| PATH="/home/dakedres/bin:$PATH"
 | |
| 
 | |
| pgrep -x sxhkd > /dev/null || sxhkd &
 | |
| wmname LG3D &
 | |
| 
 | |
| bspc monitor -d I II III IV V
 | |
| 
 | |
| bspc config border_width         1
 | |
| bspc config window_gap           4
 | |
| 
 | |
| bspc config split_ratio          0.52
 | |
| 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_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 KittyScratch 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 &
 | |
| 
 | |
| export _JAVA_AWT_WM_NONREPARENTING=1 |