├── .github └── workflows │ └── ci.yaml ├── .gitmodules ├── LICENSE ├── README.md ├── ipc-scripts ├── ghost-toggle.py ├── pin-view.py ├── set-obs-effect.py ├── trailfocus.py ├── unpin-view.py ├── view-shot.py ├── workspace-names-expo.py ├── workspace-names-setter-gtk.py └── workspace-names-setter.py ├── locale ├── meson.build └── zh_CN │ └── LC_MESSAGES │ ├── wf-plugin-annotate.po │ ├── wf-plugin-autorotate-iio.po │ ├── wf-plugin-bench.po │ ├── wf-plugin-crosshair.po │ ├── wf-plugin-extra-animations.po │ ├── wf-plugin-focus-change.po │ ├── wf-plugin-focus-steal-prevent.po │ ├── wf-plugin-follow-focus.po │ ├── wf-plugin-force-fullscreen.po │ ├── wf-plugin-ghost.po │ ├── wf-plugin-hide-cursor.po │ ├── wf-plugin-join-views.po │ ├── wf-plugin-keycolor.po │ ├── wf-plugin-mag.po │ ├── wf-plugin-obs.po │ ├── wf-plugin-pin-view.po │ ├── wf-plugin-showrepaint.po │ ├── wf-plugin-showtouch.po │ ├── wf-plugin-view-shot.po │ ├── wf-plugin-water.po │ ├── wf-plugin-window-zoom.po │ └── wf-plugin-workspace-names.po ├── meson.build ├── meson_options.txt ├── metadata ├── annotate.xml ├── autorotate-iio.xml ├── bench.xml ├── crosshair.xml ├── extra-animations.xml ├── focus-change.xml ├── focus-steal-prevent.xml ├── follow-focus.xml ├── force-fullscreen.xml ├── ghost.xml ├── hide-cursor.xml ├── join-views.xml ├── keycolor.xml ├── mag.xml ├── meson.build ├── obs.xml ├── pin-view.xml ├── showrepaint.xml ├── showtouch.xml ├── view-shot.xml ├── water.xml ├── window-zoom.xml └── workspace-names.xml ├── proto └── meson.build └── src ├── annotate.cpp ├── autorotate-iio.cpp ├── bench.cpp ├── crosshair.cpp ├── extra-animations ├── blinds.hpp ├── dodge.hpp ├── helix.hpp ├── melt.hpp ├── meson.build ├── plugin.cpp ├── shatter.hpp └── vortex.hpp ├── focus-change.cpp ├── focus-steal-prevent.cpp ├── follow-focus.cpp ├── force-fullscreen.cpp ├── ghost.cpp ├── glib-main-loop.cpp ├── hide-cursor.cpp ├── join-views.cpp ├── keycolor.cpp ├── mag.cpp ├── meson.build ├── obs.cpp ├── pin-view.cpp ├── showrepaint.cpp ├── showtouch.cpp ├── view-shot.cpp ├── water.cpp ├── window-zoom.cpp └── workspace-names.cpp /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/README.md -------------------------------------------------------------------------------- /ipc-scripts/ghost-toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/ghost-toggle.py -------------------------------------------------------------------------------- /ipc-scripts/pin-view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/pin-view.py -------------------------------------------------------------------------------- /ipc-scripts/set-obs-effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/set-obs-effect.py -------------------------------------------------------------------------------- /ipc-scripts/trailfocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/trailfocus.py -------------------------------------------------------------------------------- /ipc-scripts/unpin-view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/unpin-view.py -------------------------------------------------------------------------------- /ipc-scripts/view-shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/view-shot.py -------------------------------------------------------------------------------- /ipc-scripts/workspace-names-expo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/workspace-names-expo.py -------------------------------------------------------------------------------- /ipc-scripts/workspace-names-setter-gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/workspace-names-setter-gtk.py -------------------------------------------------------------------------------- /ipc-scripts/workspace-names-setter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/ipc-scripts/workspace-names-setter.py -------------------------------------------------------------------------------- /locale/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/meson.build -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-annotate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-annotate.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-autorotate-iio.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-autorotate-iio.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-bench.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-bench.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-crosshair.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-crosshair.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-extra-animations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-extra-animations.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-focus-change.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-focus-change.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-focus-steal-prevent.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-focus-steal-prevent.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-follow-focus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-follow-focus.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-force-fullscreen.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-force-fullscreen.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-ghost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-ghost.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-hide-cursor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-hide-cursor.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-join-views.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-join-views.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-keycolor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-keycolor.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-mag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-mag.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-obs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-obs.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-pin-view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-pin-view.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-showrepaint.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-showrepaint.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-showtouch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-showtouch.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-view-shot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-view-shot.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-water.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-water.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-window-zoom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-window-zoom.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/wf-plugin-workspace-names.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/locale/zh_CN/LC_MESSAGES/wf-plugin-workspace-names.po -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/meson_options.txt -------------------------------------------------------------------------------- /metadata/annotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/annotate.xml -------------------------------------------------------------------------------- /metadata/autorotate-iio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/autorotate-iio.xml -------------------------------------------------------------------------------- /metadata/bench.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/bench.xml -------------------------------------------------------------------------------- /metadata/crosshair.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/crosshair.xml -------------------------------------------------------------------------------- /metadata/extra-animations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/extra-animations.xml -------------------------------------------------------------------------------- /metadata/focus-change.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/focus-change.xml -------------------------------------------------------------------------------- /metadata/focus-steal-prevent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/focus-steal-prevent.xml -------------------------------------------------------------------------------- /metadata/follow-focus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/follow-focus.xml -------------------------------------------------------------------------------- /metadata/force-fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/force-fullscreen.xml -------------------------------------------------------------------------------- /metadata/ghost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/ghost.xml -------------------------------------------------------------------------------- /metadata/hide-cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/hide-cursor.xml -------------------------------------------------------------------------------- /metadata/join-views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/join-views.xml -------------------------------------------------------------------------------- /metadata/keycolor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/keycolor.xml -------------------------------------------------------------------------------- /metadata/mag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/mag.xml -------------------------------------------------------------------------------- /metadata/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/meson.build -------------------------------------------------------------------------------- /metadata/obs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/obs.xml -------------------------------------------------------------------------------- /metadata/pin-view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/pin-view.xml -------------------------------------------------------------------------------- /metadata/showrepaint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/showrepaint.xml -------------------------------------------------------------------------------- /metadata/showtouch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/showtouch.xml -------------------------------------------------------------------------------- /metadata/view-shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/view-shot.xml -------------------------------------------------------------------------------- /metadata/water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/water.xml -------------------------------------------------------------------------------- /metadata/window-zoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/window-zoom.xml -------------------------------------------------------------------------------- /metadata/workspace-names.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/metadata/workspace-names.xml -------------------------------------------------------------------------------- /proto/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/proto/meson.build -------------------------------------------------------------------------------- /src/annotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/annotate.cpp -------------------------------------------------------------------------------- /src/autorotate-iio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/autorotate-iio.cpp -------------------------------------------------------------------------------- /src/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/bench.cpp -------------------------------------------------------------------------------- /src/crosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/crosshair.cpp -------------------------------------------------------------------------------- /src/extra-animations/blinds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/blinds.hpp -------------------------------------------------------------------------------- /src/extra-animations/dodge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/dodge.hpp -------------------------------------------------------------------------------- /src/extra-animations/helix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/helix.hpp -------------------------------------------------------------------------------- /src/extra-animations/melt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/melt.hpp -------------------------------------------------------------------------------- /src/extra-animations/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/meson.build -------------------------------------------------------------------------------- /src/extra-animations/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/plugin.cpp -------------------------------------------------------------------------------- /src/extra-animations/shatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/shatter.hpp -------------------------------------------------------------------------------- /src/extra-animations/vortex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/extra-animations/vortex.hpp -------------------------------------------------------------------------------- /src/focus-change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/focus-change.cpp -------------------------------------------------------------------------------- /src/focus-steal-prevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/focus-steal-prevent.cpp -------------------------------------------------------------------------------- /src/follow-focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/follow-focus.cpp -------------------------------------------------------------------------------- /src/force-fullscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/force-fullscreen.cpp -------------------------------------------------------------------------------- /src/ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/ghost.cpp -------------------------------------------------------------------------------- /src/glib-main-loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/glib-main-loop.cpp -------------------------------------------------------------------------------- /src/hide-cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/hide-cursor.cpp -------------------------------------------------------------------------------- /src/join-views.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/join-views.cpp -------------------------------------------------------------------------------- /src/keycolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/keycolor.cpp -------------------------------------------------------------------------------- /src/mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/mag.cpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/obs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/obs.cpp -------------------------------------------------------------------------------- /src/pin-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/pin-view.cpp -------------------------------------------------------------------------------- /src/showrepaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/showrepaint.cpp -------------------------------------------------------------------------------- /src/showtouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/showtouch.cpp -------------------------------------------------------------------------------- /src/view-shot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/view-shot.cpp -------------------------------------------------------------------------------- /src/water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/water.cpp -------------------------------------------------------------------------------- /src/window-zoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/window-zoom.cpp -------------------------------------------------------------------------------- /src/workspace-names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayfireWM/wayfire-plugins-extra/HEAD/src/workspace-names.cpp --------------------------------------------------------------------------------