Advertisement
Volteos

My bspwmrc file

Oct 8th, 2017
4,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. #! /bin/sh
  2.  
  3. #### AUTOSTART ####
  4. sxhkd &
  5. compton &
  6. wal -i $HOME/Pictures/Neon-City-Red.jpg &
  7. synclient TapButton1=1 TapButton2=3 TapButton3=2 & #For laptop touchpad
  8. xset -b & #For annoying beeping sounds
  9. /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
  10. volumeicon &
  11. nm-applet &
  12. polybar future &
  13. pulseaudio &
  14.  
  15.  
  16. #### WORKSPACES AND BORDERS ####
  17.  
  18. #Monitor allocation and their workspaces
  19. bspc monitor -d Terminal Sublime Firefox Thunar Evince
  20.  
  21. #Border gaps,width, and padding
  22. bspc config border_width 0
  23. bspc config window_gap 25
  24. bspc config split_ratio 0.5
  25. bspc config borderless_monocle true
  26. bspc config gapless_monocle true
  27.  
  28. bspc config top_padding 20
  29. bspc config bottom_padding 20
  30. bspc config left_padding 20
  31. bspc config right_padding 20
  32.  
  33. bspc rule -a URxvt desktop='^1' follow=on
  34. bspc rule -a Subl3 desktop='^2' follow=on
  35. bspc rule -a Firefox desktop='^3' follow=on
  36. bspc rule -a Thunar desktop='^4' follow=on
  37. bspc rule -a Evince desktop='^5'follow=on
  38.  
  39. #Focus on pointer
  40. bspc config focus_follows_pointer true
  41. bspc config pointer_follows_focus true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement