Advertisement
Guest User

Untitled

a guest
Apr 7th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. set $mod Mod1
  2.  
  3. # Font for window titles. Will also be used by the bar unless a different font
  4. # is used in the bar {} block below.
  5. font pango:Monospace 18
  6.  
  7. # Use Mouse+$mod to drag floating windows to their wanted position
  8. floating_modifier $mod
  9.  
  10. # kill focused window
  11. bindsym $mod+Shift+q kill
  12.  
  13. # start dmenu (a program launcher)
  14. bindsym $mod+d exec dmenu_run
  15.  
  16. bindsym $mod+Shift+r exec i3-msg restart
  17.  
  18.  
  19. # switch to workspace
  20. bindsym $mod+1 workspace 1
  21. bindsym $mod+2 workspace 2
  22. bindsym $mod+3 workspace 3
  23. bindsym $mod+4 workspace 4
  24. bindsym $mod+5 workspace 5
  25. bindsym $mod+6 workspace 6
  26. bindsym $mod+7 workspace 7
  27. bindsym $mod+8 workspace 8
  28. bindsym $mod+9 workspace 9
  29. bindsym $mod+0 workspace 10
  30.  
  31. bar {
  32. position top
  33. status_command python ~/.config/i3/i3status-py.py 2>/tmp/i3log.err | tee /tmp/i3log
  34. workspace_buttons yes
  35. verbose true
  36. }
  37.  
  38. # start a terminal
  39. bindsym $mod+Return exec i3-sensible-terminal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement