├── .config ├── alacritty │ └── alacritty.yml ├── eww │ ├── eww.scss │ ├── eww.yuck │ └── scripts │ │ ├── battery.py │ │ ├── get-window-title │ │ ├── volume.py │ │ └── wifi.py ├── fuzzel │ └── fuzzel.ini ├── gtklock │ └── style.css ├── hypr │ └── hyprland.conf ├── ironbar │ ├── config.toml │ └── style.css ├── neofetch │ └── config.conf ├── pacdef │ ├── groups │ │ ├── core │ │ ├── hyprland │ │ ├── utils │ │ ├── x11 │ │ ├── xfce │ │ └── zsh │ └── pacdef.yaml ├── rofi │ ├── BlueRuby.rasi │ └── config.rasi ├── swaylock │ └── config ├── waybar │ ├── config.jsonc │ └── style.css └── wlogout │ └── layout ├── .wezterm.lua ├── README.md ├── aliases.sh ├── screenshot.sh └── screenshots └── screenshot.png /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/eww.scss -------------------------------------------------------------------------------- /.config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/eww.yuck -------------------------------------------------------------------------------- /.config/eww/scripts/battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/scripts/battery.py -------------------------------------------------------------------------------- /.config/eww/scripts/get-window-title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/scripts/get-window-title -------------------------------------------------------------------------------- /.config/eww/scripts/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/scripts/volume.py -------------------------------------------------------------------------------- /.config/eww/scripts/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/eww/scripts/wifi.py -------------------------------------------------------------------------------- /.config/fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /.config/gtklock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/gtklock/style.css -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/ironbar/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/ironbar/config.toml -------------------------------------------------------------------------------- /.config/ironbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/ironbar/style.css -------------------------------------------------------------------------------- /.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/neofetch/config.conf -------------------------------------------------------------------------------- /.config/pacdef/groups/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/core -------------------------------------------------------------------------------- /.config/pacdef/groups/hyprland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/hyprland -------------------------------------------------------------------------------- /.config/pacdef/groups/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/utils -------------------------------------------------------------------------------- /.config/pacdef/groups/x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/x11 -------------------------------------------------------------------------------- /.config/pacdef/groups/xfce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/xfce -------------------------------------------------------------------------------- /.config/pacdef/groups/zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/pacdef/groups/zsh -------------------------------------------------------------------------------- /.config/pacdef/pacdef.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/rofi/BlueRuby.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/rofi/BlueRuby.rasi -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- 1 | @theme "./BlueRuby.rasi" 2 | -------------------------------------------------------------------------------- /.config/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/swaylock/config -------------------------------------------------------------------------------- /.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.config/wlogout/layout -------------------------------------------------------------------------------- /.wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/.wezterm.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/README.md -------------------------------------------------------------------------------- /aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/aliases.sh -------------------------------------------------------------------------------- /screenshot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | grim -g "$(slurp -d)" - | wl-copy -t image/png 3 | -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBlueRuby/dotfiles-arch/HEAD/screenshots/screenshot.png --------------------------------------------------------------------------------