├── .lua-format ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── autostart.sh ├── configuration ├── apps.lua ├── client │ ├── buttons.lua │ ├── init.lua │ ├── keys.lua │ └── rules.lua ├── init.lua ├── keys │ ├── global.lua │ ├── init.lua │ └── mod.lua ├── picom.conf └── tags │ └── init.lua ├── images ├── aw_exit.png ├── aw_lock.png ├── aw_notif.png ├── aw_scratch.png └── aw_tile_vol.png ├── layout ├── bottom-panel.lua ├── init.lua ├── right-panel │ ├── sidebar-mode-switcher.lua │ └── sidebar.lua └── top-panel.lua ├── liblua_pam.so ├── module ├── auto-start.lua ├── dashboard.lua ├── decorate-client.lua ├── dropdown.lua ├── exit-screen.lua ├── lockscreen.lua ├── notifications.lua ├── panel-builder.lua ├── popup.lua └── titlebar.lua ├── rc.lua ├── theme ├── default-theme.lua ├── icons │ ├── arch.svg │ ├── awesome.svg │ ├── battery-charge.svg │ ├── battery-discharge.svg │ ├── close.svg │ ├── face.svg │ ├── init.lua │ ├── layouts │ │ ├── dwindle.svg │ │ ├── fairh.svg │ │ ├── floating.svg │ │ ├── fullscreen.svg │ │ ├── max.svg │ │ ├── tile.svg │ │ └── tilebottom.svg │ ├── left-arrow.svg │ ├── lock.svg │ ├── logout.svg │ ├── magnify.svg │ ├── power-sleep.svg │ ├── power.svg │ ├── restart.svg │ ├── right-arrow.svg │ ├── ship-wheel.svg │ ├── tag-list-symbols │ │ ├── dash.svg │ │ ├── dot.svg │ │ ├── dots.svg │ │ └── empty.svg │ ├── tag-list │ │ ├── close-small.svg │ │ ├── code.svg │ │ ├── development.svg │ │ ├── file-manager.svg │ │ ├── games.svg │ │ ├── graphics.svg │ │ ├── menu.svg │ │ ├── menu2.svg │ │ ├── multimedia.svg │ │ ├── sandbox.svg │ │ ├── setoolkit.svg │ │ ├── social.svg │ │ ├── spotify.svg │ │ ├── terminal.svg │ │ ├── text-editor.svg │ │ ├── thunderbird.svg │ │ ├── vim.svg │ │ ├── vlc.svg │ │ └── web-browser.svg │ ├── titlebar │ │ └── stoplight │ │ │ ├── black_light.svg │ │ │ ├── black_normal.svg │ │ │ ├── blue_light.svg │ │ │ ├── blue_normal.svg │ │ │ ├── cyan_light.svg │ │ │ ├── cyan_normal.svg │ │ │ ├── green_light.svg │ │ │ ├── green_normal.svg │ │ │ ├── magenta_light.svg │ │ │ ├── magenta_normal.svg │ │ │ ├── red_light.svg │ │ │ ├── red_normal.svg │ │ │ ├── white_light.svg │ │ │ ├── white_normal.svg │ │ │ ├── yellow_light.svg │ │ │ └── yellow_normal.svg │ ├── toggled-off.svg │ ├── toggled-on.svg │ └── widgets │ │ ├── arch.svg │ │ ├── battery │ │ ├── battery-10.svg │ │ ├── battery-100.svg │ │ ├── battery-20.svg │ │ ├── battery-30.svg │ │ ├── battery-50.svg │ │ ├── battery-60.svg │ │ ├── battery-80.svg │ │ ├── battery-90.svg │ │ ├── battery-alert-red.svg │ │ ├── battery-alert.svg │ │ ├── battery-charging-10.svg │ │ ├── battery-charging-100.svg │ │ ├── battery-charging-20.svg │ │ ├── battery-charging-30.svg │ │ ├── battery-charging-50.svg │ │ ├── battery-charging-60.svg │ │ ├── battery-charging-80.svg │ │ ├── battery-charging-90.svg │ │ ├── battery-standard.svg │ │ └── battery-unknown.svg │ │ ├── bluetooth │ │ ├── bluetooth-connected.svg │ │ ├── bluetooth-off.svg │ │ ├── bluetooth-scanning.svg │ │ ├── bluetooth.svg │ │ └── loading.svg │ │ ├── brightness.svg │ │ ├── clock.svg │ │ ├── clock_alt.svg │ │ ├── effects.svg │ │ ├── endsession.svg │ │ ├── hw_monitor │ │ ├── chart-areaspline.svg │ │ ├── harddisk.svg │ │ ├── memory.svg │ │ └── thermometer.svg │ │ ├── music │ │ ├── music.svg │ │ ├── next.svg │ │ ├── pause.svg │ │ ├── play.svg │ │ ├── prev.svg │ │ ├── random-off.svg │ │ ├── random-on.svg │ │ ├── repeat-off.svg │ │ ├── repeat-on.svg │ │ └── vinyl.svg │ │ ├── network │ │ ├── eth-off.svg │ │ ├── eth-on-alert.svg │ │ ├── eth-on-lock.svg │ │ ├── eth-on.svg │ │ ├── lock-off.svg │ │ ├── lock-on.svg │ │ ├── no-network.svg │ │ ├── notification-eth.svg │ │ ├── notification-no-network.svg │ │ ├── notification-vpn-off.svg │ │ ├── notification-vpn-on.svg │ │ ├── notification-wifi.svg │ │ ├── outline_wifi │ │ │ ├── loading.svg │ │ │ ├── wifi-strength-lock-outline.svg │ │ │ ├── wifi-strength-off-outline.svg │ │ │ └── wifi-strength-outline.svg │ │ ├── wifi-default-strength-off.svg │ │ ├── wifi-strength-1-alert.svg │ │ ├── wifi-strength-1-lock.svg │ │ ├── wifi-strength-1.svg │ │ ├── wifi-strength-2-alert.svg │ │ ├── wifi-strength-2-lock.svg │ │ ├── wifi-strength-2.svg │ │ ├── wifi-strength-3-alert.svg │ │ ├── wifi-strength-3-lock.svg │ │ ├── wifi-strength-3.svg │ │ ├── wifi-strength-4-alert.svg │ │ ├── wifi-strength-4-lock.svg │ │ ├── wifi-strength-4.svg │ │ ├── wifi-strength-empty-alert.svg │ │ └── wifi-strength-empty.svg │ │ ├── notification.svg │ │ ├── notification │ │ ├── clear-all.svg │ │ ├── delete.svg │ │ ├── dont-disturb-mode.svg │ │ ├── empty-notification.svg │ │ ├── new-notification.svg │ │ └── notify-mode.svg │ │ ├── package-normal.svg │ │ ├── package-up.svg │ │ ├── plus.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── volume-high.svg │ │ └── volume-mute.svg └── init.lua └── widget ├── add-launcher-button.lua ├── app-launcher-block.lua ├── app-search-toggler.lua ├── battery-widget.lua ├── blue-light.lua ├── blur.lua ├── brightness.lua ├── calendar-popup.lua ├── calendar.lua ├── callbacks.lua ├── clickable-container.lua ├── clickable-image.lua ├── clock.lua ├── end-session.lua ├── layout.lua ├── network-widget └── init.lua ├── notif-center ├── build-notifbox │ ├── empty-notifbox.lua │ ├── init.lua │ ├── notifbox-builder.lua │ └── ui-builder.lua ├── clear-all.lua ├── dont-disturb.lua ├── init.lua └── notif-popup.lua ├── notification-panel-toggler.lua ├── quick-settings └── init.lua ├── settings-panel-toggler.lua ├── taglist.lua ├── tasklist.lua ├── toggle-systray.lua ├── tooltip.lua ├── user-profile ├── icons │ └── user.svg └── init.lua └── volume.lua /.lua-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/.lua-format -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/README.md -------------------------------------------------------------------------------- /autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/autostart.sh -------------------------------------------------------------------------------- /configuration/apps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/apps.lua -------------------------------------------------------------------------------- /configuration/client/buttons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/client/buttons.lua -------------------------------------------------------------------------------- /configuration/client/init.lua: -------------------------------------------------------------------------------- 1 | require('configuration.client.rules') 2 | -------------------------------------------------------------------------------- /configuration/client/keys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/client/keys.lua -------------------------------------------------------------------------------- /configuration/client/rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/client/rules.lua -------------------------------------------------------------------------------- /configuration/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/init.lua -------------------------------------------------------------------------------- /configuration/keys/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/keys/global.lua -------------------------------------------------------------------------------- /configuration/keys/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/keys/init.lua -------------------------------------------------------------------------------- /configuration/keys/mod.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/keys/mod.lua -------------------------------------------------------------------------------- /configuration/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/picom.conf -------------------------------------------------------------------------------- /configuration/tags/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/configuration/tags/init.lua -------------------------------------------------------------------------------- /images/aw_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/images/aw_exit.png -------------------------------------------------------------------------------- /images/aw_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/images/aw_lock.png -------------------------------------------------------------------------------- /images/aw_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/images/aw_notif.png -------------------------------------------------------------------------------- /images/aw_scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/images/aw_scratch.png -------------------------------------------------------------------------------- /images/aw_tile_vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/images/aw_tile_vol.png -------------------------------------------------------------------------------- /layout/bottom-panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/layout/bottom-panel.lua -------------------------------------------------------------------------------- /layout/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/layout/init.lua -------------------------------------------------------------------------------- /layout/right-panel/sidebar-mode-switcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/layout/right-panel/sidebar-mode-switcher.lua -------------------------------------------------------------------------------- /layout/right-panel/sidebar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/layout/right-panel/sidebar.lua -------------------------------------------------------------------------------- /layout/top-panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/layout/top-panel.lua -------------------------------------------------------------------------------- /liblua_pam.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/liblua_pam.so -------------------------------------------------------------------------------- /module/auto-start.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/auto-start.lua -------------------------------------------------------------------------------- /module/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/dashboard.lua -------------------------------------------------------------------------------- /module/decorate-client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/decorate-client.lua -------------------------------------------------------------------------------- /module/dropdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/dropdown.lua -------------------------------------------------------------------------------- /module/exit-screen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/exit-screen.lua -------------------------------------------------------------------------------- /module/lockscreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/lockscreen.lua -------------------------------------------------------------------------------- /module/notifications.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/notifications.lua -------------------------------------------------------------------------------- /module/panel-builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/panel-builder.lua -------------------------------------------------------------------------------- /module/popup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/popup.lua -------------------------------------------------------------------------------- /module/titlebar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/module/titlebar.lua -------------------------------------------------------------------------------- /rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/rc.lua -------------------------------------------------------------------------------- /theme/default-theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/default-theme.lua -------------------------------------------------------------------------------- /theme/icons/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/arch.svg -------------------------------------------------------------------------------- /theme/icons/awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/awesome.svg -------------------------------------------------------------------------------- /theme/icons/battery-charge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/battery-charge.svg -------------------------------------------------------------------------------- /theme/icons/battery-discharge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/battery-discharge.svg -------------------------------------------------------------------------------- /theme/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/close.svg -------------------------------------------------------------------------------- /theme/icons/face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/face.svg -------------------------------------------------------------------------------- /theme/icons/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/init.lua -------------------------------------------------------------------------------- /theme/icons/layouts/dwindle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/dwindle.svg -------------------------------------------------------------------------------- /theme/icons/layouts/fairh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/fairh.svg -------------------------------------------------------------------------------- /theme/icons/layouts/floating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/floating.svg -------------------------------------------------------------------------------- /theme/icons/layouts/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/fullscreen.svg -------------------------------------------------------------------------------- /theme/icons/layouts/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/max.svg -------------------------------------------------------------------------------- /theme/icons/layouts/tile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/tile.svg -------------------------------------------------------------------------------- /theme/icons/layouts/tilebottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/layouts/tilebottom.svg -------------------------------------------------------------------------------- /theme/icons/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/left-arrow.svg -------------------------------------------------------------------------------- /theme/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/lock.svg -------------------------------------------------------------------------------- /theme/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/logout.svg -------------------------------------------------------------------------------- /theme/icons/magnify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/magnify.svg -------------------------------------------------------------------------------- /theme/icons/power-sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/power-sleep.svg -------------------------------------------------------------------------------- /theme/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/power.svg -------------------------------------------------------------------------------- /theme/icons/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/restart.svg -------------------------------------------------------------------------------- /theme/icons/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/right-arrow.svg -------------------------------------------------------------------------------- /theme/icons/ship-wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/ship-wheel.svg -------------------------------------------------------------------------------- /theme/icons/tag-list-symbols/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list-symbols/dash.svg -------------------------------------------------------------------------------- /theme/icons/tag-list-symbols/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list-symbols/dot.svg -------------------------------------------------------------------------------- /theme/icons/tag-list-symbols/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list-symbols/dots.svg -------------------------------------------------------------------------------- /theme/icons/tag-list-symbols/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list-symbols/empty.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/close-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/close-small.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/code.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/development.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/file-manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/file-manager.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/games.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/games.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/graphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/graphics.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/menu.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/menu2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/menu2.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/multimedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/multimedia.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/sandbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/sandbox.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/setoolkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/setoolkit.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/social.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/spotify.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/terminal.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/text-editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/text-editor.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/thunderbird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/thunderbird.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/vim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/vim.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/vlc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/vlc.svg -------------------------------------------------------------------------------- /theme/icons/tag-list/web-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/tag-list/web-browser.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/black_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/black_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/black_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/black_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/blue_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/blue_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/blue_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/blue_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/cyan_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/cyan_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/cyan_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/cyan_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/green_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/green_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/green_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/green_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/magenta_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/magenta_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/magenta_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/magenta_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/red_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/red_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/red_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/red_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/white_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/white_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/white_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/white_normal.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/yellow_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/yellow_light.svg -------------------------------------------------------------------------------- /theme/icons/titlebar/stoplight/yellow_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/titlebar/stoplight/yellow_normal.svg -------------------------------------------------------------------------------- /theme/icons/toggled-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/toggled-off.svg -------------------------------------------------------------------------------- /theme/icons/toggled-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/toggled-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/arch.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-10.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-100.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-20.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-30.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-50.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-60.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-80.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-90.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-alert-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-alert-red.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-10.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-100.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-20.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-30.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-50.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-60.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-80.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-charging-90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-charging-90.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-standard.svg -------------------------------------------------------------------------------- /theme/icons/widgets/battery/battery-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/battery/battery-unknown.svg -------------------------------------------------------------------------------- /theme/icons/widgets/bluetooth/bluetooth-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/bluetooth/bluetooth-connected.svg -------------------------------------------------------------------------------- /theme/icons/widgets/bluetooth/bluetooth-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/bluetooth/bluetooth-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/bluetooth/bluetooth-scanning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/bluetooth/bluetooth-scanning.svg -------------------------------------------------------------------------------- /theme/icons/widgets/bluetooth/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/bluetooth/bluetooth.svg -------------------------------------------------------------------------------- /theme/icons/widgets/bluetooth/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/bluetooth/loading.svg -------------------------------------------------------------------------------- /theme/icons/widgets/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/brightness.svg -------------------------------------------------------------------------------- /theme/icons/widgets/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/clock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/clock_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/clock_alt.svg -------------------------------------------------------------------------------- /theme/icons/widgets/effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/effects.svg -------------------------------------------------------------------------------- /theme/icons/widgets/endsession.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/endsession.svg -------------------------------------------------------------------------------- /theme/icons/widgets/hw_monitor/chart-areaspline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/hw_monitor/chart-areaspline.svg -------------------------------------------------------------------------------- /theme/icons/widgets/hw_monitor/harddisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/hw_monitor/harddisk.svg -------------------------------------------------------------------------------- /theme/icons/widgets/hw_monitor/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/hw_monitor/memory.svg -------------------------------------------------------------------------------- /theme/icons/widgets/hw_monitor/thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/hw_monitor/thermometer.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/music.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/next.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/pause.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/play.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/prev.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/random-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/random-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/random-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/random-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/repeat-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/repeat-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/repeat-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/repeat-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/music/vinyl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/music/vinyl.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/eth-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/eth-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/eth-on-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/eth-on-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/eth-on-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/eth-on-lock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/eth-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/eth-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/lock-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/lock-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/lock-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/lock-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/no-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/no-network.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/notification-eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/notification-eth.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/notification-no-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/notification-no-network.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/notification-vpn-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/notification-vpn-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/notification-vpn-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/notification-vpn-on.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/notification-wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/notification-wifi.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/outline_wifi/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/outline_wifi/loading.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/outline_wifi/wifi-strength-lock-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/outline_wifi/wifi-strength-lock-outline.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/outline_wifi/wifi-strength-off-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/outline_wifi/wifi-strength-off-outline.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/outline_wifi/wifi-strength-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/outline_wifi/wifi-strength-outline.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-default-strength-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-default-strength-off.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-1-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-1-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-1-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-1-lock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-1.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-2-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-2-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-2-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-2-lock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-2.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-3-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-3-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-3-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-3-lock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-3.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-4-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-4-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-4-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-4-lock.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-4.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-empty-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-empty-alert.svg -------------------------------------------------------------------------------- /theme/icons/widgets/network/wifi-strength-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/network/wifi-strength-empty.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/clear-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/clear-all.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/delete.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/dont-disturb-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/dont-disturb-mode.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/empty-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/empty-notification.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/new-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/new-notification.svg -------------------------------------------------------------------------------- /theme/icons/widgets/notification/notify-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/notification/notify-mode.svg -------------------------------------------------------------------------------- /theme/icons/widgets/package-normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/package-normal.svg -------------------------------------------------------------------------------- /theme/icons/widgets/package-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/package-up.svg -------------------------------------------------------------------------------- /theme/icons/widgets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/plus.svg -------------------------------------------------------------------------------- /theme/icons/widgets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/search.svg -------------------------------------------------------------------------------- /theme/icons/widgets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/settings.svg -------------------------------------------------------------------------------- /theme/icons/widgets/volume-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/volume-high.svg -------------------------------------------------------------------------------- /theme/icons/widgets/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/icons/widgets/volume-mute.svg -------------------------------------------------------------------------------- /theme/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/theme/init.lua -------------------------------------------------------------------------------- /widget/add-launcher-button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/add-launcher-button.lua -------------------------------------------------------------------------------- /widget/app-launcher-block.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/app-launcher-block.lua -------------------------------------------------------------------------------- /widget/app-search-toggler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/app-search-toggler.lua -------------------------------------------------------------------------------- /widget/battery-widget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/battery-widget.lua -------------------------------------------------------------------------------- /widget/blue-light.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/blue-light.lua -------------------------------------------------------------------------------- /widget/blur.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/blur.lua -------------------------------------------------------------------------------- /widget/brightness.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/brightness.lua -------------------------------------------------------------------------------- /widget/calendar-popup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/calendar-popup.lua -------------------------------------------------------------------------------- /widget/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/calendar.lua -------------------------------------------------------------------------------- /widget/callbacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/callbacks.lua -------------------------------------------------------------------------------- /widget/clickable-container.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/clickable-container.lua -------------------------------------------------------------------------------- /widget/clickable-image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/clickable-image.lua -------------------------------------------------------------------------------- /widget/clock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/clock.lua -------------------------------------------------------------------------------- /widget/end-session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/end-session.lua -------------------------------------------------------------------------------- /widget/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/layout.lua -------------------------------------------------------------------------------- /widget/network-widget/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/network-widget/init.lua -------------------------------------------------------------------------------- /widget/notif-center/build-notifbox/empty-notifbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/build-notifbox/empty-notifbox.lua -------------------------------------------------------------------------------- /widget/notif-center/build-notifbox/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/build-notifbox/init.lua -------------------------------------------------------------------------------- /widget/notif-center/build-notifbox/notifbox-builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/build-notifbox/notifbox-builder.lua -------------------------------------------------------------------------------- /widget/notif-center/build-notifbox/ui-builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/build-notifbox/ui-builder.lua -------------------------------------------------------------------------------- /widget/notif-center/clear-all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/clear-all.lua -------------------------------------------------------------------------------- /widget/notif-center/dont-disturb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/dont-disturb.lua -------------------------------------------------------------------------------- /widget/notif-center/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/init.lua -------------------------------------------------------------------------------- /widget/notif-center/notif-popup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notif-center/notif-popup.lua -------------------------------------------------------------------------------- /widget/notification-panel-toggler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/notification-panel-toggler.lua -------------------------------------------------------------------------------- /widget/quick-settings/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/quick-settings/init.lua -------------------------------------------------------------------------------- /widget/settings-panel-toggler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/settings-panel-toggler.lua -------------------------------------------------------------------------------- /widget/taglist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/taglist.lua -------------------------------------------------------------------------------- /widget/tasklist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/tasklist.lua -------------------------------------------------------------------------------- /widget/toggle-systray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/toggle-systray.lua -------------------------------------------------------------------------------- /widget/tooltip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/tooltip.lua -------------------------------------------------------------------------------- /widget/user-profile/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/user-profile/icons/user.svg -------------------------------------------------------------------------------- /widget/user-profile/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/user-profile/init.lua -------------------------------------------------------------------------------- /widget/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archias-lnx/awesome-possum/HEAD/widget/volume.lua --------------------------------------------------------------------------------