├── .gitignore ├── .ts-for-girrc.js ├── @types └── Gjs │ ├── Atk-1.0.d.ts │ ├── Atk-1.0.js │ ├── GLib-2.0.d.ts │ ├── GLib-2.0.js │ ├── GModule-2.0.d.ts │ ├── GModule-2.0.js │ ├── GObject-2.0.d.ts │ ├── GObject-2.0.js │ ├── Gdk-3.0.d.ts │ ├── Gdk-3.0.js │ ├── GdkPixbuf-2.0.d.ts │ ├── GdkPixbuf-2.0.js │ ├── Gio-2.0.d.ts │ ├── Gio-2.0.js │ ├── Gjs.d.ts │ ├── Gjs.js │ ├── Gtk-3.0.d.ts │ ├── Gtk-3.0.js │ ├── Handy-1.d.ts │ ├── Handy-1.js │ ├── HarfBuzz-0.0.d.ts │ ├── HarfBuzz-0.0.js │ ├── Notify-0.7.d.ts │ ├── Notify-0.7.js │ ├── Pango-1.0.d.ts │ ├── Pango-1.0.js │ ├── cairo-1.0.d.ts │ ├── cairo-1.0.js │ ├── cast.ts │ ├── index.d.ts │ ├── index.js │ ├── xlib-2.0.d.ts │ └── xlib-2.0.js ├── LICENSE ├── README.md ├── dist └── mutter_settings.js ├── install ├── package.json ├── pickawindow@lluo.gitlab.com ├── extension.js ├── metadata.json ├── schemas │ ├── gschemas.compiled │ └── org.gnome.shell.extensions.pickawindow.gschema.xml └── stylesheet.css ├── src ├── main.ts ├── pick_window.ts ├── settings.ts └── window.ts ├── tsconfig.json ├── ui ├── app_row.glade ├── bl_row.glade └── window.glade └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | yarn.lock 3 | *.tar -------------------------------------------------------------------------------- /.ts-for-girrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/.ts-for-girrc.js -------------------------------------------------------------------------------- /@types/Gjs/Atk-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Atk-1.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Atk-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Atk-1.0.js -------------------------------------------------------------------------------- /@types/Gjs/GLib-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GLib-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/GLib-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GLib-2.0.js -------------------------------------------------------------------------------- /@types/Gjs/GModule-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GModule-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/GModule-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GModule-2.0.js -------------------------------------------------------------------------------- /@types/Gjs/GObject-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GObject-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/GObject-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GObject-2.0.js -------------------------------------------------------------------------------- /@types/Gjs/Gdk-3.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gdk-3.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Gdk-3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gdk-3.0.js -------------------------------------------------------------------------------- /@types/Gjs/GdkPixbuf-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GdkPixbuf-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/GdkPixbuf-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/GdkPixbuf-2.0.js -------------------------------------------------------------------------------- /@types/Gjs/Gio-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gio-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Gio-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gio-2.0.js -------------------------------------------------------------------------------- /@types/Gjs/Gjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gjs.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Gjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gjs.js -------------------------------------------------------------------------------- /@types/Gjs/Gtk-3.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gtk-3.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Gtk-3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Gtk-3.0.js -------------------------------------------------------------------------------- /@types/Gjs/Handy-1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Handy-1.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Handy-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Handy-1.js -------------------------------------------------------------------------------- /@types/Gjs/HarfBuzz-0.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/HarfBuzz-0.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/HarfBuzz-0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/HarfBuzz-0.0.js -------------------------------------------------------------------------------- /@types/Gjs/Notify-0.7.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Notify-0.7.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Notify-0.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Notify-0.7.js -------------------------------------------------------------------------------- /@types/Gjs/Pango-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Pango-1.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/Pango-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/Pango-1.0.js -------------------------------------------------------------------------------- /@types/Gjs/cairo-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/cairo-1.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/cairo-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/cairo-1.0.js -------------------------------------------------------------------------------- /@types/Gjs/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/cast.ts -------------------------------------------------------------------------------- /@types/Gjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/index.d.ts -------------------------------------------------------------------------------- /@types/Gjs/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /@types/Gjs/xlib-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/xlib-2.0.d.ts -------------------------------------------------------------------------------- /@types/Gjs/xlib-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/@types/Gjs/xlib-2.0.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/README.md -------------------------------------------------------------------------------- /dist/mutter_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/dist/mutter_settings.js -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/install -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/package.json -------------------------------------------------------------------------------- /pickawindow@lluo.gitlab.com/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/pickawindow@lluo.gitlab.com/extension.js -------------------------------------------------------------------------------- /pickawindow@lluo.gitlab.com/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/pickawindow@lluo.gitlab.com/metadata.json -------------------------------------------------------------------------------- /pickawindow@lluo.gitlab.com/schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/pickawindow@lluo.gitlab.com/schemas/gschemas.compiled -------------------------------------------------------------------------------- /pickawindow@lluo.gitlab.com/schemas/org.gnome.shell.extensions.pickawindow.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/pickawindow@lluo.gitlab.com/schemas/org.gnome.shell.extensions.pickawindow.gschema.xml -------------------------------------------------------------------------------- /pickawindow@lluo.gitlab.com/stylesheet.css: -------------------------------------------------------------------------------- 1 | /* Add your custom extension styling here */ 2 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pick_window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/src/pick_window.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/src/window.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui/app_row.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/ui/app_row.glade -------------------------------------------------------------------------------- /ui/bl_row.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/ui/bl_row.glade -------------------------------------------------------------------------------- /ui/window.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/ui/window.glade -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilozt/mutter-rounded-setting/HEAD/webpack.config.js --------------------------------------------------------------------------------