├── .config ├── alacritty │ ├── alacritty.toml │ ├── font.toml │ └── nord.toml ├── bspwm │ └── bspwmrc ├── eww │ ├── color.scss │ ├── eww.scss │ ├── eww.yuck │ ├── script │ │ ├── awt │ │ ├── vol │ │ └── wsp │ └── widget │ │ └── bar │ │ ├── asset │ │ ├── amogus.svg │ │ ├── bar.png │ │ ├── cpu.svg │ │ ├── ram.svg │ │ ├── search.svg │ │ ├── storage.svg │ │ ├── volume-100.svg │ │ ├── volume-33.svg │ │ ├── volume-66.svg │ │ ├── volume-mute.svg │ │ ├── ws-e.svg │ │ ├── ws-f.svg │ │ └── ws-o.svg │ │ ├── bar.scss │ │ └── bar.yuck ├── hypr │ ├── hyprland.conf │ ├── hyprland │ │ ├── animations.conf │ │ ├── binds.conf │ │ ├── decoration.conf │ │ ├── device.conf │ │ ├── dwindle.conf │ │ ├── ecosystem.conf │ │ ├── exec.conf │ │ ├── general.conf │ │ ├── input.conf │ │ ├── master.conf │ │ ├── misc.conf │ │ ├── windowrules.conf │ │ └── workspace.conf │ └── hyprpaper.conf ├── micro │ ├── bindings.json │ └── settings.json ├── picom │ └── picom.conf ├── rofi │ ├── config.rasi │ └── nord.rasi ├── starship.toml ├── sxhkd │ └── sxhkdrc └── yt-dlp │ └── config ├── .local └── bin │ ├── eww-w │ ├── eww-x │ ├── scm │ └── x ├── README.md ├── UNLICENSE ├── documentation └── asset │ ├── concept.png │ ├── rice-dark.svg │ └── rice-light.svg └── wallpaper └── nord-wave.png /.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /.config/alacritty/font.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/alacritty/font.toml -------------------------------------------------------------------------------- /.config/alacritty/nord.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/alacritty/nord.toml -------------------------------------------------------------------------------- /.config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/bspwm/bspwmrc -------------------------------------------------------------------------------- /.config/eww/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/color.scss -------------------------------------------------------------------------------- /.config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/eww.scss -------------------------------------------------------------------------------- /.config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/eww.yuck -------------------------------------------------------------------------------- /.config/eww/script/awt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/script/awt -------------------------------------------------------------------------------- /.config/eww/script/vol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/script/vol -------------------------------------------------------------------------------- /.config/eww/script/wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/script/wsp -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/amogus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/amogus.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/bar.png -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/cpu.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/ram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/ram.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/search.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/storage.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/volume-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/volume-100.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/volume-33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/volume-33.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/volume-66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/volume-66.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/volume-mute.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/ws-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/ws-e.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/ws-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/ws-f.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/asset/ws-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/asset/ws-o.svg -------------------------------------------------------------------------------- /.config/eww/widget/bar/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/bar.scss -------------------------------------------------------------------------------- /.config/eww/widget/bar/bar.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/eww/widget/bar/bar.yuck -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/animations.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/binds.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/decoration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/decoration.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/device.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/device.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/dwindle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/dwindle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/ecosystem.conf: -------------------------------------------------------------------------------- 1 | ecosystem { 2 | no_update_news = true 3 | } 4 | -------------------------------------------------------------------------------- /.config/hypr/hyprland/exec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/exec.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/general.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/input.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/master.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/misc.conf: -------------------------------------------------------------------------------- 1 | misc { 2 | disable_hyprland_logo = true 3 | } 4 | -------------------------------------------------------------------------------- /.config/hypr/hyprland/windowrules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/windowrules.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/workspace.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprland/workspace.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/micro/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/micro/bindings.json -------------------------------------------------------------------------------- /.config/micro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/micro/settings.json -------------------------------------------------------------------------------- /.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/picom/picom.conf -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/rofi/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/rofi/nord.rasi -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /.config/yt-dlp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.config/yt-dlp/config -------------------------------------------------------------------------------- /.local/bin/eww-w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.local/bin/eww-w -------------------------------------------------------------------------------- /.local/bin/eww-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.local/bin/eww-x -------------------------------------------------------------------------------- /.local/bin/scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.local/bin/scm -------------------------------------------------------------------------------- /.local/bin/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/.local/bin/x -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/UNLICENSE -------------------------------------------------------------------------------- /documentation/asset/concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/documentation/asset/concept.png -------------------------------------------------------------------------------- /documentation/asset/rice-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/documentation/asset/rice-dark.svg -------------------------------------------------------------------------------- /documentation/asset/rice-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/documentation/asset/rice-light.svg -------------------------------------------------------------------------------- /wallpaper/nord-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flame-0/rice/HEAD/wallpaper/nord-wave.png --------------------------------------------------------------------------------