├── .Xresources ├── LICENSE ├── README.md ├── config ├── dunst │ └── dunstrc ├── qtile │ ├── autostart.sh │ ├── config.py │ ├── getlayout.sh │ ├── logo.png │ ├── pw │ ├── recordrofi │ ├── rofi-banner.png │ ├── vol.sh │ └── wallpaper.png └── rofi │ ├── applets │ ├── bin │ │ ├── appasroot.sh │ │ ├── apps.sh │ │ ├── battery.sh │ │ ├── brightness.sh │ │ ├── mpd.sh │ │ ├── powermenu.sh │ │ ├── quicklinks.sh │ │ ├── screenshot.sh │ │ └── volume.sh │ ├── shared │ │ ├── colors.rasi │ │ ├── fonts.rasi │ │ └── theme.bash │ ├── type-1 │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ └── style-3.rasi │ ├── type-2 │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ └── style-3.rasi │ ├── type-3 │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ └── style-3.rasi │ ├── type-4 │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ └── style-3.rasi │ └── type-5 │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ └── style-3.rasi │ ├── colors │ ├── adapta.rasi │ ├── arc.rasi │ ├── black.rasi │ ├── catppuccin.rasi │ ├── cyberpunk.rasi │ ├── dracula.rasi │ ├── everforest.rasi │ ├── gruvbox.rasi │ ├── lovelace.rasi │ ├── navy.rasi │ ├── nord.rasi │ ├── onedark.rasi │ ├── paper.rasi │ ├── solarized.rasi │ ├── tokyonight.rasi │ └── yousai.rasi │ ├── config.rasi │ ├── images │ ├── a.png │ ├── b.png │ ├── c.png │ ├── d.png │ ├── e.jpg │ ├── f.png │ ├── flowers-1.png │ ├── flowers-2.png │ ├── flowers-3.png │ ├── g.png │ ├── gradient.png │ ├── h.jpg │ ├── i.jpg │ ├── j.jpg │ ├── paper.png │ └── user.jpeg │ ├── launchers │ ├── type-1 │ │ ├── launcher.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-11.rasi │ │ ├── style-12.rasi │ │ ├── style-13.rasi │ │ ├── style-14.rasi │ │ ├── style-15.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── type-2 │ │ ├── launcher.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-11.rasi │ │ ├── style-12.rasi │ │ ├── style-13.rasi │ │ ├── style-14.rasi │ │ ├── style-15.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── type-3 │ │ ├── launcher.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── type-4 │ │ ├── launcher.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── type-5 │ │ ├── launcher.sh │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── type-6 │ │ ├── launcher.sh │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ └── type-7 │ │ ├── launcher.sh │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── powermenu │ ├── type-1 │ │ ├── powermenu.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── type-2 │ │ ├── powermenu.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-10.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ ├── style-5.rasi │ │ ├── style-6.rasi │ │ ├── style-7.rasi │ │ ├── style-8.rasi │ │ └── style-9.rasi │ ├── type-3 │ │ ├── powermenu.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ ├── confirm.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── type-4 │ │ ├── powermenu.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ ├── confirm.rasi │ │ │ └── fonts.rasi │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── type-5 │ │ ├── powermenu.sh │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ └── type-6 │ │ ├── powermenu.sh │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── reccolors.rasi │ ├── recfonts.rasi │ ├── recorder.rasi │ └── scripts │ ├── launcher_t1 │ ├── launcher_t2 │ ├── launcher_t3 │ ├── launcher_t4 │ ├── launcher_t5 │ ├── launcher_t6 │ ├── launcher_t7 │ ├── powermenu_t1 │ ├── powermenu_t2 │ ├── powermenu_t3 │ ├── powermenu_t4 │ ├── powermenu_t5 │ └── powermenu_t6 ├── install.sh └── stuff └── qtilerice.png /.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/.Xresources -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/README.md -------------------------------------------------------------------------------- /config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/dunst/dunstrc -------------------------------------------------------------------------------- /config/qtile/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/autostart.sh -------------------------------------------------------------------------------- /config/qtile/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/config.py -------------------------------------------------------------------------------- /config/qtile/getlayout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/getlayout.sh -------------------------------------------------------------------------------- /config/qtile/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/logo.png -------------------------------------------------------------------------------- /config/qtile/pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/pw -------------------------------------------------------------------------------- /config/qtile/recordrofi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/recordrofi -------------------------------------------------------------------------------- /config/qtile/rofi-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/rofi-banner.png -------------------------------------------------------------------------------- /config/qtile/vol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/vol.sh -------------------------------------------------------------------------------- /config/qtile/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/qtile/wallpaper.png -------------------------------------------------------------------------------- /config/rofi/applets/bin/appasroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/appasroot.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/apps.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/battery.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/brightness.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/mpd.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/quicklinks.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/screenshot.sh -------------------------------------------------------------------------------- /config/rofi/applets/bin/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/bin/volume.sh -------------------------------------------------------------------------------- /config/rofi/applets/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/applets/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/applets/shared/theme.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/shared/theme.bash -------------------------------------------------------------------------------- /config/rofi/applets/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-1/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-1/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-1/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-2/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-2/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-2/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-3/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-3/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-3/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-4/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-4/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-4/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-5/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-5/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/applets/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/applets/type-5/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/colors/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/adapta.rasi -------------------------------------------------------------------------------- /config/rofi/colors/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/arc.rasi -------------------------------------------------------------------------------- /config/rofi/colors/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/black.rasi -------------------------------------------------------------------------------- /config/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/catppuccin.rasi -------------------------------------------------------------------------------- /config/rofi/colors/cyberpunk.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/cyberpunk.rasi -------------------------------------------------------------------------------- /config/rofi/colors/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/dracula.rasi -------------------------------------------------------------------------------- /config/rofi/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/everforest.rasi -------------------------------------------------------------------------------- /config/rofi/colors/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/gruvbox.rasi -------------------------------------------------------------------------------- /config/rofi/colors/lovelace.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/lovelace.rasi -------------------------------------------------------------------------------- /config/rofi/colors/navy.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/navy.rasi -------------------------------------------------------------------------------- /config/rofi/colors/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/nord.rasi -------------------------------------------------------------------------------- /config/rofi/colors/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/onedark.rasi -------------------------------------------------------------------------------- /config/rofi/colors/paper.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/paper.rasi -------------------------------------------------------------------------------- /config/rofi/colors/solarized.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/solarized.rasi -------------------------------------------------------------------------------- /config/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/tokyonight.rasi -------------------------------------------------------------------------------- /config/rofi/colors/yousai.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/colors/yousai.rasi -------------------------------------------------------------------------------- /config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/config.rasi -------------------------------------------------------------------------------- /config/rofi/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/a.png -------------------------------------------------------------------------------- /config/rofi/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/b.png -------------------------------------------------------------------------------- /config/rofi/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/c.png -------------------------------------------------------------------------------- /config/rofi/images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/d.png -------------------------------------------------------------------------------- /config/rofi/images/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/e.jpg -------------------------------------------------------------------------------- /config/rofi/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/f.png -------------------------------------------------------------------------------- /config/rofi/images/flowers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/flowers-1.png -------------------------------------------------------------------------------- /config/rofi/images/flowers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/flowers-2.png -------------------------------------------------------------------------------- /config/rofi/images/flowers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/flowers-3.png -------------------------------------------------------------------------------- /config/rofi/images/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/g.png -------------------------------------------------------------------------------- /config/rofi/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/gradient.png -------------------------------------------------------------------------------- /config/rofi/images/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/h.jpg -------------------------------------------------------------------------------- /config/rofi/images/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/i.jpg -------------------------------------------------------------------------------- /config/rofi/images/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/j.jpg -------------------------------------------------------------------------------- /config/rofi/images/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/paper.png -------------------------------------------------------------------------------- /config/rofi/images/user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/images/user.jpeg -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-11.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-12.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-13.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-14.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-15.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-1/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-1/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-11.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-12.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-13.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-14.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-15.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-2/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-3/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-3/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-4/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-4/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-5/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-6/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-6/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/launchers/type-7/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/launchers/type-7/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-1/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-10.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-6.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-7.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-8.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-2/style-9.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/shared/confirm.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-3/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/shared/confirm.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-4/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-5/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/style-1.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/style-2.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/style-3.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/style-4.rasi -------------------------------------------------------------------------------- /config/rofi/powermenu/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/powermenu/type-6/style-5.rasi -------------------------------------------------------------------------------- /config/rofi/reccolors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/reccolors.rasi -------------------------------------------------------------------------------- /config/rofi/recfonts.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | font: "JetBrains Mono Bold 10"; 3 | } 4 | -------------------------------------------------------------------------------- /config/rofi/recorder.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/config/rofi/recorder.rasi -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t1: -------------------------------------------------------------------------------- 1 | ../launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t2: -------------------------------------------------------------------------------- 1 | ../launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t3: -------------------------------------------------------------------------------- 1 | ../launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t4: -------------------------------------------------------------------------------- 1 | ../launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t5: -------------------------------------------------------------------------------- 1 | ../launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t6: -------------------------------------------------------------------------------- 1 | ../launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher_t7: -------------------------------------------------------------------------------- 1 | ../launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t1: -------------------------------------------------------------------------------- 1 | ../powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t2: -------------------------------------------------------------------------------- 1 | ../powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t3: -------------------------------------------------------------------------------- 1 | ../powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t4: -------------------------------------------------------------------------------- 1 | ../powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t5: -------------------------------------------------------------------------------- 1 | ../powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu_t6: -------------------------------------------------------------------------------- 1 | ../powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/install.sh -------------------------------------------------------------------------------- /stuff/qtilerice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/qtile-rice/HEAD/stuff/qtilerice.png --------------------------------------------------------------------------------