├── .builds └── alpine-x64.yml ├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .woodpecker.yml ├── CHANGELOG.md ├── LICENSE ├── PKGBUILD ├── PKGBUILD.wayland-only ├── README.md ├── bar ├── backend.h ├── bar.c ├── bar.h ├── meson.build ├── private.h ├── wayland.c ├── wayland.h ├── xcb.c └── xcb.h ├── char32.c ├── char32.h ├── color.h ├── completions ├── meson.build └── zsh │ └── _yambar ├── config-verify.c ├── config-verify.h ├── config.c ├── config.h ├── decoration.h ├── decorations ├── background.c ├── border.c ├── meson.build ├── overline.c ├── stack.c └── underline.c ├── doc ├── meson.build ├── yambar-decorations.5.scd ├── yambar-modules-alsa.5.scd ├── yambar-modules-backlight.5.scd ├── yambar-modules-battery.5.scd ├── yambar-modules-clock.5.scd ├── yambar-modules-cpu.5.scd ├── yambar-modules-disk-io.5.scd ├── yambar-modules-dwl.5.scd ├── yambar-modules-foreign-toplevel.5.scd ├── yambar-modules-i3.5.scd ├── yambar-modules-label.5.scd ├── yambar-modules-mem.5.scd ├── yambar-modules-mpd.5.scd ├── yambar-modules-network.5.scd ├── yambar-modules-pipewire.5.scd ├── yambar-modules-pulse.5.scd ├── yambar-modules-removables.5.scd ├── yambar-modules-river.5.scd ├── yambar-modules-script.5.scd ├── yambar-modules-sway-xkb.5.scd ├── yambar-modules-sway.5.scd ├── yambar-modules-xkb.5.scd ├── yambar-modules-xwindow.5.scd ├── yambar-modules.5.scd ├── yambar-particles.5.scd ├── yambar-tags.5.scd ├── yambar.1.scd └── yambar.5.scd ├── examples ├── configurations │ ├── laptop.conf │ └── river-tags.conf └── scripts │ ├── cpu.sh │ ├── dwl-tags.sh │ └── pacman.sh ├── external ├── river-status-unstable-v1.xml ├── wlr-foreign-toplevel-management-unstable-v1.xml └── wlr-layer-shell-unstable-v1.xml ├── font-shaping.h ├── generate-version.sh ├── log.c ├── log.h ├── main.c ├── meson.build ├── meson_options.txt ├── module.c ├── module.h ├── modules ├── alsa.c ├── backlight.c ├── battery.c ├── clock.c ├── cpu.c ├── disk-io.c ├── dwl.c ├── foreign-toplevel.c ├── i3-common.c ├── i3-common.h ├── i3-ipc.h ├── i3.c ├── label.c ├── mem.c ├── meson.build ├── mpd.c ├── network.c ├── pipewire.c ├── pulse.c ├── removables.c ├── river.c ├── script.c ├── sway-xkb.c ├── xkb.c └── xwindow.c ├── particle.c ├── particle.h ├── particles ├── dynlist.c ├── dynlist.h ├── empty.c ├── list.c ├── map.c ├── map.h ├── map.l ├── map.y ├── meson.build ├── progress-bar.c ├── ramp.c └── string.c ├── plugin.c ├── plugin.h ├── screenshot.png ├── stride.h ├── subprojects ├── fcft.wrap └── tllist.wrap ├── tag.c ├── tag.h ├── test ├── full-conf-good.yml ├── meson.build └── no-bar.yml ├── xcb.c ├── xcb.h ├── yambar.desktop ├── yml.c └── yml.h /.builds/alpine-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.builds/alpine-x64.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.gitmodules -------------------------------------------------------------------------------- /.woodpecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/.woodpecker.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/PKGBUILD -------------------------------------------------------------------------------- /PKGBUILD.wayland-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/PKGBUILD.wayland-only -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/README.md -------------------------------------------------------------------------------- /bar/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/backend.h -------------------------------------------------------------------------------- /bar/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/bar.c -------------------------------------------------------------------------------- /bar/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/bar.h -------------------------------------------------------------------------------- /bar/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/meson.build -------------------------------------------------------------------------------- /bar/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/private.h -------------------------------------------------------------------------------- /bar/wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/wayland.c -------------------------------------------------------------------------------- /bar/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/wayland.h -------------------------------------------------------------------------------- /bar/xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/xcb.c -------------------------------------------------------------------------------- /bar/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/bar/xcb.h -------------------------------------------------------------------------------- /char32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/char32.c -------------------------------------------------------------------------------- /char32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/char32.h -------------------------------------------------------------------------------- /color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/color.h -------------------------------------------------------------------------------- /completions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/completions/meson.build -------------------------------------------------------------------------------- /completions/zsh/_yambar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/completions/zsh/_yambar -------------------------------------------------------------------------------- /config-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/config-verify.c -------------------------------------------------------------------------------- /config-verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/config-verify.h -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/config.h -------------------------------------------------------------------------------- /decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decoration.h -------------------------------------------------------------------------------- /decorations/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/background.c -------------------------------------------------------------------------------- /decorations/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/border.c -------------------------------------------------------------------------------- /decorations/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/meson.build -------------------------------------------------------------------------------- /decorations/overline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/overline.c -------------------------------------------------------------------------------- /decorations/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/stack.c -------------------------------------------------------------------------------- /decorations/underline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/decorations/underline.c -------------------------------------------------------------------------------- /doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/meson.build -------------------------------------------------------------------------------- /doc/yambar-decorations.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-decorations.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-alsa.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-alsa.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-backlight.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-backlight.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-battery.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-battery.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-clock.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-clock.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-cpu.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-cpu.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-disk-io.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-disk-io.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-dwl.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-dwl.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-foreign-toplevel.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-foreign-toplevel.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-i3.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-i3.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-label.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-label.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-mem.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-mem.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-mpd.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-mpd.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-network.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-network.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-pipewire.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-pipewire.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-pulse.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-pulse.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-removables.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-removables.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-river.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-river.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-script.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-script.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-sway-xkb.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-sway-xkb.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-sway.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-sway.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-xkb.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-xkb.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules-xwindow.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules-xwindow.5.scd -------------------------------------------------------------------------------- /doc/yambar-modules.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-modules.5.scd -------------------------------------------------------------------------------- /doc/yambar-particles.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-particles.5.scd -------------------------------------------------------------------------------- /doc/yambar-tags.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar-tags.5.scd -------------------------------------------------------------------------------- /doc/yambar.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar.1.scd -------------------------------------------------------------------------------- /doc/yambar.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/doc/yambar.5.scd -------------------------------------------------------------------------------- /examples/configurations/laptop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/examples/configurations/laptop.conf -------------------------------------------------------------------------------- /examples/configurations/river-tags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/examples/configurations/river-tags.conf -------------------------------------------------------------------------------- /examples/scripts/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/examples/scripts/cpu.sh -------------------------------------------------------------------------------- /examples/scripts/dwl-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/examples/scripts/dwl-tags.sh -------------------------------------------------------------------------------- /examples/scripts/pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/examples/scripts/pacman.sh -------------------------------------------------------------------------------- /external/river-status-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/external/river-status-unstable-v1.xml -------------------------------------------------------------------------------- /external/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/external/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /external/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/external/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /font-shaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/font-shaping.h -------------------------------------------------------------------------------- /generate-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/generate-version.sh -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/log.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/main.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/meson_options.txt -------------------------------------------------------------------------------- /module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/module.c -------------------------------------------------------------------------------- /module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/module.h -------------------------------------------------------------------------------- /modules/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/alsa.c -------------------------------------------------------------------------------- /modules/backlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/backlight.c -------------------------------------------------------------------------------- /modules/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/battery.c -------------------------------------------------------------------------------- /modules/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/clock.c -------------------------------------------------------------------------------- /modules/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/cpu.c -------------------------------------------------------------------------------- /modules/disk-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/disk-io.c -------------------------------------------------------------------------------- /modules/dwl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/dwl.c -------------------------------------------------------------------------------- /modules/foreign-toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/foreign-toplevel.c -------------------------------------------------------------------------------- /modules/i3-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/i3-common.c -------------------------------------------------------------------------------- /modules/i3-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/i3-common.h -------------------------------------------------------------------------------- /modules/i3-ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/i3-ipc.h -------------------------------------------------------------------------------- /modules/i3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/i3.c -------------------------------------------------------------------------------- /modules/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/label.c -------------------------------------------------------------------------------- /modules/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/mem.c -------------------------------------------------------------------------------- /modules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/meson.build -------------------------------------------------------------------------------- /modules/mpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/mpd.c -------------------------------------------------------------------------------- /modules/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/network.c -------------------------------------------------------------------------------- /modules/pipewire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/pipewire.c -------------------------------------------------------------------------------- /modules/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/pulse.c -------------------------------------------------------------------------------- /modules/removables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/removables.c -------------------------------------------------------------------------------- /modules/river.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/river.c -------------------------------------------------------------------------------- /modules/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/script.c -------------------------------------------------------------------------------- /modules/sway-xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/sway-xkb.c -------------------------------------------------------------------------------- /modules/xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/xkb.c -------------------------------------------------------------------------------- /modules/xwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/modules/xwindow.c -------------------------------------------------------------------------------- /particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particle.c -------------------------------------------------------------------------------- /particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particle.h -------------------------------------------------------------------------------- /particles/dynlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/dynlist.c -------------------------------------------------------------------------------- /particles/dynlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/dynlist.h -------------------------------------------------------------------------------- /particles/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/empty.c -------------------------------------------------------------------------------- /particles/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/list.c -------------------------------------------------------------------------------- /particles/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/map.c -------------------------------------------------------------------------------- /particles/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/map.h -------------------------------------------------------------------------------- /particles/map.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/map.l -------------------------------------------------------------------------------- /particles/map.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/map.y -------------------------------------------------------------------------------- /particles/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/meson.build -------------------------------------------------------------------------------- /particles/progress-bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/progress-bar.c -------------------------------------------------------------------------------- /particles/ramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/ramp.c -------------------------------------------------------------------------------- /particles/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/particles/string.c -------------------------------------------------------------------------------- /plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/plugin.c -------------------------------------------------------------------------------- /plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/plugin.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/screenshot.png -------------------------------------------------------------------------------- /stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/stride.h -------------------------------------------------------------------------------- /subprojects/fcft.wrap: -------------------------------------------------------------------------------- 1 | [wrap-git] 2 | url = https://codeberg.org/dnkl/fcft.git 3 | revision = master 4 | -------------------------------------------------------------------------------- /subprojects/tllist.wrap: -------------------------------------------------------------------------------- 1 | [wrap-git] 2 | url = https://codeberg.org/dnkl/tllist.git 3 | revision = master 4 | -------------------------------------------------------------------------------- /tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/tag.c -------------------------------------------------------------------------------- /tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/tag.h -------------------------------------------------------------------------------- /test/full-conf-good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/test/full-conf-good.yml -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/no-bar.yml: -------------------------------------------------------------------------------- 1 | top-level-isnt-bar: 2 | hello: world 3 | 4 | -------------------------------------------------------------------------------- /xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/xcb.c -------------------------------------------------------------------------------- /xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/xcb.h -------------------------------------------------------------------------------- /yambar.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/yambar.desktop -------------------------------------------------------------------------------- /yml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/yml.c -------------------------------------------------------------------------------- /yml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonkore/yambar/HEAD/yml.h --------------------------------------------------------------------------------