Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jguer/lulogout
Gtk3 Lua logout box, inspired by oblogout.
https://github.com/jguer/lulogout
awesomewm gtk3 logout lua-lgi
Last synced: 28 days ago
JSON representation
Gtk3 Lua logout box, inspired by oblogout.
- Host: GitHub
- URL: https://github.com/jguer/lulogout
- Owner: Jguer
- License: gpl-3.0
- Created: 2017-06-22T22:00:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T22:23:56.000Z (over 7 years ago)
- Last Synced: 2024-10-13T14:15:33.135Z (2 months ago)
- Topics: awesomewm, gtk3, logout, lua-lgi
- Language: Lua
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lulogout
Gtk3 Lua logout box, inspired by oblogout and made for my awesomewm config but without being dependent on the wm framework.## Config
`config.lua` must be in the same folder as `lulogout`
```
style = {
-- Controls opacity of window
opacity = 0.5;
-- Controls background color of screen
bgcolor = "0,0,0";
-- Icon theme
theme = "simplistic";
-- Each item is a button, "Label, Icon, Shortcut Key, Command"
buttons = {
"Cancel,cancel,q,:cancel",
"Lock,lock,l,i3lock",
"Suspend,suspend,s,systemctl start suspend",
"Hibernate,hibernate,h,systemctl start hibernate",
"Restart,restart,r,systemctl start reboot",
"Shutdown,shutdown,p,systemctl start poweroff"
};
}
```![lulogout](https://github.com/Jguer/jguer.github.io/blob/master/lulogout/lulogout.png?raw=true "Default settings")