├── .build.yml ├── .gitignore ├── .hgignore ├── .hgtags ├── CMakeLists.txt ├── COPYING.md ├── README.md ├── inc ├── config.h ├── map.h ├── match.h ├── property_box.h ├── utils.h ├── utils_g.h ├── widget_builder.h ├── widget_builder_api.h ├── wlr-layer-shell-unstable-v1-client-protocol.h ├── wofi.h ├── wofi_api.h └── xdg-output-unstable-v1-client-protocol.h ├── man ├── wofi-api.3 ├── wofi-config.3 ├── wofi-keys.7 ├── wofi-map.3 ├── wofi-utils.3 ├── wofi-widget-builder.3 ├── wofi.1 ├── wofi.3 ├── wofi.5 └── wofi.7 ├── meson.build ├── meson_options.txt ├── modes ├── dmenu.c ├── drun.c └── run.c ├── proto ├── wlr-layer-shell-unstable-v1-protocol.c ├── xdg-output-unstable-v1-protocol.c └── xdg-shell-protocol.c └── src ├── config.c ├── main.c ├── map.c ├── match.c ├── property_box.c ├── utils.c ├── utils_g.c ├── widget_builder.c └── wofi.c /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/.build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/.hgtags -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/COPYING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/README.md -------------------------------------------------------------------------------- /inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/config.h -------------------------------------------------------------------------------- /inc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/map.h -------------------------------------------------------------------------------- /inc/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/match.h -------------------------------------------------------------------------------- /inc/property_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/property_box.h -------------------------------------------------------------------------------- /inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/utils.h -------------------------------------------------------------------------------- /inc/utils_g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/utils_g.h -------------------------------------------------------------------------------- /inc/widget_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/widget_builder.h -------------------------------------------------------------------------------- /inc/widget_builder_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/widget_builder_api.h -------------------------------------------------------------------------------- /inc/wlr-layer-shell-unstable-v1-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/wlr-layer-shell-unstable-v1-client-protocol.h -------------------------------------------------------------------------------- /inc/wofi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/wofi.h -------------------------------------------------------------------------------- /inc/wofi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/wofi_api.h -------------------------------------------------------------------------------- /inc/xdg-output-unstable-v1-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/inc/xdg-output-unstable-v1-client-protocol.h -------------------------------------------------------------------------------- /man/wofi-api.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-api.3 -------------------------------------------------------------------------------- /man/wofi-config.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-config.3 -------------------------------------------------------------------------------- /man/wofi-keys.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-keys.7 -------------------------------------------------------------------------------- /man/wofi-map.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-map.3 -------------------------------------------------------------------------------- /man/wofi-utils.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-utils.3 -------------------------------------------------------------------------------- /man/wofi-widget-builder.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi-widget-builder.3 -------------------------------------------------------------------------------- /man/wofi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi.1 -------------------------------------------------------------------------------- /man/wofi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi.3 -------------------------------------------------------------------------------- /man/wofi.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi.5 -------------------------------------------------------------------------------- /man/wofi.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/man/wofi.7 -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/meson_options.txt -------------------------------------------------------------------------------- /modes/dmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/modes/dmenu.c -------------------------------------------------------------------------------- /modes/drun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/modes/drun.c -------------------------------------------------------------------------------- /modes/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/modes/run.c -------------------------------------------------------------------------------- /proto/wlr-layer-shell-unstable-v1-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/proto/wlr-layer-shell-unstable-v1-protocol.c -------------------------------------------------------------------------------- /proto/xdg-output-unstable-v1-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/proto/xdg-output-unstable-v1-protocol.c -------------------------------------------------------------------------------- /proto/xdg-shell-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/proto/xdg-shell-protocol.c -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/config.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/main.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/map.c -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/match.c -------------------------------------------------------------------------------- /src/property_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/property_box.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/utils_g.c -------------------------------------------------------------------------------- /src/widget_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/widget_builder.c -------------------------------------------------------------------------------- /src/wofi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimplyCEO/wofi/HEAD/src/wofi.c --------------------------------------------------------------------------------