├── .gitignore ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── gtk-theme-config.appdata.xml ├── gtk-theme-config.desktop ├── gtk-theme-config.png ├── gtk-theme-config.svg ├── gtk-theme-config.vala └── po ├── cs.po ├── de.po ├── gtk-theme-config.pot ├── nb.po └── or.po /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | gtk-theme-config 3 | 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/README.md -------------------------------------------------------------------------------- /gtk-theme-config.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/gtk-theme-config.appdata.xml -------------------------------------------------------------------------------- /gtk-theme-config.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/gtk-theme-config.desktop -------------------------------------------------------------------------------- /gtk-theme-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/gtk-theme-config.png -------------------------------------------------------------------------------- /gtk-theme-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/gtk-theme-config.svg -------------------------------------------------------------------------------- /gtk-theme-config.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/gtk-theme-config.vala -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/po/de.po -------------------------------------------------------------------------------- /po/gtk-theme-config.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/po/gtk-theme-config.pot -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya164/gtk-theme-config/HEAD/po/or.po --------------------------------------------------------------------------------