├── .cirrus.yml ├── .github └── cirrus-ci.sh ├── .gitignore ├── AUTHORS ├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── configure ├── configure.project ├── data ├── Makefile ├── gmrun.1 ├── gmrun.desktop ├── gmrun.png └── gmrunrc ├── gtkcompat.h ├── po ├── Makefile ├── POTFILES ├── es.po ├── fr.po ├── gmrun.pot ├── he.po └── zzpo.sh ├── src ├── Makefile ├── config_prefs.c ├── config_prefs.h ├── gtkcompletionline.c ├── gtkcompletionline.h ├── history.c ├── history.h └── main.c └── w_conf ├── gettext └── gtk /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/cirrus-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/.github/cirrus-ci.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/configure -------------------------------------------------------------------------------- /configure.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/configure.project -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/gmrun.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/data/gmrun.1 -------------------------------------------------------------------------------- /data/gmrun.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/data/gmrun.desktop -------------------------------------------------------------------------------- /data/gmrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/data/gmrun.png -------------------------------------------------------------------------------- /data/gmrunrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/data/gmrunrc -------------------------------------------------------------------------------- /gtkcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/gtkcompat.h -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gmrun.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/gmrun.pot -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/he.po -------------------------------------------------------------------------------- /po/zzpo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/po/zzpo.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/config_prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/config_prefs.c -------------------------------------------------------------------------------- /src/config_prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/config_prefs.h -------------------------------------------------------------------------------- /src/gtkcompletionline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/gtkcompletionline.c -------------------------------------------------------------------------------- /src/gtkcompletionline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/gtkcompletionline.h -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/history.c -------------------------------------------------------------------------------- /src/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/history.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/src/main.c -------------------------------------------------------------------------------- /w_conf/gettext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/w_conf/gettext -------------------------------------------------------------------------------- /w_conf/gtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlkmpx/gmrun/HEAD/w_conf/gtk --------------------------------------------------------------------------------