Reno is the second iteration of the AWMTK-powered AwesomeWM config.
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.

29 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
12 months ago
2 years ago
12 months ago
  1. -- This file is part of Reno desktop.
  2. --
  3. -- Reno desktop is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  4. --
  5. -- Reno desktop is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  6. --
  7. -- You should have received a copy of the GNU General Public License along with Reno desktop. If not, see <https://www.gnu.org/licenses/>.
  8. -- Libraries path
  9. root_path = os.getenv("HOME").."/.config/awesome"
  10. package.path = package.path
  11. ..";"..root_path.."/libs/?.lua"
  12. ..";"..root_path.."/libs/?/init.lua"
  13. package.cpath = package.cpath
  14. ..";"..root_path.."/libs/?.so"
  15. -- Modules list
  16. require("modules.collect_garbage")
  17. require("modules.global")
  18. require("modules.powermanX")
  19. require("modules.base")
  20. require("modules.autostart")
  21. require("modules.rules_stub")
  22. require("modules.compositor")
  23. require("modules.binds")
  24. require("modules.xdg_data")
  25. require("modules.static_tags")
  26. require("modules.tiling")
  27. require("modules.desktop")
  28. require("modules.macros")