gitextract_7_pxnf_6/ ├── .clang-format ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── build.yml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── TODO ├── generate-manpage.sh ├── meson.build ├── meson.format ├── meson.options ├── src/ │ ├── common.h │ ├── debug.c │ ├── debug.h │ ├── embed.c │ ├── embed.h │ ├── icons.c │ ├── icons.h │ ├── image.c │ ├── image.h │ ├── kde_tray.c │ ├── kde_tray.h │ ├── layout.c │ ├── layout.h │ ├── list.h │ ├── main.c │ ├── meson.build │ ├── scrollbars.c │ ├── scrollbars.h │ ├── settings.c │ ├── settings.h │ ├── tray.c │ ├── tray.h │ ├── wmh.c │ ├── wmh.h │ ├── xembed.c │ ├── xembed.h │ ├── xinerama.c │ ├── xinerama.h │ ├── xutils.c │ └── xutils.h ├── stalonetray.xml.in ├── stalonetrayrc.sample └── utils/ ├── get_props/ │ └── main.c ├── py-gtk-example/ │ ├── LICENSE │ ├── README.md │ ├── gtk-example.glade │ ├── gtk-example.py │ └── python3.xpm ├── tray-test-fdo/ │ ├── main.c │ ├── run_icons │ ├── seq1 │ ├── seq2 │ ├── xembed.c │ └── xembed.h ├── tray-test-gtk/ │ └── traytest └── tray-xembed-test/ ├── common.h ├── debug.c ├── main.c ├── run ├── xembed.c ├── xembed.h ├── xutils.c └── xutils.h