├── .github ├── ASSETS.md ├── ghost.png └── ghost_nobg.png ├── LICENSE ├── README.md ├── extension.js ├── metadata.json ├── pack.sh ├── patches ├── appDisplayPatcher.js └── appMenuPatcher.js ├── po ├── bg.po ├── de.po ├── es.po ├── fr.po ├── it.po ├── oc.po ├── pl.po ├── pt-br.po ├── ru.po ├── tr.po └── zh_CN.po ├── prefs.js └── schemas ├── gschemas.compiled └── org.gnome.shell.extensions.app-hider.gschema.xml /.github/ASSETS.md: -------------------------------------------------------------------------------- 1 | Folder for assets 2 | -------------------------------------------------------------------------------- /.github/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/.github/ghost.png -------------------------------------------------------------------------------- /.github/ghost_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/.github/ghost_nobg.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/README.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/extension.js -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/metadata.json -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/pack.sh -------------------------------------------------------------------------------- /patches/appDisplayPatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/patches/appDisplayPatcher.js -------------------------------------------------------------------------------- /patches/appMenuPatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/patches/appMenuPatcher.js -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/it.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt-br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/pt-br.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/prefs.js -------------------------------------------------------------------------------- /schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/schemas/gschemas.compiled -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.app-hider.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynithDev/gnome-app-hider/HEAD/schemas/org.gnome.shell.extensions.app-hider.gschema.xml --------------------------------------------------------------------------------