├── LICENSE ├── README.md ├── about.js ├── commandsUI.js ├── extension.js ├── locale ├── de │ └── LC_MESSAGES │ │ └── custom-command-list.mo ├── es │ └── LC_MESSAGES │ │ └── custom-command-list.mo ├── fr │ └── LC_MESSAGES │ │ └── custom-command-list.mo ├── it │ └── LC_MESSAGES │ │ └── custom-command-list.mo └── ru │ └── LC_MESSAGES │ └── custom-command-list.mo ├── metadata.json ├── po ├── de.po ├── es.po ├── fr.po ├── it.po └── ru.po ├── prefs.js ├── schemas └── org.gnome.shell.extensions.custom-command-list.gschema.xml └── screenshots ├── screenshot-command-6.png ├── screenshot-main-10.png └── screenshots.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/README.md -------------------------------------------------------------------------------- /about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/about.js -------------------------------------------------------------------------------- /commandsUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/commandsUI.js -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/extension.js -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/custom-command-list.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/locale/de/LC_MESSAGES/custom-command-list.mo -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/custom-command-list.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/locale/es/LC_MESSAGES/custom-command-list.mo -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/custom-command-list.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/locale/fr/LC_MESSAGES/custom-command-list.mo -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/custom-command-list.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/locale/it/LC_MESSAGES/custom-command-list.mo -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/custom-command-list.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/locale/ru/LC_MESSAGES/custom-command-list.mo -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/metadata.json -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/po/ru.po -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/prefs.js -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.custom-command-list.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/schemas/org.gnome.shell.extensions.custom-command-list.gschema.xml -------------------------------------------------------------------------------- /screenshots/screenshot-command-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/screenshots/screenshot-command-6.png -------------------------------------------------------------------------------- /screenshots/screenshot-main-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorageB/custom-command-menu/HEAD/screenshots/screenshot-main-10.png -------------------------------------------------------------------------------- /screenshots/screenshots.md: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------