SUP3R-US3R

I3gaps

Mar 17th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. ### I3GAPS ###
  2.  
  3. for_window [class="^.*"] border pixel 5 #troque o 5 por 0 se quiser excluir as bordas.
  4. smart_borders on #no_gaps
  5. #espaços entre as janelas
  6. gaps inner 10
  7. gaps outer 3
  8.  
  9. set $mode_gaps Gaps: (o) outer, (i) inner
  10. set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
  11. set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
  12. bindsym $mod+Shift+g mode "$mode_gaps"
  13.  
  14. mode "$mode_gaps" {
  15. bindsym o mode "$mode_gaps_outer"
  16. bindsym i mode "$mode_gaps_inner"
  17. bindsym Return mode "default"
  18. bindsym Escape mode "default"
  19. }
  20.  
  21. mode "$mode_gaps_inner" {
  22. bindsym plus gaps inner current plus 5
  23. bindsym minus gaps inner current minus 5
  24. bindsym 0 gaps inner current set 0
  25.  
  26. bindsym Shift+plus gaps inner all plus 5
  27. bindsym Shift+minus gaps inner all minus 5
  28. bindsym Shift+0 gaps inner all set 0
  29.  
  30. bindsym Return mode "default"
  31. bindsym Escape mode "default"
  32. }
  33. mode "$mode_gaps_outer" {
  34. bindsym plus gaps outer current plus 5
  35. bindsym minus gaps outer current minus 5
  36. bindsym 0 gaps outer current set 0
  37.  
  38. bindsym Shift+plus gaps outer all plus 5
  39. bindsym Shift+minus gaps outer all minus 5
  40. bindsym Shift+0 gaps outer all set 0
  41.  
  42. bindsym Return mode "default"
  43. bindsym Escape mode "default"
  44. }
Advertisement
Add Comment
Please, Sign In to add comment