├── .gitignore ├── COPYING ├── README.md ├── bundle.sh ├── extension.js ├── metadata.json ├── prefs.js ├── schemas └── org.gnome.shell.extensions.pip-on-top.gschema.xml └── translate.sh /.gitignore: -------------------------------------------------------------------------------- 1 | locale/ 2 | po/ 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/README.md -------------------------------------------------------------------------------- /bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/bundle.sh -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/extension.js -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/metadata.json -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/prefs.js -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.pip-on-top.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/schemas/org.gnome.shell.extensions.pip-on-top.gschema.xml -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rafostar/gnome-shell-extension-pip-on-top/HEAD/translate.sh --------------------------------------------------------------------------------