├── .reuse └── dep5 ├── .tag ├── AUTHORS.md ├── CMakeLists.txt ├── LICENSE.GPLv3 ├── LICENSE.LGPLv3 ├── LICENSES ├── BSD-3-Clause.txt ├── CC0-1.0.txt ├── GPL-3.0-or-later.txt └── LGPL-3.0-or-later.txt ├── README.md ├── cmake ├── 3rdparty │ └── FindPAM.cmake └── FindLibsystemd.cmake ├── data ├── protocols │ ├── liri-color-picker-unstable-v1.xml │ ├── liri-shell-unstable-v1.xml │ └── wlr-foreign-toplevel-management-unstable-v1.xml ├── settings │ ├── CMakeLists.txt │ ├── io.liri.desktop.background.gschema.xml.in │ ├── io.liri.desktop.interface.gschema.xml │ ├── io.liri.desktop.keybindings.gschema.xml │ ├── io.liri.desktop.lockscreen.gschema.xml.in │ ├── io.liri.desktop.panel.gschema.xml │ ├── io.liri.desktop.peripherals.gschema.xml │ ├── io.liri.hardware.screens.gschema.xml │ ├── io.liri.shell.gschema.xml │ └── io.liri.system.gschema.xml └── systemd │ ├── CMakeLists.txt │ ├── liri-shell.service.in │ └── liri-shell.target ├── features.cmake ├── src ├── compositor │ ├── CMakeLists.txt │ ├── application.cpp │ ├── application.h │ ├── images │ │ └── chrome │ │ │ ├── dropshadow-24.png │ │ │ ├── dropshadow-8.png │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ ├── main.cpp │ ├── qml │ │ ├── Compositor.qml │ │ ├── KeyBindings.qml │ │ ├── ShellSettings.qml │ │ ├── desktop │ │ │ ├── Flash.qml │ │ │ ├── HardwareLayerSurfaceItem.qml │ │ │ ├── HotCorner.qml │ │ │ ├── IdleDimmer.qml │ │ │ ├── Keyboard.qml │ │ │ ├── LayerSurfaceItem.qml │ │ │ ├── LockScreenItem.qml │ │ │ ├── ModalOverlay.qml │ │ │ ├── Output.qml │ │ │ ├── OutputInfo.qml │ │ │ ├── OutputWindow.qml │ │ │ ├── PresentEffect.js │ │ │ ├── PresentWindowsChrome.qml │ │ │ ├── SessionLocker.qml │ │ │ ├── WindowSwitcher.qml │ │ │ ├── Workspace.qml │ │ │ └── WorkspacesView.qml │ │ ├── error │ │ │ ├── ErrorCompositor.qml │ │ │ ├── ErrorOutput.qml │ │ │ └── ErrorScreenView.qml │ │ ├── images │ │ │ ├── lan-connect.svg │ │ │ └── lan-disconnect.svg │ │ ├── overlays │ │ │ ├── HelpOverlay.qml │ │ │ └── UnresponsiveOverlay.qml │ │ └── windows │ │ │ ├── Chrome.qml │ │ │ ├── ChromeMenu.qml │ │ │ ├── DecorationButton.qml │ │ │ ├── MoveItem.qml │ │ │ ├── ResizeHandler.qml │ │ │ ├── TitleBar.qml │ │ │ ├── XWaylandWindow.qml │ │ │ └── XdgToplevelWindow.qml │ └── sessionmanager │ │ ├── sessionmanager.cpp │ │ └── sessionmanager.h ├── helper │ ├── CMakeLists.txt │ ├── images │ │ ├── hibernate.svg │ │ ├── logout.svg │ │ ├── reload.svg │ │ └── sleep.svg │ ├── main.cpp │ └── qml │ │ ├── AuthDialog.qml │ │ ├── BackgroundWindow.qml │ │ ├── KeyBindings.qml │ │ ├── LogoutDialog.qml │ │ ├── OsdWindow.qml │ │ ├── PowerOffDialog.qml │ │ ├── RunDialog.qml │ │ ├── TopLayerWindow.qml │ │ ├── launcher │ │ ├── AppsGrid.qml │ │ ├── AppsGridDelegate.qml │ │ ├── AppsLauncher.qml │ │ ├── CategoriesView.qml │ │ ├── FrequentAppsView.qml │ │ └── PagedGrid.qml │ │ ├── main.qml │ │ ├── notifications │ │ └── NotificationItem.qml │ │ └── panel │ │ ├── IndicatorsRow.qml │ │ ├── Panel.qml │ │ ├── PanelButton.qml │ │ ├── ShelfPane.qml │ │ ├── ShutdownIndicator.qml │ │ ├── StatusMenu.qml │ │ ├── TaskBar.qml │ │ ├── TaskDelegate.qml │ │ └── TaskMenu.qml ├── imports │ ├── compositor │ │ ├── CMakeLists.txt │ │ ├── abstracttitlebar.cpp │ │ ├── abstracttitlebar.h │ │ ├── appidandicon.cpp │ │ ├── appidandicon.h │ │ ├── chromeitem.cpp │ │ ├── chromeitem.h │ │ ├── desktoplayout.cpp │ │ ├── desktoplayout.h │ │ ├── fpscounter.cpp │ │ ├── fpscounter.h │ │ ├── helperlauncher.cpp │ │ ├── helperlauncher.h │ │ ├── hotspot.cpp │ │ ├── hotspot.h │ │ ├── keyeventfilter.cpp │ │ ├── keyeventfilter.h │ │ ├── lirishellcompositorplugin.cpp │ │ ├── protocols │ │ │ ├── liri-color-picker-unstable-v1.xml.license │ │ │ └── liri-shell-unstable-v1.xml.license │ │ ├── quickoutput.cpp │ │ ├── quickoutput.h │ │ ├── screencast.cpp │ │ ├── screencast.h │ │ ├── screenmodel.cpp │ │ ├── screenmodel.h │ │ ├── waylandcursorgrabber.cpp │ │ ├── waylandcursorgrabber.h │ │ ├── waylandliricolorpickerv1.cpp │ │ ├── waylandliricolorpickerv1.h │ │ ├── waylandliricolorpickerv1_p.h │ │ ├── waylandlirilockscreenv1_p.h │ │ ├── waylandlirimodalv1.cpp │ │ ├── waylandlirimodalv1.h │ │ ├── waylandlirimodalv1_p.h │ │ ├── waylandlirishellv1.cpp │ │ ├── waylandlirishellv1.h │ │ ├── waylandlirishellv1_p.h │ │ ├── windowmousetracker.cpp │ │ └── windowmousetracker.h │ ├── loginmanager │ │ ├── CMakeLists.txt │ │ ├── plugin.cpp │ │ ├── usersmodel.cpp │ │ └── usersmodel.h │ ├── mpris2 │ │ ├── CMakeLists.txt │ │ ├── mpris2engine.cpp │ │ ├── mpris2engine.h │ │ ├── mpris2player.cpp │ │ ├── mpris2player.h │ │ ├── org.freedesktop.DBus.Properties.xml │ │ ├── org.mpris.MediaPlayer2.Player.xml │ │ ├── org.mpris.MediaPlayer2.xml │ │ └── plugin.cpp │ ├── notifications │ │ ├── CMakeLists.txt │ │ ├── notificationsadaptor.cpp │ │ ├── notificationsadaptor.h │ │ ├── notificationsimageprovider.cpp │ │ ├── notificationsimageprovider.h │ │ ├── notificationsimagesstorage.cpp │ │ ├── notificationsimagesstorage.h │ │ ├── notificationsimageutils.cpp │ │ ├── notificationsimageutils.h │ │ ├── notificationsmodel.cpp │ │ ├── notificationsmodel.h │ │ ├── notificationsserver.cpp │ │ ├── notificationsserver.h │ │ └── plugin.cpp │ ├── policykit │ │ ├── CMakeLists.txt │ │ ├── listener_p.cpp │ │ ├── listener_p.h │ │ ├── plugin.cpp │ │ ├── policykitagent.cpp │ │ └── policykitagent.h │ ├── shell-private │ │ ├── CMakeLists.txt │ │ ├── dbus │ │ │ ├── multimediakeysserver.cpp │ │ │ ├── multimediakeysserver.h │ │ │ ├── osdserver.cpp │ │ │ └── osdserver.h │ │ ├── logging.cpp │ │ ├── logging.h │ │ └── plugin.cpp │ ├── shell │ │ ├── Background.qml │ │ ├── CMakeLists.txt │ │ ├── Indicator.qml │ │ ├── LoginGreeter.qml │ │ ├── PanelItem.qml │ │ ├── StatusAreaExtension.qml │ │ ├── UserDelegate.qml │ │ ├── extensionsmodel.cpp │ │ ├── extensionsmodel.h │ │ ├── lirishellv1.cpp │ │ ├── lirishellv1.h │ │ ├── multimediakeysclient.cpp │ │ ├── multimediakeysclient.h │ │ ├── osdclient.cpp │ │ └── osdclient.h │ ├── storage │ │ ├── CMakeLists.txt │ │ ├── plugin.cpp │ │ ├── plugins.qmltypes │ │ ├── qmldir │ │ ├── storagedevice.cpp │ │ ├── storagedevice.h │ │ ├── storagemodel.cpp │ │ └── storagemodel.h │ ├── taskmanager │ │ ├── CMakeLists.txt │ │ ├── application.cpp │ │ ├── application.h │ │ ├── applicationsmodel.cpp │ │ ├── applicationsmodel.h │ │ ├── appusage.cpp │ │ ├── appusage.h │ │ ├── categoriesmodel.cpp │ │ ├── categoriesmodel.h │ │ ├── frequentmodel.cpp │ │ ├── frequentmodel.h │ │ ├── pagemodel.cpp │ │ ├── pagemodel.h │ │ ├── plugin.cpp │ │ ├── qmldir │ │ ├── tasksmodel.cpp │ │ ├── tasksmodel.h │ │ ├── usagetracker.cpp │ │ ├── usagetracker.h │ │ ├── utils_p.h │ │ ├── wlrforeigntoplevelmanagementv1.cpp │ │ ├── wlrforeigntoplevelmanagementv1.h │ │ ├── wlrforeigntoplevelmanagementv1_p.h │ │ ├── xdgutils.cpp │ │ └── xdgutils.h │ └── utils │ │ ├── CMakeLists.txt │ │ ├── qqmlsortfilterproxymodel.cpp │ │ └── qqmlsortfilterproxymodel.h ├── lockscreen │ ├── CMakeLists.txt │ ├── authenticator.cpp │ ├── authenticator.h │ ├── main.cpp │ └── qml │ │ ├── LockScreenWindow.qml │ │ └── main.qml ├── plugins │ └── statusarea │ │ ├── datetime │ │ ├── CMakeLists.txt │ │ ├── contents │ │ │ └── main.qml │ │ ├── metadata.desktop │ │ └── metadata.desktop.in │ │ ├── notifications │ │ ├── CMakeLists.txt │ │ ├── contents │ │ │ └── main.qml │ │ ├── metadata.desktop │ │ └── metadata.desktop.in │ │ ├── storage │ │ ├── CMakeLists.txt │ │ ├── contents │ │ │ ├── images │ │ │ │ ├── disk.svg │ │ │ │ ├── eject.svg │ │ │ │ └── harddisk.svg │ │ │ └── main.qml │ │ ├── metadata.desktop │ │ └── metadata.desktop.in │ │ └── user │ │ ├── CMakeLists.txt │ │ ├── contents │ │ └── main.qml │ │ ├── metadata.desktop │ │ └── metadata.desktop.in └── sddm │ ├── CMakeLists.txt │ ├── DesktopStill.qml │ ├── Greeter.qml │ ├── InputPanel.qml │ ├── Main.qml │ ├── components │ ├── Indicator.qml │ └── VirtualKeyboard.qml │ ├── dummydata │ ├── keyboard.qml │ ├── screenModel.qml │ ├── sddm.qml │ ├── sessionModel.qml │ ├── tyrion.png │ └── userModel.qml │ ├── images │ ├── hibernate.svg │ ├── keyboard-variant.svg │ ├── logo.png │ ├── logout.svg │ ├── reload.svg │ └── sleep.svg │ ├── indicators │ ├── Keyboard.qml │ ├── PowerOff.qml │ ├── Session.qml │ └── VirtualKeyboard.qml │ ├── metadata.desktop │ ├── screenshot.png │ └── theme.conf ├── tools └── dropshadow │ ├── README.md │ ├── dropshadow-24.qml │ └── dropshadow-8.qml └── translations ├── compositor ├── compositor.ts ├── compositor_da.ts ├── compositor_de.ts ├── compositor_fr.ts ├── compositor_it.ts ├── compositor_lt.ts ├── compositor_nl.ts ├── compositor_pl.ts ├── compositor_pt_BR.ts ├── compositor_ru.ts └── compositor_tr.ts └── statusarea ├── datetime ├── datetime.ts ├── de.po ├── lt.po ├── metadata.pot ├── nl.po ├── pt_BR.po └── tr.po ├── notifications ├── de.po ├── lt.po ├── metadata.pot ├── nl.po ├── notifications.ts ├── notifications_de.ts ├── notifications_lt.ts ├── notifications_nl.ts ├── notifications_pt_BR.ts ├── notifications_tr.ts ├── pt_BR.po └── tr.po ├── storage ├── de.po ├── lt.po ├── metadata.pot ├── nl.po ├── pt_BR.po ├── storage.ts ├── storage_de.ts ├── storage_lt.ts ├── storage_nl.ts ├── storage_pt_BR.ts ├── storage_tr.ts └── tr.po └── user ├── de.po ├── lt.po ├── metadata.pot ├── nl.po ├── pt_BR.po ├── tr.po └── user.ts /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/.tag -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSE.GPLv3 -------------------------------------------------------------------------------- /LICENSE.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSE.LGPLv3 -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/LICENSES/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/README.md -------------------------------------------------------------------------------- /cmake/3rdparty/FindPAM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/cmake/3rdparty/FindPAM.cmake -------------------------------------------------------------------------------- /cmake/FindLibsystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/cmake/FindLibsystemd.cmake -------------------------------------------------------------------------------- /data/protocols/liri-color-picker-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/protocols/liri-color-picker-unstable-v1.xml -------------------------------------------------------------------------------- /data/protocols/liri-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/protocols/liri-shell-unstable-v1.xml -------------------------------------------------------------------------------- /data/protocols/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/protocols/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /data/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/CMakeLists.txt -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.background.gschema.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.background.gschema.xml.in -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.interface.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.interface.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.keybindings.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.keybindings.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.lockscreen.gschema.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.lockscreen.gschema.xml.in -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.panel.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.panel.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.desktop.peripherals.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.desktop.peripherals.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.hardware.screens.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.hardware.screens.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.shell.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.shell.gschema.xml -------------------------------------------------------------------------------- /data/settings/io.liri.system.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/settings/io.liri.system.gschema.xml -------------------------------------------------------------------------------- /data/systemd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/systemd/CMakeLists.txt -------------------------------------------------------------------------------- /data/systemd/liri-shell.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/systemd/liri-shell.service.in -------------------------------------------------------------------------------- /data/systemd/liri-shell.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/data/systemd/liri-shell.target -------------------------------------------------------------------------------- /features.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/features.cmake -------------------------------------------------------------------------------- /src/compositor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/CMakeLists.txt -------------------------------------------------------------------------------- /src/compositor/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/application.cpp -------------------------------------------------------------------------------- /src/compositor/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/application.h -------------------------------------------------------------------------------- /src/compositor/images/chrome/dropshadow-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/dropshadow-24.png -------------------------------------------------------------------------------- /src/compositor/images/chrome/dropshadow-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/dropshadow-8.png -------------------------------------------------------------------------------- /src/compositor/images/chrome/window-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/window-close.svg -------------------------------------------------------------------------------- /src/compositor/images/chrome/window-maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/window-maximize.svg -------------------------------------------------------------------------------- /src/compositor/images/chrome/window-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/window-minimize.svg -------------------------------------------------------------------------------- /src/compositor/images/chrome/window-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/images/chrome/window-restore.svg -------------------------------------------------------------------------------- /src/compositor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/main.cpp -------------------------------------------------------------------------------- /src/compositor/qml/Compositor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/Compositor.qml -------------------------------------------------------------------------------- /src/compositor/qml/KeyBindings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/KeyBindings.qml -------------------------------------------------------------------------------- /src/compositor/qml/ShellSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/ShellSettings.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/Flash.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/Flash.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/HardwareLayerSurfaceItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/HardwareLayerSurfaceItem.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/HotCorner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/HotCorner.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/IdleDimmer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/IdleDimmer.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/Keyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/Keyboard.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/LayerSurfaceItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/LayerSurfaceItem.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/LockScreenItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/LockScreenItem.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/ModalOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/ModalOverlay.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/Output.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/Output.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/OutputInfo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/OutputInfo.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/OutputWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/OutputWindow.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/PresentEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/PresentEffect.js -------------------------------------------------------------------------------- /src/compositor/qml/desktop/PresentWindowsChrome.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/PresentWindowsChrome.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/SessionLocker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/SessionLocker.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/WindowSwitcher.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/WindowSwitcher.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/Workspace.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/Workspace.qml -------------------------------------------------------------------------------- /src/compositor/qml/desktop/WorkspacesView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/desktop/WorkspacesView.qml -------------------------------------------------------------------------------- /src/compositor/qml/error/ErrorCompositor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/error/ErrorCompositor.qml -------------------------------------------------------------------------------- /src/compositor/qml/error/ErrorOutput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/error/ErrorOutput.qml -------------------------------------------------------------------------------- /src/compositor/qml/error/ErrorScreenView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/error/ErrorScreenView.qml -------------------------------------------------------------------------------- /src/compositor/qml/images/lan-connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/images/lan-connect.svg -------------------------------------------------------------------------------- /src/compositor/qml/images/lan-disconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/images/lan-disconnect.svg -------------------------------------------------------------------------------- /src/compositor/qml/overlays/HelpOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/overlays/HelpOverlay.qml -------------------------------------------------------------------------------- /src/compositor/qml/overlays/UnresponsiveOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/overlays/UnresponsiveOverlay.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/Chrome.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/Chrome.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/ChromeMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/ChromeMenu.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/DecorationButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/DecorationButton.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/MoveItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/MoveItem.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/ResizeHandler.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/ResizeHandler.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/TitleBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/TitleBar.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/XWaylandWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/XWaylandWindow.qml -------------------------------------------------------------------------------- /src/compositor/qml/windows/XdgToplevelWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/qml/windows/XdgToplevelWindow.qml -------------------------------------------------------------------------------- /src/compositor/sessionmanager/sessionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/sessionmanager/sessionmanager.cpp -------------------------------------------------------------------------------- /src/compositor/sessionmanager/sessionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/compositor/sessionmanager/sessionmanager.h -------------------------------------------------------------------------------- /src/helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/CMakeLists.txt -------------------------------------------------------------------------------- /src/helper/images/hibernate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/images/hibernate.svg -------------------------------------------------------------------------------- /src/helper/images/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/images/logout.svg -------------------------------------------------------------------------------- /src/helper/images/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/images/reload.svg -------------------------------------------------------------------------------- /src/helper/images/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/images/sleep.svg -------------------------------------------------------------------------------- /src/helper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/main.cpp -------------------------------------------------------------------------------- /src/helper/qml/AuthDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/AuthDialog.qml -------------------------------------------------------------------------------- /src/helper/qml/BackgroundWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/BackgroundWindow.qml -------------------------------------------------------------------------------- /src/helper/qml/KeyBindings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/KeyBindings.qml -------------------------------------------------------------------------------- /src/helper/qml/LogoutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/LogoutDialog.qml -------------------------------------------------------------------------------- /src/helper/qml/OsdWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/OsdWindow.qml -------------------------------------------------------------------------------- /src/helper/qml/PowerOffDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/PowerOffDialog.qml -------------------------------------------------------------------------------- /src/helper/qml/RunDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/RunDialog.qml -------------------------------------------------------------------------------- /src/helper/qml/TopLayerWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/TopLayerWindow.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/AppsGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/AppsGrid.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/AppsGridDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/AppsGridDelegate.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/AppsLauncher.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/AppsLauncher.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/CategoriesView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/CategoriesView.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/FrequentAppsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/FrequentAppsView.qml -------------------------------------------------------------------------------- /src/helper/qml/launcher/PagedGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/launcher/PagedGrid.qml -------------------------------------------------------------------------------- /src/helper/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/main.qml -------------------------------------------------------------------------------- /src/helper/qml/notifications/NotificationItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/notifications/NotificationItem.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/IndicatorsRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/IndicatorsRow.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/Panel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/Panel.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/PanelButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/PanelButton.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/ShelfPane.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/ShelfPane.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/ShutdownIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/ShutdownIndicator.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/StatusMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/StatusMenu.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/TaskBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/TaskBar.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/TaskDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/TaskDelegate.qml -------------------------------------------------------------------------------- /src/helper/qml/panel/TaskMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/helper/qml/panel/TaskMenu.qml -------------------------------------------------------------------------------- /src/imports/compositor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/compositor/abstracttitlebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/abstracttitlebar.cpp -------------------------------------------------------------------------------- /src/imports/compositor/abstracttitlebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/abstracttitlebar.h -------------------------------------------------------------------------------- /src/imports/compositor/appidandicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/appidandicon.cpp -------------------------------------------------------------------------------- /src/imports/compositor/appidandicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/appidandicon.h -------------------------------------------------------------------------------- /src/imports/compositor/chromeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/chromeitem.cpp -------------------------------------------------------------------------------- /src/imports/compositor/chromeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/chromeitem.h -------------------------------------------------------------------------------- /src/imports/compositor/desktoplayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/desktoplayout.cpp -------------------------------------------------------------------------------- /src/imports/compositor/desktoplayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/desktoplayout.h -------------------------------------------------------------------------------- /src/imports/compositor/fpscounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/fpscounter.cpp -------------------------------------------------------------------------------- /src/imports/compositor/fpscounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/fpscounter.h -------------------------------------------------------------------------------- /src/imports/compositor/helperlauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/helperlauncher.cpp -------------------------------------------------------------------------------- /src/imports/compositor/helperlauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/helperlauncher.h -------------------------------------------------------------------------------- /src/imports/compositor/hotspot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/hotspot.cpp -------------------------------------------------------------------------------- /src/imports/compositor/hotspot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/hotspot.h -------------------------------------------------------------------------------- /src/imports/compositor/keyeventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/keyeventfilter.cpp -------------------------------------------------------------------------------- /src/imports/compositor/keyeventfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/keyeventfilter.h -------------------------------------------------------------------------------- /src/imports/compositor/lirishellcompositorplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/lirishellcompositorplugin.cpp -------------------------------------------------------------------------------- /src/imports/compositor/protocols/liri-color-picker-unstable-v1.xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/protocols/liri-color-picker-unstable-v1.xml.license -------------------------------------------------------------------------------- /src/imports/compositor/protocols/liri-shell-unstable-v1.xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/protocols/liri-shell-unstable-v1.xml.license -------------------------------------------------------------------------------- /src/imports/compositor/quickoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/quickoutput.cpp -------------------------------------------------------------------------------- /src/imports/compositor/quickoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/quickoutput.h -------------------------------------------------------------------------------- /src/imports/compositor/screencast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/screencast.cpp -------------------------------------------------------------------------------- /src/imports/compositor/screencast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/screencast.h -------------------------------------------------------------------------------- /src/imports/compositor/screenmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/screenmodel.cpp -------------------------------------------------------------------------------- /src/imports/compositor/screenmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/screenmodel.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandcursorgrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandcursorgrabber.cpp -------------------------------------------------------------------------------- /src/imports/compositor/waylandcursorgrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandcursorgrabber.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandliricolorpickerv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandliricolorpickerv1.cpp -------------------------------------------------------------------------------- /src/imports/compositor/waylandliricolorpickerv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandliricolorpickerv1.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandliricolorpickerv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandliricolorpickerv1_p.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirilockscreenv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirilockscreenv1_p.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirimodalv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirimodalv1.cpp -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirimodalv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirimodalv1.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirimodalv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirimodalv1_p.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirishellv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirishellv1.cpp -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirishellv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirishellv1.h -------------------------------------------------------------------------------- /src/imports/compositor/waylandlirishellv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/waylandlirishellv1_p.h -------------------------------------------------------------------------------- /src/imports/compositor/windowmousetracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/windowmousetracker.cpp -------------------------------------------------------------------------------- /src/imports/compositor/windowmousetracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/compositor/windowmousetracker.h -------------------------------------------------------------------------------- /src/imports/loginmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/loginmanager/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/loginmanager/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/loginmanager/plugin.cpp -------------------------------------------------------------------------------- /src/imports/loginmanager/usersmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/loginmanager/usersmodel.cpp -------------------------------------------------------------------------------- /src/imports/loginmanager/usersmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/loginmanager/usersmodel.h -------------------------------------------------------------------------------- /src/imports/mpris2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/mpris2/mpris2engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/mpris2engine.cpp -------------------------------------------------------------------------------- /src/imports/mpris2/mpris2engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/mpris2engine.h -------------------------------------------------------------------------------- /src/imports/mpris2/mpris2player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/mpris2player.cpp -------------------------------------------------------------------------------- /src/imports/mpris2/mpris2player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/mpris2player.h -------------------------------------------------------------------------------- /src/imports/mpris2/org.freedesktop.DBus.Properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/org.freedesktop.DBus.Properties.xml -------------------------------------------------------------------------------- /src/imports/mpris2/org.mpris.MediaPlayer2.Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/org.mpris.MediaPlayer2.Player.xml -------------------------------------------------------------------------------- /src/imports/mpris2/org.mpris.MediaPlayer2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/org.mpris.MediaPlayer2.xml -------------------------------------------------------------------------------- /src/imports/mpris2/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/mpris2/plugin.cpp -------------------------------------------------------------------------------- /src/imports/notifications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/notifications/notificationsadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsadaptor.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsadaptor.h -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimageprovider.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimageprovider.h -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimagesstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimagesstorage.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimagesstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimagesstorage.h -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimageutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimageutils.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsimageutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsimageutils.h -------------------------------------------------------------------------------- /src/imports/notifications/notificationsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsmodel.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsmodel.h -------------------------------------------------------------------------------- /src/imports/notifications/notificationsserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsserver.cpp -------------------------------------------------------------------------------- /src/imports/notifications/notificationsserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/notificationsserver.h -------------------------------------------------------------------------------- /src/imports/notifications/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/notifications/plugin.cpp -------------------------------------------------------------------------------- /src/imports/policykit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/policykit/listener_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/listener_p.cpp -------------------------------------------------------------------------------- /src/imports/policykit/listener_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/listener_p.h -------------------------------------------------------------------------------- /src/imports/policykit/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/plugin.cpp -------------------------------------------------------------------------------- /src/imports/policykit/policykitagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/policykitagent.cpp -------------------------------------------------------------------------------- /src/imports/policykit/policykitagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/policykit/policykitagent.h -------------------------------------------------------------------------------- /src/imports/shell-private/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/shell-private/dbus/multimediakeysserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/dbus/multimediakeysserver.cpp -------------------------------------------------------------------------------- /src/imports/shell-private/dbus/multimediakeysserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/dbus/multimediakeysserver.h -------------------------------------------------------------------------------- /src/imports/shell-private/dbus/osdserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/dbus/osdserver.cpp -------------------------------------------------------------------------------- /src/imports/shell-private/dbus/osdserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/dbus/osdserver.h -------------------------------------------------------------------------------- /src/imports/shell-private/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/logging.cpp -------------------------------------------------------------------------------- /src/imports/shell-private/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/logging.h -------------------------------------------------------------------------------- /src/imports/shell-private/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell-private/plugin.cpp -------------------------------------------------------------------------------- /src/imports/shell/Background.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/Background.qml -------------------------------------------------------------------------------- /src/imports/shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/shell/Indicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/Indicator.qml -------------------------------------------------------------------------------- /src/imports/shell/LoginGreeter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/LoginGreeter.qml -------------------------------------------------------------------------------- /src/imports/shell/PanelItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/PanelItem.qml -------------------------------------------------------------------------------- /src/imports/shell/StatusAreaExtension.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/StatusAreaExtension.qml -------------------------------------------------------------------------------- /src/imports/shell/UserDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/UserDelegate.qml -------------------------------------------------------------------------------- /src/imports/shell/extensionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/extensionsmodel.cpp -------------------------------------------------------------------------------- /src/imports/shell/extensionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/extensionsmodel.h -------------------------------------------------------------------------------- /src/imports/shell/lirishellv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/lirishellv1.cpp -------------------------------------------------------------------------------- /src/imports/shell/lirishellv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/lirishellv1.h -------------------------------------------------------------------------------- /src/imports/shell/multimediakeysclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/multimediakeysclient.cpp -------------------------------------------------------------------------------- /src/imports/shell/multimediakeysclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/multimediakeysclient.h -------------------------------------------------------------------------------- /src/imports/shell/osdclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/osdclient.cpp -------------------------------------------------------------------------------- /src/imports/shell/osdclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/shell/osdclient.h -------------------------------------------------------------------------------- /src/imports/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/storage/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/plugin.cpp -------------------------------------------------------------------------------- /src/imports/storage/plugins.qmltypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/plugins.qmltypes -------------------------------------------------------------------------------- /src/imports/storage/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/qmldir -------------------------------------------------------------------------------- /src/imports/storage/storagedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/storagedevice.cpp -------------------------------------------------------------------------------- /src/imports/storage/storagedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/storagedevice.h -------------------------------------------------------------------------------- /src/imports/storage/storagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/storagemodel.cpp -------------------------------------------------------------------------------- /src/imports/storage/storagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/storage/storagemodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/taskmanager/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/application.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/application.h -------------------------------------------------------------------------------- /src/imports/taskmanager/applicationsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/applicationsmodel.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/applicationsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/applicationsmodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/appusage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/appusage.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/appusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/appusage.h -------------------------------------------------------------------------------- /src/imports/taskmanager/categoriesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/categoriesmodel.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/categoriesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/categoriesmodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/frequentmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/frequentmodel.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/frequentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/frequentmodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/pagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/pagemodel.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/pagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/pagemodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/plugin.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/qmldir -------------------------------------------------------------------------------- /src/imports/taskmanager/tasksmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/tasksmodel.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/tasksmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/tasksmodel.h -------------------------------------------------------------------------------- /src/imports/taskmanager/usagetracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/usagetracker.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/usagetracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/usagetracker.h -------------------------------------------------------------------------------- /src/imports/taskmanager/utils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/utils_p.h -------------------------------------------------------------------------------- /src/imports/taskmanager/wlrforeigntoplevelmanagementv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/wlrforeigntoplevelmanagementv1.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/wlrforeigntoplevelmanagementv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/wlrforeigntoplevelmanagementv1.h -------------------------------------------------------------------------------- /src/imports/taskmanager/wlrforeigntoplevelmanagementv1_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/wlrforeigntoplevelmanagementv1_p.h -------------------------------------------------------------------------------- /src/imports/taskmanager/xdgutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/xdgutils.cpp -------------------------------------------------------------------------------- /src/imports/taskmanager/xdgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/taskmanager/xdgutils.h -------------------------------------------------------------------------------- /src/imports/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/utils/qqmlsortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/utils/qqmlsortfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/imports/utils/qqmlsortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/imports/utils/qqmlsortfilterproxymodel.h -------------------------------------------------------------------------------- /src/lockscreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/CMakeLists.txt -------------------------------------------------------------------------------- /src/lockscreen/authenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/authenticator.cpp -------------------------------------------------------------------------------- /src/lockscreen/authenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/authenticator.h -------------------------------------------------------------------------------- /src/lockscreen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/main.cpp -------------------------------------------------------------------------------- /src/lockscreen/qml/LockScreenWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/qml/LockScreenWindow.qml -------------------------------------------------------------------------------- /src/lockscreen/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/lockscreen/qml/main.qml -------------------------------------------------------------------------------- /src/plugins/statusarea/datetime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/datetime/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/statusarea/datetime/contents/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/datetime/contents/main.qml -------------------------------------------------------------------------------- /src/plugins/statusarea/datetime/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/datetime/metadata.desktop -------------------------------------------------------------------------------- /src/plugins/statusarea/datetime/metadata.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/datetime/metadata.desktop.in -------------------------------------------------------------------------------- /src/plugins/statusarea/notifications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/notifications/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/statusarea/notifications/contents/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/notifications/contents/main.qml -------------------------------------------------------------------------------- /src/plugins/statusarea/notifications/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/notifications/metadata.desktop -------------------------------------------------------------------------------- /src/plugins/statusarea/notifications/metadata.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/notifications/metadata.desktop.in -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/contents/images/disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/contents/images/disk.svg -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/contents/images/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/contents/images/eject.svg -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/contents/images/harddisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/contents/images/harddisk.svg -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/contents/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/contents/main.qml -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/metadata.desktop -------------------------------------------------------------------------------- /src/plugins/statusarea/storage/metadata.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/storage/metadata.desktop.in -------------------------------------------------------------------------------- /src/plugins/statusarea/user/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/user/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/statusarea/user/contents/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/user/contents/main.qml -------------------------------------------------------------------------------- /src/plugins/statusarea/user/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/user/metadata.desktop -------------------------------------------------------------------------------- /src/plugins/statusarea/user/metadata.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/plugins/statusarea/user/metadata.desktop.in -------------------------------------------------------------------------------- /src/sddm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/CMakeLists.txt -------------------------------------------------------------------------------- /src/sddm/DesktopStill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/DesktopStill.qml -------------------------------------------------------------------------------- /src/sddm/Greeter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/Greeter.qml -------------------------------------------------------------------------------- /src/sddm/InputPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/InputPanel.qml -------------------------------------------------------------------------------- /src/sddm/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/Main.qml -------------------------------------------------------------------------------- /src/sddm/components/Indicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/components/Indicator.qml -------------------------------------------------------------------------------- /src/sddm/components/VirtualKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/components/VirtualKeyboard.qml -------------------------------------------------------------------------------- /src/sddm/dummydata/keyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/keyboard.qml -------------------------------------------------------------------------------- /src/sddm/dummydata/screenModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/screenModel.qml -------------------------------------------------------------------------------- /src/sddm/dummydata/sddm.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/sddm.qml -------------------------------------------------------------------------------- /src/sddm/dummydata/sessionModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/sessionModel.qml -------------------------------------------------------------------------------- /src/sddm/dummydata/tyrion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/tyrion.png -------------------------------------------------------------------------------- /src/sddm/dummydata/userModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/dummydata/userModel.qml -------------------------------------------------------------------------------- /src/sddm/images/hibernate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/hibernate.svg -------------------------------------------------------------------------------- /src/sddm/images/keyboard-variant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/keyboard-variant.svg -------------------------------------------------------------------------------- /src/sddm/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/logo.png -------------------------------------------------------------------------------- /src/sddm/images/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/logout.svg -------------------------------------------------------------------------------- /src/sddm/images/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/reload.svg -------------------------------------------------------------------------------- /src/sddm/images/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/images/sleep.svg -------------------------------------------------------------------------------- /src/sddm/indicators/Keyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/indicators/Keyboard.qml -------------------------------------------------------------------------------- /src/sddm/indicators/PowerOff.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/indicators/PowerOff.qml -------------------------------------------------------------------------------- /src/sddm/indicators/Session.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/indicators/Session.qml -------------------------------------------------------------------------------- /src/sddm/indicators/VirtualKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/indicators/VirtualKeyboard.qml -------------------------------------------------------------------------------- /src/sddm/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/metadata.desktop -------------------------------------------------------------------------------- /src/sddm/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/screenshot.png -------------------------------------------------------------------------------- /src/sddm/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/src/sddm/theme.conf -------------------------------------------------------------------------------- /tools/dropshadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/tools/dropshadow/README.md -------------------------------------------------------------------------------- /tools/dropshadow/dropshadow-24.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/tools/dropshadow/dropshadow-24.qml -------------------------------------------------------------------------------- /tools/dropshadow/dropshadow-8.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/tools/dropshadow/dropshadow-8.qml -------------------------------------------------------------------------------- /translations/compositor/compositor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_da.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_de.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_fr.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_it.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_lt.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_nl.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_pl.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_pt_BR.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_ru.ts -------------------------------------------------------------------------------- /translations/compositor/compositor_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/compositor/compositor_tr.ts -------------------------------------------------------------------------------- /translations/statusarea/datetime/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/datetime.ts -------------------------------------------------------------------------------- /translations/statusarea/datetime/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/de.po -------------------------------------------------------------------------------- /translations/statusarea/datetime/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/lt.po -------------------------------------------------------------------------------- /translations/statusarea/datetime/metadata.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/metadata.pot -------------------------------------------------------------------------------- /translations/statusarea/datetime/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/nl.po -------------------------------------------------------------------------------- /translations/statusarea/datetime/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/pt_BR.po -------------------------------------------------------------------------------- /translations/statusarea/datetime/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/datetime/tr.po -------------------------------------------------------------------------------- /translations/statusarea/notifications/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/de.po -------------------------------------------------------------------------------- /translations/statusarea/notifications/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/lt.po -------------------------------------------------------------------------------- /translations/statusarea/notifications/metadata.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/metadata.pot -------------------------------------------------------------------------------- /translations/statusarea/notifications/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/nl.po -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications_de.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications_lt.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications_nl.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications_pt_BR.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/notifications_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/notifications_tr.ts -------------------------------------------------------------------------------- /translations/statusarea/notifications/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/pt_BR.po -------------------------------------------------------------------------------- /translations/statusarea/notifications/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/notifications/tr.po -------------------------------------------------------------------------------- /translations/statusarea/storage/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/de.po -------------------------------------------------------------------------------- /translations/statusarea/storage/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/lt.po -------------------------------------------------------------------------------- /translations/statusarea/storage/metadata.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/metadata.pot -------------------------------------------------------------------------------- /translations/statusarea/storage/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/nl.po -------------------------------------------------------------------------------- /translations/statusarea/storage/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/pt_BR.po -------------------------------------------------------------------------------- /translations/statusarea/storage/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/storage_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage_de.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/storage_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage_lt.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/storage_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage_nl.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/storage_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage_pt_BR.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/storage_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/storage_tr.ts -------------------------------------------------------------------------------- /translations/statusarea/storage/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/storage/tr.po -------------------------------------------------------------------------------- /translations/statusarea/user/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/de.po -------------------------------------------------------------------------------- /translations/statusarea/user/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/lt.po -------------------------------------------------------------------------------- /translations/statusarea/user/metadata.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/metadata.pot -------------------------------------------------------------------------------- /translations/statusarea/user/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/nl.po -------------------------------------------------------------------------------- /translations/statusarea/user/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/pt_BR.po -------------------------------------------------------------------------------- /translations/statusarea/user/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/tr.po -------------------------------------------------------------------------------- /translations/statusarea/user/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/shell/HEAD/translations/statusarea/user/user.ts --------------------------------------------------------------------------------