├── .gitattributes ├── LICENSE ├── README.md ├── README.txt ├── screenshots ├── beauty_shot.jpg ├── beauty_shot_2.jpg ├── tweaks_settings.jpg ├── whisker_panel.jpg ├── white_amount.jpg ├── xray_1701.jpg └── xray_day_night.jpg ├── xfwm-effects ├── xfwm-effects-install.sh ├── xfwm-effects-source ├── settings-dialogs │ └── effects │ │ ├── Makefile │ │ ├── src │ │ └── xfwm-effects.c │ │ ├── xfwm-effects-install.sh │ │ ├── xfwm-effects.desktop │ │ ├── xfwm-effects.glade │ │ ├── xfwm-effects.svg │ │ └── xfwm-effects.xml └── src │ ├── compositor.c │ ├── screen.c │ └── screen.h ├── xfwm-effects.desktop ├── xfwm-effects.glade ├── xfwm-effects.svg ├── xfwm-effects.xml └── xfwm4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/README.txt -------------------------------------------------------------------------------- /screenshots/beauty_shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/beauty_shot.jpg -------------------------------------------------------------------------------- /screenshots/beauty_shot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/beauty_shot_2.jpg -------------------------------------------------------------------------------- /screenshots/tweaks_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/tweaks_settings.jpg -------------------------------------------------------------------------------- /screenshots/whisker_panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/whisker_panel.jpg -------------------------------------------------------------------------------- /screenshots/white_amount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/white_amount.jpg -------------------------------------------------------------------------------- /screenshots/xray_1701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/xray_1701.jpg -------------------------------------------------------------------------------- /screenshots/xray_day_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/screenshots/xray_day_night.jpg -------------------------------------------------------------------------------- /xfwm-effects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects -------------------------------------------------------------------------------- /xfwm-effects-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-install.sh -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/Makefile -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/src/xfwm-effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/src/xfwm-effects.c -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/xfwm-effects-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/xfwm-effects-install.sh -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/xfwm-effects.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/xfwm-effects.desktop -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/xfwm-effects.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/xfwm-effects.glade -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/xfwm-effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/xfwm-effects.svg -------------------------------------------------------------------------------- /xfwm-effects-source/settings-dialogs/effects/xfwm-effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/settings-dialogs/effects/xfwm-effects.xml -------------------------------------------------------------------------------- /xfwm-effects-source/src/compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/src/compositor.c -------------------------------------------------------------------------------- /xfwm-effects-source/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/src/screen.c -------------------------------------------------------------------------------- /xfwm-effects-source/src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects-source/src/screen.h -------------------------------------------------------------------------------- /xfwm-effects.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects.desktop -------------------------------------------------------------------------------- /xfwm-effects.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects.glade -------------------------------------------------------------------------------- /xfwm-effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects.svg -------------------------------------------------------------------------------- /xfwm-effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm-effects.xml -------------------------------------------------------------------------------- /xfwm4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-andi/xfce-blur-effects/HEAD/xfwm4 --------------------------------------------------------------------------------