├── custom ├── file.lua ├── inspect.lua ├── log.lua ├── obsidian.lua ├── plugins │ └── yt-music.lua ├── setup.lua ├── tbl.lua ├── theme.lua ├── theme │ ├── bottombar.lua │ ├── constants.lua │ ├── icons │ │ ├── ac.png │ │ ├── awesome.png │ │ ├── battery.png │ │ ├── battery_empty.png │ │ ├── battery_low.png │ │ ├── brightness.png │ │ ├── cpu.png │ │ ├── floating.png │ │ ├── fwd.png │ │ ├── hdd.png │ │ ├── mail.png │ │ ├── mail_on.png │ │ ├── mem.png │ │ ├── net.png │ │ ├── next.png │ │ ├── note.png │ │ ├── note_on.png │ │ ├── pacman.png │ │ ├── pause.png │ │ ├── phones.png │ │ ├── play.png │ │ ├── prev.png │ │ ├── rwd.png │ │ ├── scissors.png │ │ ├── square_sel.png │ │ ├── square_unsel.png │ │ ├── stop.png │ │ ├── submenu.png │ │ ├── task.png │ │ ├── temp.png │ │ ├── tile.png │ │ ├── tilebottom.png │ │ ├── tileleft.png │ │ ├── tiletop.png │ │ └── titlebar │ │ │ ├── close_focus.png │ │ │ ├── close_normal.png │ │ │ ├── floating_focus_active.png │ │ │ ├── floating_focus_inactive.png │ │ │ ├── floating_normal_active.png │ │ │ ├── floating_normal_inactive.png │ │ │ ├── maximized_focus_active.png │ │ │ ├── maximized_focus_inactive.png │ │ │ ├── maximized_normal_active.png │ │ │ ├── maximized_normal_inactive.png │ │ │ ├── ontop_focus_active.png │ │ │ ├── ontop_focus_inactive.png │ │ │ ├── ontop_normal_active.png │ │ │ ├── ontop_normal_inactive.png │ │ │ ├── sticky_focus_active.png │ │ │ ├── sticky_focus_inactive.png │ │ │ ├── sticky_normal_active.png │ │ │ └── sticky_normal_inactive.png │ └── sidebar.lua ├── types.lua ├── volume.lua └── widgets │ ├── mem.lua │ └── menu.lua ├── rc.lua └── stylua.toml /custom/file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/file.lua -------------------------------------------------------------------------------- /custom/inspect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/inspect.lua -------------------------------------------------------------------------------- /custom/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/log.lua -------------------------------------------------------------------------------- /custom/obsidian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/obsidian.lua -------------------------------------------------------------------------------- /custom/plugins/yt-music.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/plugins/yt-music.lua -------------------------------------------------------------------------------- /custom/setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/setup.lua -------------------------------------------------------------------------------- /custom/tbl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/tbl.lua -------------------------------------------------------------------------------- /custom/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme.lua -------------------------------------------------------------------------------- /custom/theme/bottombar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/bottombar.lua -------------------------------------------------------------------------------- /custom/theme/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/constants.lua -------------------------------------------------------------------------------- /custom/theme/icons/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/ac.png -------------------------------------------------------------------------------- /custom/theme/icons/awesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/awesome.png -------------------------------------------------------------------------------- /custom/theme/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/battery.png -------------------------------------------------------------------------------- /custom/theme/icons/battery_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/battery_empty.png -------------------------------------------------------------------------------- /custom/theme/icons/battery_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/battery_low.png -------------------------------------------------------------------------------- /custom/theme/icons/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/brightness.png -------------------------------------------------------------------------------- /custom/theme/icons/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/cpu.png -------------------------------------------------------------------------------- /custom/theme/icons/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/floating.png -------------------------------------------------------------------------------- /custom/theme/icons/fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/fwd.png -------------------------------------------------------------------------------- /custom/theme/icons/hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/hdd.png -------------------------------------------------------------------------------- /custom/theme/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/mail.png -------------------------------------------------------------------------------- /custom/theme/icons/mail_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/mail_on.png -------------------------------------------------------------------------------- /custom/theme/icons/mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/mem.png -------------------------------------------------------------------------------- /custom/theme/icons/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/net.png -------------------------------------------------------------------------------- /custom/theme/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/next.png -------------------------------------------------------------------------------- /custom/theme/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/note.png -------------------------------------------------------------------------------- /custom/theme/icons/note_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/note_on.png -------------------------------------------------------------------------------- /custom/theme/icons/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/pacman.png -------------------------------------------------------------------------------- /custom/theme/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/pause.png -------------------------------------------------------------------------------- /custom/theme/icons/phones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/phones.png -------------------------------------------------------------------------------- /custom/theme/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/play.png -------------------------------------------------------------------------------- /custom/theme/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/prev.png -------------------------------------------------------------------------------- /custom/theme/icons/rwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/rwd.png -------------------------------------------------------------------------------- /custom/theme/icons/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/scissors.png -------------------------------------------------------------------------------- /custom/theme/icons/square_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/square_sel.png -------------------------------------------------------------------------------- /custom/theme/icons/square_unsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/square_unsel.png -------------------------------------------------------------------------------- /custom/theme/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/stop.png -------------------------------------------------------------------------------- /custom/theme/icons/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/submenu.png -------------------------------------------------------------------------------- /custom/theme/icons/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/task.png -------------------------------------------------------------------------------- /custom/theme/icons/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/temp.png -------------------------------------------------------------------------------- /custom/theme/icons/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/tile.png -------------------------------------------------------------------------------- /custom/theme/icons/tilebottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/tilebottom.png -------------------------------------------------------------------------------- /custom/theme/icons/tileleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/tileleft.png -------------------------------------------------------------------------------- /custom/theme/icons/tiletop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/tiletop.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/close_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/close_focus.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/close_normal.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/floating_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/floating_focus_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/floating_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/floating_focus_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/floating_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/floating_normal_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/floating_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/floating_normal_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/maximized_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/maximized_focus_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/maximized_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/maximized_focus_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/maximized_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/maximized_normal_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/maximized_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/maximized_normal_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/ontop_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/ontop_focus_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/ontop_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/ontop_focus_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/ontop_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/ontop_normal_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/ontop_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/ontop_normal_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/sticky_focus_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/sticky_focus_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/sticky_focus_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/sticky_focus_inactive.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/sticky_normal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/sticky_normal_active.png -------------------------------------------------------------------------------- /custom/theme/icons/titlebar/sticky_normal_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/icons/titlebar/sticky_normal_inactive.png -------------------------------------------------------------------------------- /custom/theme/sidebar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/theme/sidebar.lua -------------------------------------------------------------------------------- /custom/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/types.lua -------------------------------------------------------------------------------- /custom/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/volume.lua -------------------------------------------------------------------------------- /custom/widgets/mem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/widgets/mem.lua -------------------------------------------------------------------------------- /custom/widgets/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/custom/widgets/menu.lua -------------------------------------------------------------------------------- /rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/rc.lua -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjdevries/config.awesomewm/HEAD/stylua.toml --------------------------------------------------------------------------------