my complicated awesomewm config (SUNSETTED)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.0 KiB

  1. local awful = require("awful")
  2. local gears = require("gears")
  3. -- {{{ Variable definitions
  4. global = {}
  5. global.awesome_dir = os.getenv("HOME").."/.config/awesome/"
  6. global.config_dir = os.getenv("HOME").."/.awesome/"
  7. global.themes_dir = os.getenv("HOME").."/.config/awesome/themes/"
  8. global.theme = global.awesome_dir .. "themes/unity/theme.lua"
  9. global.terminal = "xterm"
  10. global.editor = os.getenv("EDITOR") or "vim"
  11. global.editor_cmd = global.terminal .. " -e ".. global.editor
  12. global.modkey = "Mod4"
  13. awful.layout.layouts = {
  14. awful.layout.suit.floating,
  15. awful.layout.suit.tile,
  16. awful.layout.suit.tile.left,
  17. awful.layout.suit.tile.bottom,
  18. awful.layout.suit.tile.top,
  19. awful.layout.suit.fair,
  20. awful.layout.suit.fair.horizontal,
  21. awful.layout.suit.spiral,
  22. awful.layout.suit.spiral.dwindle,
  23. awful.layout.suit.max,
  24. awful.layout.suit.max.fullscreen,
  25. awful.layout.suit.magnifier,
  26. awful.layout.suit.corner.nw,
  27. -- awful.layout.suit.corner.ne,
  28. -- awful.layout.suit.corner.sw,
  29. -- awful.layout.suit.corner.se,
  30. }
  31. -- }}}