├── .config ├── alacritty │ └── alacritty.yml ├── cava │ └── config ├── neofetch │ └── config.conf ├── qutebrowser │ ├── autoconfig.yml │ ├── bookmarks │ │ └── urls │ ├── config.py │ ├── onedark.py │ ├── quickmarks │ └── totallynotmoddeddracula │ │ ├── INSTALL.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── draw.cpython-310.pyc │ │ ├── draw.py │ │ ├── readme.md │ │ └── screenshot.png ├── swaylock │ ├── config │ └── swaybackgrounds │ │ └── blur.png ├── wallpaper.png ├── waybar │ ├── config │ ├── style.css │ └── style.css.bak ├── wayfire.ini ├── wlogout │ ├── layout │ └── style.css └── wofi │ ├── config │ └── style.css ├── README.md ├── home ├── zshrc └── zshrc.pre-oh-my-zsh └── images ├── grrgtk.png ├── print1.png └── wofifofi.png /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/cava/config -------------------------------------------------------------------------------- /.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/neofetch/config.conf -------------------------------------------------------------------------------- /.config/qutebrowser/autoconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/autoconfig.yml -------------------------------------------------------------------------------- /.config/qutebrowser/bookmarks/urls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/config.py -------------------------------------------------------------------------------- /.config/qutebrowser/onedark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/onedark.py -------------------------------------------------------------------------------- /.config/qutebrowser/quickmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/quickmarks -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/INSTALL.md -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/__pycache__/draw.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/__pycache__/draw.cpython-310.pyc -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/draw.py -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/readme.md -------------------------------------------------------------------------------- /.config/qutebrowser/totallynotmoddeddracula/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/qutebrowser/totallynotmoddeddracula/screenshot.png -------------------------------------------------------------------------------- /.config/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/swaylock/config -------------------------------------------------------------------------------- /.config/swaylock/swaybackgrounds/blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/swaylock/swaybackgrounds/blur.png -------------------------------------------------------------------------------- /.config/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wallpaper.png -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/waybar/style.css.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/waybar/style.css.bak -------------------------------------------------------------------------------- /.config/wayfire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wayfire.ini -------------------------------------------------------------------------------- /.config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wlogout/layout -------------------------------------------------------------------------------- /.config/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wlogout/style.css -------------------------------------------------------------------------------- /.config/wofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wofi/config -------------------------------------------------------------------------------- /.config/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/.config/wofi/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/README.md -------------------------------------------------------------------------------- /home/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/home/zshrc -------------------------------------------------------------------------------- /home/zshrc.pre-oh-my-zsh: -------------------------------------------------------------------------------- 1 | # Created by newuser for 5.8.1 2 | -------------------------------------------------------------------------------- /images/grrgtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/images/grrgtk.png -------------------------------------------------------------------------------- /images/print1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/images/print1.png -------------------------------------------------------------------------------- /images/wofifofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tryware/Wayfire-Lavender/HEAD/images/wofifofi.png --------------------------------------------------------------------------------