├── .github └── workflows │ └── ci.yaml ├── .gitmodules ├── LICENSE ├── README.md ├── data ├── css │ ├── README.md │ ├── default.css │ ├── meson.build │ ├── panel-battery-zoom-hover.css │ ├── panel-command-output-small.css │ ├── panel-launchers-zoom-hover.css │ ├── panel-menu-button-small.css │ ├── panel-menu-zoom-hover.css │ ├── panel-network-zoom-hover.css │ ├── panel-selectors.css │ ├── panel-tray-zoom-hover.css │ ├── panel-volume-zoom-hover.css │ ├── panel-window-list-zoom-hover.css │ └── user-font.css ├── icons │ ├── 128x128 │ │ └── wayfire.png │ ├── 160x160 │ │ └── wayfire.png │ ├── 192x192 │ │ └── wayfire.png │ ├── 256x256 │ │ └── wayfire.png │ ├── 48x48 │ │ └── wayfire.png │ ├── 512x512 │ │ └── wayfire.png │ ├── 64x64 │ │ └── wayfire.png │ ├── 72x72 │ │ └── wayfire.png │ ├── 96x96 │ │ └── wayfire.png │ └── scalable │ │ └── wayfire.svg ├── meson.build ├── wallpaper.jpg └── wayfire.png ├── meson.build ├── meson_options.txt ├── metadata ├── background.xml.in ├── dock.xml ├── meson.build └── panel.xml ├── proto ├── meson.build └── wlr-foreign-toplevel-management-unstable-v1.xml ├── screenshot.png ├── src ├── background │ ├── background.cpp │ ├── background.hpp │ └── meson.build ├── dock │ ├── dock-app.cpp │ ├── dock.cpp │ ├── dock.hpp │ ├── meson.build │ ├── toplevel-icon.cpp │ ├── toplevel-icon.hpp │ ├── toplevel.cpp │ └── toplevel.hpp ├── meson.build ├── panel │ ├── meson.build │ ├── panel.cpp │ ├── panel.hpp │ ├── widget.hpp │ └── widgets │ │ ├── battery.cpp │ │ ├── battery.hpp │ │ ├── clock.cpp │ │ ├── clock.hpp │ │ ├── command-output.cpp │ │ ├── command-output.hpp │ │ ├── launchers.cpp │ │ ├── launchers.hpp │ │ ├── menu.cpp │ │ ├── menu.hpp │ │ ├── network.cpp │ │ ├── network.hpp │ │ ├── notifications │ │ ├── daemon.cpp │ │ ├── daemon.hpp │ │ ├── notification-center.cpp │ │ ├── notification-center.hpp │ │ ├── notification-info.cpp │ │ ├── notification-info.hpp │ │ ├── single-notification.cpp │ │ └── single-notification.hpp │ │ ├── separator.cpp │ │ ├── separator.hpp │ │ ├── spacing.cpp │ │ ├── spacing.hpp │ │ ├── tray │ │ ├── dbusmenu.cpp │ │ ├── dbusmenu.hpp │ │ ├── host.cpp │ │ ├── host.hpp │ │ ├── item.cpp │ │ ├── item.hpp │ │ ├── tray.cpp │ │ ├── tray.hpp │ │ ├── watcher.cpp │ │ └── watcher.hpp │ │ ├── volume.cpp │ │ ├── volume.hpp │ │ └── window-list │ │ ├── layout.cpp │ │ ├── layout.hpp │ │ ├── toplevel.cpp │ │ ├── toplevel.hpp │ │ ├── window-list.cpp │ │ └── window-list.hpp └── util │ ├── css-config.cpp │ ├── css-config.hpp │ ├── gtk-utils.cpp │ ├── gtk-utils.hpp │ ├── meson.build │ ├── wf-autohide-window.cpp │ ├── wf-autohide-window.hpp │ ├── wf-option-wrap.hpp │ ├── wf-popover.cpp │ ├── wf-popover.hpp │ ├── wf-shell-app.cpp │ └── wf-shell-app.hpp └── wf-shell.ini.example /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/README.md -------------------------------------------------------------------------------- /data/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/README.md -------------------------------------------------------------------------------- /data/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/default.css -------------------------------------------------------------------------------- /data/css/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/meson.build -------------------------------------------------------------------------------- /data/css/panel-battery-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-battery-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-command-output-small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-command-output-small.css -------------------------------------------------------------------------------- /data/css/panel-launchers-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-launchers-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-menu-button-small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-menu-button-small.css -------------------------------------------------------------------------------- /data/css/panel-menu-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-menu-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-network-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-network-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-selectors.css -------------------------------------------------------------------------------- /data/css/panel-tray-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-tray-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-volume-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-volume-zoom-hover.css -------------------------------------------------------------------------------- /data/css/panel-window-list-zoom-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/css/panel-window-list-zoom-hover.css -------------------------------------------------------------------------------- /data/css/user-font.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Jetbrains Mono Regular; 3 | } -------------------------------------------------------------------------------- /data/icons/128x128/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/128x128/wayfire.png -------------------------------------------------------------------------------- /data/icons/160x160/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/160x160/wayfire.png -------------------------------------------------------------------------------- /data/icons/192x192/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/192x192/wayfire.png -------------------------------------------------------------------------------- /data/icons/256x256/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/256x256/wayfire.png -------------------------------------------------------------------------------- /data/icons/48x48/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/48x48/wayfire.png -------------------------------------------------------------------------------- /data/icons/512x512/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/512x512/wayfire.png -------------------------------------------------------------------------------- /data/icons/64x64/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/64x64/wayfire.png -------------------------------------------------------------------------------- /data/icons/72x72/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/72x72/wayfire.png -------------------------------------------------------------------------------- /data/icons/96x96/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/96x96/wayfire.png -------------------------------------------------------------------------------- /data/icons/scalable/wayfire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/icons/scalable/wayfire.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/wallpaper.jpg -------------------------------------------------------------------------------- /data/wayfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/data/wayfire.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/meson_options.txt -------------------------------------------------------------------------------- /metadata/background.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/metadata/background.xml.in -------------------------------------------------------------------------------- /metadata/dock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/metadata/dock.xml -------------------------------------------------------------------------------- /metadata/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/metadata/meson.build -------------------------------------------------------------------------------- /metadata/panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/metadata/panel.xml -------------------------------------------------------------------------------- /proto/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/proto/meson.build -------------------------------------------------------------------------------- /proto/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/proto/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/background/background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/background/background.cpp -------------------------------------------------------------------------------- /src/background/background.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/background/background.hpp -------------------------------------------------------------------------------- /src/background/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/background/meson.build -------------------------------------------------------------------------------- /src/dock/dock-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/dock-app.cpp -------------------------------------------------------------------------------- /src/dock/dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/dock.cpp -------------------------------------------------------------------------------- /src/dock/dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/dock.hpp -------------------------------------------------------------------------------- /src/dock/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/meson.build -------------------------------------------------------------------------------- /src/dock/toplevel-icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/toplevel-icon.cpp -------------------------------------------------------------------------------- /src/dock/toplevel-icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/toplevel-icon.hpp -------------------------------------------------------------------------------- /src/dock/toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/toplevel.cpp -------------------------------------------------------------------------------- /src/dock/toplevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/dock/toplevel.hpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/panel/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/meson.build -------------------------------------------------------------------------------- /src/panel/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/panel.cpp -------------------------------------------------------------------------------- /src/panel/panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/panel.hpp -------------------------------------------------------------------------------- /src/panel/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widget.hpp -------------------------------------------------------------------------------- /src/panel/widgets/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/battery.cpp -------------------------------------------------------------------------------- /src/panel/widgets/battery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/battery.hpp -------------------------------------------------------------------------------- /src/panel/widgets/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/clock.cpp -------------------------------------------------------------------------------- /src/panel/widgets/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/clock.hpp -------------------------------------------------------------------------------- /src/panel/widgets/command-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/command-output.cpp -------------------------------------------------------------------------------- /src/panel/widgets/command-output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/command-output.hpp -------------------------------------------------------------------------------- /src/panel/widgets/launchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/launchers.cpp -------------------------------------------------------------------------------- /src/panel/widgets/launchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/launchers.hpp -------------------------------------------------------------------------------- /src/panel/widgets/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/menu.cpp -------------------------------------------------------------------------------- /src/panel/widgets/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/menu.hpp -------------------------------------------------------------------------------- /src/panel/widgets/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/network.cpp -------------------------------------------------------------------------------- /src/panel/widgets/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/network.hpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/daemon.cpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/daemon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/daemon.hpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/notification-center.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/notification-center.cpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/notification-center.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/notification-center.hpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/notification-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/notification-info.cpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/notification-info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/notification-info.hpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/single-notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/single-notification.cpp -------------------------------------------------------------------------------- /src/panel/widgets/notifications/single-notification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/notifications/single-notification.hpp -------------------------------------------------------------------------------- /src/panel/widgets/separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/separator.cpp -------------------------------------------------------------------------------- /src/panel/widgets/separator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/separator.hpp -------------------------------------------------------------------------------- /src/panel/widgets/spacing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/spacing.cpp -------------------------------------------------------------------------------- /src/panel/widgets/spacing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/spacing.hpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/dbusmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/dbusmenu.cpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/dbusmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/dbusmenu.hpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/host.cpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/host.hpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/item.cpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/item.hpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/tray.cpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/tray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/tray.hpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/watcher.cpp -------------------------------------------------------------------------------- /src/panel/widgets/tray/watcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/tray/watcher.hpp -------------------------------------------------------------------------------- /src/panel/widgets/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/volume.cpp -------------------------------------------------------------------------------- /src/panel/widgets/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/volume.hpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/layout.cpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/layout.hpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/toplevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/toplevel.cpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/toplevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/toplevel.hpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/window-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/window-list.cpp -------------------------------------------------------------------------------- /src/panel/widgets/window-list/window-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/panel/widgets/window-list/window-list.hpp -------------------------------------------------------------------------------- /src/util/css-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/css-config.cpp -------------------------------------------------------------------------------- /src/util/css-config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/css-config.hpp -------------------------------------------------------------------------------- /src/util/gtk-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/gtk-utils.cpp -------------------------------------------------------------------------------- /src/util/gtk-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/gtk-utils.hpp -------------------------------------------------------------------------------- /src/util/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/meson.build -------------------------------------------------------------------------------- /src/util/wf-autohide-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-autohide-window.cpp -------------------------------------------------------------------------------- /src/util/wf-autohide-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-autohide-window.hpp -------------------------------------------------------------------------------- /src/util/wf-option-wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-option-wrap.hpp -------------------------------------------------------------------------------- /src/util/wf-popover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-popover.cpp -------------------------------------------------------------------------------- /src/util/wf-popover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-popover.hpp -------------------------------------------------------------------------------- /src/util/wf-shell-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-shell-app.cpp -------------------------------------------------------------------------------- /src/util/wf-shell-app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/src/util/wf-shell-app.hpp -------------------------------------------------------------------------------- /wf-shell.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wf-shell/HEAD/wf-shell.ini.example --------------------------------------------------------------------------------