00_variables.config 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ### 00 Variables
  2. # i3 config file (v5)
  3. #
  4. # Please see http://i3wm.org/docs/userguide.html for a complete reference!
  5. # Mod1 = Alt
  6. # Mod4 = Window
  7. # TODO:
  8. # Borders
  9. # Window-specific commands
  10. # Colors
  11. # Interprocess Communication
  12. # Tab-Through Workspaces
  13. # i3bar
  14. ##Begin Definitions
  15. # Monitor Names
  16. set_from_resource $Mon1 mon1 "HDMI-0"
  17. set_from_resource $Mon2 mon2 $Mon1
  18. # Main control Key
  19. set $mod Mod4
  20. set $win Mod4
  21. set $alt Mod1
  22. #Set some windows to float by default
  23. for_window [class="Wine"] floating enable
  24. for_window [window_role="Msgcompose"] floating enable
  25. for_window [title="Eclipse Marketplace "] floating enable
  26. for_window [title="Friends"] floating enable
  27. for_window [class=".*Preferences.*"] floating enable
  28. # Focus ignores mouse
  29. focus_follows_mouse no
  30. # Only show pop-ups in fullscreen if it belongs to the window
  31. popup_during_fullscreen smart
  32. # Wrap if focus shifts off-screen
  33. force_focus_wrapping no
  34. # Disable mouse following screen focus
  35. mouse_warping none
  36. # Font
  37. font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
  38. # Owncloud Sync
  39. exec owncloud &
  40. # Network Manager
  41. exec nm-applet &
  42. ##End Definitions