├── .gitignore ├── .gitlab-ci.yml ├── Changelog ├── LICENSE ├── README.md ├── ReleaseNotes ├── TODO ├── backgrounds ├── BlurryBlob.png ├── BlurryBlob.svg ├── BurningDesire.svg ├── Camel.Sunset.svg ├── Christmas.svg ├── Hexagons.svg ├── LayeredBlobsDark.svg ├── LayeredBlobsLight.svg ├── Mountains.Sunset.svg ├── Rectangles.svg ├── Rings.svg ├── Sailboats.svg ├── SmoothGradient.png ├── SmoothGradient.svg ├── Squares.svg ├── Sunrise.svg ├── Tree.svg └── Water.svg ├── configs ├── config.ini ├── config.toml ├── greetd ├── sway.cfg ├── users.conf └── wayfire.ini ├── meson.build ├── meson_options.txt ├── screenshots ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── 5.jpg ├── scripts ├── postinst └── postrm ├── src ├── Global.hpp ├── Main.cpp ├── QtGreet.qrc ├── backends │ ├── LoginManager.cpp │ ├── LoginManager.hpp │ └── greetd │ │ ├── GreetdManager.cpp │ │ └── GreetdManager.hpp ├── compositor │ ├── main.cpp │ ├── tinywl.c │ └── tinywl.h ├── customlogin │ ├── customlogin.hjson │ └── customlogin.qss ├── icons │ ├── QtGreet.png │ ├── QtGreet.svg │ ├── acpower.png │ ├── arrow-down.png │ ├── arrow-left.png │ ├── arrow-right.png │ ├── battery.png │ ├── edit.png │ ├── hibernate.png │ ├── logout.png │ ├── reboot.png │ ├── session.png │ ├── shutdown.png │ ├── suspend.png │ └── user.png ├── layoutmanager │ ├── CMakeLists.txt │ ├── LayoutManager.cpp │ ├── LayoutManager.hpp │ ├── LayoutUtils.cpp │ ├── LayoutUtils.hpp │ ├── main.cpp │ └── parser │ │ ├── LICENSE │ │ ├── hjson.h │ │ ├── hjson_decode.cpp │ │ ├── hjson_encode.cpp │ │ ├── hjson_parsenumber.cpp │ │ └── hjson_value.cpp ├── protocols │ ├── meson.build │ ├── wlr-layer-shell-unstable-v1.xml │ └── xdg-shell.xml ├── thememanager │ ├── ThemeManager.cpp │ └── ThemeManager.hpp ├── ui │ ├── QtGreet.cpp │ ├── QtGreet.hpp │ ├── ScreenManager.cpp │ └── ScreenManager.hpp └── widgets │ ├── buttons │ ├── buttons.cpp │ └── buttons.hpp │ ├── clock │ ├── ClockWidget.cpp │ └── ClockWidget.hpp │ ├── container │ ├── Container.cpp │ └── Container.hpp │ ├── factory │ ├── WidgetFactory.cpp │ └── WidgetFactory.hpp │ ├── key │ ├── labels │ ├── labels.cpp │ └── labels.hpp │ ├── power │ ├── power.cpp │ └── power.hpp │ ├── session │ ├── session.cpp │ └── session.hpp │ ├── user │ ├── user.cpp │ └── user.hpp │ └── videobg │ ├── MpvHelper.hpp │ ├── MpvWidget.cpp │ └── MpvWidget.hpp └── themes ├── LytMgr.py ├── aerial ├── 4k.m3u ├── all_sd.m3u ├── day.m3u ├── index.theme ├── layout.hjson ├── night.m3u └── style.qss ├── compact ├── index.theme ├── layout.hjson └── style.qss ├── default ├── index.theme ├── layout.hjson └── style.qss └── sidebar ├── index.theme ├── layout.hjson └── style.qss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/ReleaseNotes -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/TODO -------------------------------------------------------------------------------- /backgrounds/BlurryBlob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/BlurryBlob.png -------------------------------------------------------------------------------- /backgrounds/BlurryBlob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/BlurryBlob.svg -------------------------------------------------------------------------------- /backgrounds/BurningDesire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/BurningDesire.svg -------------------------------------------------------------------------------- /backgrounds/Camel.Sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Camel.Sunset.svg -------------------------------------------------------------------------------- /backgrounds/Christmas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Christmas.svg -------------------------------------------------------------------------------- /backgrounds/Hexagons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Hexagons.svg -------------------------------------------------------------------------------- /backgrounds/LayeredBlobsDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/LayeredBlobsDark.svg -------------------------------------------------------------------------------- /backgrounds/LayeredBlobsLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/LayeredBlobsLight.svg -------------------------------------------------------------------------------- /backgrounds/Mountains.Sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Mountains.Sunset.svg -------------------------------------------------------------------------------- /backgrounds/Rectangles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Rectangles.svg -------------------------------------------------------------------------------- /backgrounds/Rings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Rings.svg -------------------------------------------------------------------------------- /backgrounds/Sailboats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Sailboats.svg -------------------------------------------------------------------------------- /backgrounds/SmoothGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/SmoothGradient.png -------------------------------------------------------------------------------- /backgrounds/SmoothGradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/SmoothGradient.svg -------------------------------------------------------------------------------- /backgrounds/Squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Squares.svg -------------------------------------------------------------------------------- /backgrounds/Sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Sunrise.svg -------------------------------------------------------------------------------- /backgrounds/Tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Tree.svg -------------------------------------------------------------------------------- /backgrounds/Water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/backgrounds/Water.svg -------------------------------------------------------------------------------- /configs/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/configs/config.ini -------------------------------------------------------------------------------- /configs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/configs/config.toml -------------------------------------------------------------------------------- /configs/greetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/configs/greetd -------------------------------------------------------------------------------- /configs/sway.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/configs/sway.cfg -------------------------------------------------------------------------------- /configs/users.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/wayfire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/configs/wayfire.ini -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/meson_options.txt -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/screenshots/5.jpg -------------------------------------------------------------------------------- /scripts/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/scripts/postinst -------------------------------------------------------------------------------- /scripts/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/scripts/postrm -------------------------------------------------------------------------------- /src/Global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/Global.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/QtGreet.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/QtGreet.qrc -------------------------------------------------------------------------------- /src/backends/LoginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/backends/LoginManager.cpp -------------------------------------------------------------------------------- /src/backends/LoginManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/backends/LoginManager.hpp -------------------------------------------------------------------------------- /src/backends/greetd/GreetdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/backends/greetd/GreetdManager.cpp -------------------------------------------------------------------------------- /src/backends/greetd/GreetdManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/backends/greetd/GreetdManager.hpp -------------------------------------------------------------------------------- /src/compositor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/compositor/main.cpp -------------------------------------------------------------------------------- /src/compositor/tinywl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/compositor/tinywl.c -------------------------------------------------------------------------------- /src/compositor/tinywl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/compositor/tinywl.h -------------------------------------------------------------------------------- /src/customlogin/customlogin.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/customlogin/customlogin.hjson -------------------------------------------------------------------------------- /src/customlogin/customlogin.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/customlogin/customlogin.qss -------------------------------------------------------------------------------- /src/icons/QtGreet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/QtGreet.png -------------------------------------------------------------------------------- /src/icons/QtGreet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/QtGreet.svg -------------------------------------------------------------------------------- /src/icons/acpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/acpower.png -------------------------------------------------------------------------------- /src/icons/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/arrow-down.png -------------------------------------------------------------------------------- /src/icons/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/arrow-left.png -------------------------------------------------------------------------------- /src/icons/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/arrow-right.png -------------------------------------------------------------------------------- /src/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/battery.png -------------------------------------------------------------------------------- /src/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/edit.png -------------------------------------------------------------------------------- /src/icons/hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/hibernate.png -------------------------------------------------------------------------------- /src/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/logout.png -------------------------------------------------------------------------------- /src/icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/reboot.png -------------------------------------------------------------------------------- /src/icons/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/session.png -------------------------------------------------------------------------------- /src/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/shutdown.png -------------------------------------------------------------------------------- /src/icons/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/suspend.png -------------------------------------------------------------------------------- /src/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/icons/user.png -------------------------------------------------------------------------------- /src/layoutmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/CMakeLists.txt -------------------------------------------------------------------------------- /src/layoutmanager/LayoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/LayoutManager.cpp -------------------------------------------------------------------------------- /src/layoutmanager/LayoutManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/LayoutManager.hpp -------------------------------------------------------------------------------- /src/layoutmanager/LayoutUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/LayoutUtils.cpp -------------------------------------------------------------------------------- /src/layoutmanager/LayoutUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/LayoutUtils.hpp -------------------------------------------------------------------------------- /src/layoutmanager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/main.cpp -------------------------------------------------------------------------------- /src/layoutmanager/parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/LICENSE -------------------------------------------------------------------------------- /src/layoutmanager/parser/hjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/hjson.h -------------------------------------------------------------------------------- /src/layoutmanager/parser/hjson_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/hjson_decode.cpp -------------------------------------------------------------------------------- /src/layoutmanager/parser/hjson_encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/hjson_encode.cpp -------------------------------------------------------------------------------- /src/layoutmanager/parser/hjson_parsenumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/hjson_parsenumber.cpp -------------------------------------------------------------------------------- /src/layoutmanager/parser/hjson_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/layoutmanager/parser/hjson_value.cpp -------------------------------------------------------------------------------- /src/protocols/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/protocols/meson.build -------------------------------------------------------------------------------- /src/protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/protocols/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /src/protocols/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/protocols/xdg-shell.xml -------------------------------------------------------------------------------- /src/thememanager/ThemeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/thememanager/ThemeManager.cpp -------------------------------------------------------------------------------- /src/thememanager/ThemeManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/thememanager/ThemeManager.hpp -------------------------------------------------------------------------------- /src/ui/QtGreet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/ui/QtGreet.cpp -------------------------------------------------------------------------------- /src/ui/QtGreet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/ui/QtGreet.hpp -------------------------------------------------------------------------------- /src/ui/ScreenManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/ui/ScreenManager.cpp -------------------------------------------------------------------------------- /src/ui/ScreenManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/ui/ScreenManager.hpp -------------------------------------------------------------------------------- /src/widgets/buttons/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/buttons/buttons.cpp -------------------------------------------------------------------------------- /src/widgets/buttons/buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/buttons/buttons.hpp -------------------------------------------------------------------------------- /src/widgets/clock/ClockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/clock/ClockWidget.cpp -------------------------------------------------------------------------------- /src/widgets/clock/ClockWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/clock/ClockWidget.hpp -------------------------------------------------------------------------------- /src/widgets/container/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/container/Container.cpp -------------------------------------------------------------------------------- /src/widgets/container/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/container/Container.hpp -------------------------------------------------------------------------------- /src/widgets/factory/WidgetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/factory/WidgetFactory.cpp -------------------------------------------------------------------------------- /src/widgets/factory/WidgetFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/factory/WidgetFactory.hpp -------------------------------------------------------------------------------- /src/widgets/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/key -------------------------------------------------------------------------------- /src/widgets/labels/labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/labels/labels.cpp -------------------------------------------------------------------------------- /src/widgets/labels/labels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/labels/labels.hpp -------------------------------------------------------------------------------- /src/widgets/power/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/power/power.cpp -------------------------------------------------------------------------------- /src/widgets/power/power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/power/power.hpp -------------------------------------------------------------------------------- /src/widgets/session/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/session/session.cpp -------------------------------------------------------------------------------- /src/widgets/session/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/session/session.hpp -------------------------------------------------------------------------------- /src/widgets/user/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/user/user.cpp -------------------------------------------------------------------------------- /src/widgets/user/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/user/user.hpp -------------------------------------------------------------------------------- /src/widgets/videobg/MpvHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/videobg/MpvHelper.hpp -------------------------------------------------------------------------------- /src/widgets/videobg/MpvWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/videobg/MpvWidget.cpp -------------------------------------------------------------------------------- /src/widgets/videobg/MpvWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/src/widgets/videobg/MpvWidget.hpp -------------------------------------------------------------------------------- /themes/LytMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/LytMgr.py -------------------------------------------------------------------------------- /themes/aerial/4k.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/4k.m3u -------------------------------------------------------------------------------- /themes/aerial/all_sd.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/all_sd.m3u -------------------------------------------------------------------------------- /themes/aerial/day.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/day.m3u -------------------------------------------------------------------------------- /themes/aerial/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/index.theme -------------------------------------------------------------------------------- /themes/aerial/layout.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/layout.hjson -------------------------------------------------------------------------------- /themes/aerial/night.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/night.m3u -------------------------------------------------------------------------------- /themes/aerial/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/aerial/style.qss -------------------------------------------------------------------------------- /themes/compact/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/compact/index.theme -------------------------------------------------------------------------------- /themes/compact/layout.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/compact/layout.hjson -------------------------------------------------------------------------------- /themes/compact/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/compact/style.qss -------------------------------------------------------------------------------- /themes/default/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/default/index.theme -------------------------------------------------------------------------------- /themes/default/layout.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/default/layout.hjson -------------------------------------------------------------------------------- /themes/default/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/default/style.qss -------------------------------------------------------------------------------- /themes/sidebar/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/sidebar/index.theme -------------------------------------------------------------------------------- /themes/sidebar/layout.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/sidebar/layout.hjson -------------------------------------------------------------------------------- /themes/sidebar/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusbritanicus/QtGreet/HEAD/themes/sidebar/style.qss --------------------------------------------------------------------------------