Advertisement
Guest User

Untitled

a guest
Mar 4th, 2019
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # set root pointer
  4. xsetroot -cursor_name left_ptr
  5.  
  6. # key bindings
  7. sxhkd &
  8.  
  9. # wallpaper
  10. nitrogen --restore &
  11.  
  12. # launch compton
  13. al-compositor --start &
  14.  
  15. # xfce settings
  16. xfsettingsd &
  17.  
  18. # panel
  19. al-polybar-session &
  20.  
  21. # wallpaper
  22. feh --bg-fill /usr/share/backgrounds/archlabs/11.jpg &
  23.  
  24. # Set some bsp specific stuff
  25. bspc monitor -d I II III IV V VI VII VIII IX X
  26.  
  27. bspc config border_width 3
  28. bspc config window_gap 12
  29. bspc config top_padding 18
  30. bspc config right_padding 0
  31. bspc config bottom_padding 0
  32. bspc config left_padding 0
  33.  
  34. bspc config split_ratio 0.54
  35. bspc config borderless_monocle false
  36. bspc config gapless_monocle true
  37. bspc config paddingless_monocle true
  38.  
  39. bspc config pointer_modifier mod1
  40. bspc config click_to_focus true
  41. bspc config pointer_action1 move
  42. bspc config pointer_action2 resize_side
  43. bspc config pointer_action3 resize_corner
  44.  
  45. bspc rule -a thunar desktop='^1' state=floating follow=on
  46. bspc rule -a firefox desktop='^2'
  47. bspc rule -a Zathura state=tiling
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement