My configuration files for Debian/Ubuntu applications
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Home.md 1.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Welcome to the Lain wiki!
  2. If you spot a typo or have a suggestion to improve these pages, please notify me opening an [issue](https://github.com/lcpz/lain/issues) format. Thank you.
  3. Dependencies
  4. ------------
  5. Package | Requested by | Reasons of choice
  6. --- | --- | ---
  7. [curl](https://curl.haxx.se) | `imap`, `mpd`, and `weather` widgets | 1. faster and simpler to use than [LuaSocket](https://github.com/diegonehab/luasocket); 2. it's in the core of almost every distro; 3. can be called [asynchronously](https://awesomewm.org/doc/api/libraries/awful.spawn.html#easy_async)
  8. GLib >= 2.54 | `fs` widget | Pure Awesome/Lua implementation.
  9. The second dependency will be removed once all major distros update their Gio/Glib versions.
  10. Installation
  11. ------------
  12. ### Arch Linux
  13. [AUR package](https://aur.archlinux.org/packages/lain-git/)
  14. ### Other distributions
  15. ```shell
  16. git clone https://github.com/lcpz/lain.git ~/.config/awesome/lain
  17. ```
  18. Also available via [LuaRocks](https://luarocks.org/modules/aajjbb/lain).
  19. Usage
  20. --------
  21. First, include it into your `rc.lua`:
  22. ```lua
  23. local lain = require("lain")
  24. ```
  25. Then check out the submodules you want:
  26. - [Layouts](https://github.com/lcpz/lain/wiki/Layouts)
  27. - [Widgets](https://github.com/lcpz/lain/wiki/Widgets)
  28. - [Utilities](https://github.com/lcpz/lain/wiki/Utilities)