├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── metadata.json ├── po ├── LINGUAS ├── af.po ├── ar.po ├── az.po ├── be.po ├── bg.po ├── blur-my-shell@aunetx.pot ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── et.po ├── fi.po ├── fr.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── ml.po ├── mrh.po ├── my.po ├── nb_NO.po ├── nl.po ├── nn.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sv.po ├── ta.po ├── tr.po ├── uk.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── resources ├── icons │ └── hicolor │ │ └── scalable │ │ └── actions │ │ ├── add-row-symbolic.svg │ │ ├── applications-symbolic.svg │ │ ├── bottom-panel-symbolic.svg │ │ ├── dash-symbolic.svg │ │ ├── down-symbolic.svg │ │ ├── duplicate-row-symbolic.svg │ │ ├── dynamic-mode-symbolic.svg │ │ ├── edit-row-symbolic.svg │ │ ├── heart-symbolic.svg │ │ ├── other-symbolic.svg │ │ ├── overview-symbolic.svg │ │ ├── pipelines-symbolic.svg │ │ ├── remove-row-symbolic.svg │ │ ├── reset-symbolic.svg │ │ ├── select-row-symbolic.svg │ │ ├── select-window-symbolic.svg │ │ └── static-mode-symbolic.svg └── ui │ ├── application-row.ui │ ├── applications.ui │ ├── dash.ui │ ├── effects-dialog.ui │ ├── menu.ui │ ├── other.ui │ ├── overview.ui │ ├── panel.ui │ ├── pipeline-choose-row.ui │ ├── pipeline-group.ui │ └── pipelines.ui ├── schemas └── org.gnome.shell.extensions.blur-my-shell.gschema.xml └── src ├── components ├── appfolders.js ├── applications.js ├── coverflow_alt_tab.js ├── dash_to_dock.js ├── lockscreen.js ├── overview.js ├── panel.js ├── screenshot.js └── window_list.js ├── conveniences ├── connections.js ├── dummy_pipeline.js ├── effects_manager.js ├── keys.js ├── paint_signals.js ├── pipeline.js ├── pipelines_manager.js ├── settings.js ├── settings_updater.js └── utils.js ├── dbus ├── client.js ├── iface.xml └── services.js ├── effects ├── color.glsl ├── color.js ├── corner.glsl ├── corner.js ├── derivative.glsl ├── derivative.js ├── downscale.glsl ├── downscale.js ├── effects.js ├── gaussian_blur.glsl ├── gaussian_blur.js ├── hsl_to_rgb.glsl ├── hsl_to_rgb.js ├── monte_carlo_blur.glsl ├── monte_carlo_blur.js ├── native_dynamic_gaussian_blur.js ├── native_static_gaussian_blur.js ├── noise.glsl ├── noise.js ├── pixelize.js ├── rgb_to_hsl.glsl ├── rgb_to_hsl.js ├── upscale.glsl └── upscale.js ├── extension.js ├── preferences ├── applications.js ├── applications_management │ └── application_row.js ├── dash.js ├── menu.js ├── other.js ├── overview.js ├── panel.js ├── pipelines.js └── pipelines_management │ ├── effect_row.js │ ├── effects_dialog.js │ ├── pipeline_choose_row.js │ └── pipeline_group.js ├── prefs.js └── stylesheet.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/README.md -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/metadata.json -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/af.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/blur-my-shell@aunetx.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/blur-my-shell@aunetx.pot -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/et.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mrh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/mrh.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/add-row-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/add-row-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/applications-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/applications-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/bottom-panel-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/bottom-panel-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/dash-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/dash-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/down-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/down-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/duplicate-row-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/duplicate-row-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/dynamic-mode-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/dynamic-mode-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/edit-row-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/edit-row-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/heart-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/heart-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/other-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/other-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/overview-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/overview-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/pipelines-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/pipelines-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/remove-row-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/remove-row-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/reset-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/reset-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/select-row-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/select-row-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/select-window-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/select-window-symbolic.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/scalable/actions/static-mode-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/icons/hicolor/scalable/actions/static-mode-symbolic.svg -------------------------------------------------------------------------------- /resources/ui/application-row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/application-row.ui -------------------------------------------------------------------------------- /resources/ui/applications.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/applications.ui -------------------------------------------------------------------------------- /resources/ui/dash.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/dash.ui -------------------------------------------------------------------------------- /resources/ui/effects-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/effects-dialog.ui -------------------------------------------------------------------------------- /resources/ui/menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/menu.ui -------------------------------------------------------------------------------- /resources/ui/other.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/other.ui -------------------------------------------------------------------------------- /resources/ui/overview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/overview.ui -------------------------------------------------------------------------------- /resources/ui/panel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/panel.ui -------------------------------------------------------------------------------- /resources/ui/pipeline-choose-row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/pipeline-choose-row.ui -------------------------------------------------------------------------------- /resources/ui/pipeline-group.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/pipeline-group.ui -------------------------------------------------------------------------------- /resources/ui/pipelines.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/resources/ui/pipelines.ui -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/schemas/org.gnome.shell.extensions.blur-my-shell.gschema.xml -------------------------------------------------------------------------------- /src/components/appfolders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/appfolders.js -------------------------------------------------------------------------------- /src/components/applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/applications.js -------------------------------------------------------------------------------- /src/components/coverflow_alt_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/coverflow_alt_tab.js -------------------------------------------------------------------------------- /src/components/dash_to_dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/dash_to_dock.js -------------------------------------------------------------------------------- /src/components/lockscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/lockscreen.js -------------------------------------------------------------------------------- /src/components/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/overview.js -------------------------------------------------------------------------------- /src/components/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/panel.js -------------------------------------------------------------------------------- /src/components/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/screenshot.js -------------------------------------------------------------------------------- /src/components/window_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/components/window_list.js -------------------------------------------------------------------------------- /src/conveniences/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/connections.js -------------------------------------------------------------------------------- /src/conveniences/dummy_pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/dummy_pipeline.js -------------------------------------------------------------------------------- /src/conveniences/effects_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/effects_manager.js -------------------------------------------------------------------------------- /src/conveniences/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/keys.js -------------------------------------------------------------------------------- /src/conveniences/paint_signals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/paint_signals.js -------------------------------------------------------------------------------- /src/conveniences/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/pipeline.js -------------------------------------------------------------------------------- /src/conveniences/pipelines_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/pipelines_manager.js -------------------------------------------------------------------------------- /src/conveniences/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/settings.js -------------------------------------------------------------------------------- /src/conveniences/settings_updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/settings_updater.js -------------------------------------------------------------------------------- /src/conveniences/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/conveniences/utils.js -------------------------------------------------------------------------------- /src/dbus/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/dbus/client.js -------------------------------------------------------------------------------- /src/dbus/iface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/dbus/iface.xml -------------------------------------------------------------------------------- /src/dbus/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/dbus/services.js -------------------------------------------------------------------------------- /src/effects/color.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/color.glsl -------------------------------------------------------------------------------- /src/effects/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/color.js -------------------------------------------------------------------------------- /src/effects/corner.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/corner.glsl -------------------------------------------------------------------------------- /src/effects/corner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/corner.js -------------------------------------------------------------------------------- /src/effects/derivative.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/derivative.glsl -------------------------------------------------------------------------------- /src/effects/derivative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/derivative.js -------------------------------------------------------------------------------- /src/effects/downscale.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/downscale.glsl -------------------------------------------------------------------------------- /src/effects/downscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/downscale.js -------------------------------------------------------------------------------- /src/effects/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/effects.js -------------------------------------------------------------------------------- /src/effects/gaussian_blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/gaussian_blur.glsl -------------------------------------------------------------------------------- /src/effects/gaussian_blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/gaussian_blur.js -------------------------------------------------------------------------------- /src/effects/hsl_to_rgb.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/hsl_to_rgb.glsl -------------------------------------------------------------------------------- /src/effects/hsl_to_rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/hsl_to_rgb.js -------------------------------------------------------------------------------- /src/effects/monte_carlo_blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/monte_carlo_blur.glsl -------------------------------------------------------------------------------- /src/effects/monte_carlo_blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/monte_carlo_blur.js -------------------------------------------------------------------------------- /src/effects/native_dynamic_gaussian_blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/native_dynamic_gaussian_blur.js -------------------------------------------------------------------------------- /src/effects/native_static_gaussian_blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/native_static_gaussian_blur.js -------------------------------------------------------------------------------- /src/effects/noise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/noise.glsl -------------------------------------------------------------------------------- /src/effects/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/noise.js -------------------------------------------------------------------------------- /src/effects/pixelize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/pixelize.js -------------------------------------------------------------------------------- /src/effects/rgb_to_hsl.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/rgb_to_hsl.glsl -------------------------------------------------------------------------------- /src/effects/rgb_to_hsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/rgb_to_hsl.js -------------------------------------------------------------------------------- /src/effects/upscale.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/upscale.glsl -------------------------------------------------------------------------------- /src/effects/upscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/effects/upscale.js -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/preferences/applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/applications.js -------------------------------------------------------------------------------- /src/preferences/applications_management/application_row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/applications_management/application_row.js -------------------------------------------------------------------------------- /src/preferences/dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/dash.js -------------------------------------------------------------------------------- /src/preferences/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/menu.js -------------------------------------------------------------------------------- /src/preferences/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/other.js -------------------------------------------------------------------------------- /src/preferences/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/overview.js -------------------------------------------------------------------------------- /src/preferences/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/panel.js -------------------------------------------------------------------------------- /src/preferences/pipelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/pipelines.js -------------------------------------------------------------------------------- /src/preferences/pipelines_management/effect_row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/pipelines_management/effect_row.js -------------------------------------------------------------------------------- /src/preferences/pipelines_management/effects_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/pipelines_management/effects_dialog.js -------------------------------------------------------------------------------- /src/preferences/pipelines_management/pipeline_choose_row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/pipelines_management/pipeline_choose_row.js -------------------------------------------------------------------------------- /src/preferences/pipelines_management/pipeline_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/preferences/pipelines_management/pipeline_group.js -------------------------------------------------------------------------------- /src/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/prefs.js -------------------------------------------------------------------------------- /src/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aunetx/blur-my-shell/HEAD/src/stylesheet.css --------------------------------------------------------------------------------