├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── assets ├── hellwal-completion.bash ├── hellwal.fish └── script.sh ├── hell_colors.h ├── hell_parser.h ├── hellwal.c ├── stb_image.h ├── templates ├── alphacolors.css ├── colors ├── colors-rgb ├── colors.css ├── colors.hellwal ├── colors.json ├── colors.scss ├── colors.vim ├── discord-colors.css ├── dwl-colors-bar.h ├── dwl-colors.h ├── foot-colors.ini ├── fuzzel-colors.ini ├── gtk.css ├── hellpaper.conf ├── hellwm.lua ├── hyprland-colors.conf ├── kitty-colors.conf ├── mako-colors ├── micro-colors.micro ├── qt-colors.conf ├── rofi.rasi ├── terminal.sh ├── variables.sh ├── variablesfish.fish ├── waybar-colors.css └── zathura-colors └── themes ├── catppuccin.hellwal ├── gruvbox-light.hellwal ├── gruvbox-material.hellwal ├── gruvbox.hellwal ├── kanagawa.hellwal ├── onedark.hellwal ├── tokyo-night.hellwal ├── zenbones-light.hellwal └── zenbones.hellwal /.gitignore: -------------------------------------------------------------------------------- 1 | ./hellwal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.7 2 | -------------------------------------------------------------------------------- /assets/hellwal-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/assets/hellwal-completion.bash -------------------------------------------------------------------------------- /assets/hellwal.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/assets/hellwal.fish -------------------------------------------------------------------------------- /assets/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/assets/script.sh -------------------------------------------------------------------------------- /hell_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/hell_colors.h -------------------------------------------------------------------------------- /hell_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/hell_parser.h -------------------------------------------------------------------------------- /hellwal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/hellwal.c -------------------------------------------------------------------------------- /stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/stb_image.h -------------------------------------------------------------------------------- /templates/alphacolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/alphacolors.css -------------------------------------------------------------------------------- /templates/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors -------------------------------------------------------------------------------- /templates/colors-rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors-rgb -------------------------------------------------------------------------------- /templates/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors.css -------------------------------------------------------------------------------- /templates/colors.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors.hellwal -------------------------------------------------------------------------------- /templates/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors.json -------------------------------------------------------------------------------- /templates/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors.scss -------------------------------------------------------------------------------- /templates/colors.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/colors.vim -------------------------------------------------------------------------------- /templates/discord-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/discord-colors.css -------------------------------------------------------------------------------- /templates/dwl-colors-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/dwl-colors-bar.h -------------------------------------------------------------------------------- /templates/dwl-colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/dwl-colors.h -------------------------------------------------------------------------------- /templates/foot-colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/foot-colors.ini -------------------------------------------------------------------------------- /templates/fuzzel-colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/fuzzel-colors.ini -------------------------------------------------------------------------------- /templates/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/gtk.css -------------------------------------------------------------------------------- /templates/hellpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/hellpaper.conf -------------------------------------------------------------------------------- /templates/hellwm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/hellwm.lua -------------------------------------------------------------------------------- /templates/hyprland-colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/hyprland-colors.conf -------------------------------------------------------------------------------- /templates/kitty-colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/kitty-colors.conf -------------------------------------------------------------------------------- /templates/mako-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/mako-colors -------------------------------------------------------------------------------- /templates/micro-colors.micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/micro-colors.micro -------------------------------------------------------------------------------- /templates/qt-colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/qt-colors.conf -------------------------------------------------------------------------------- /templates/rofi.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/rofi.rasi -------------------------------------------------------------------------------- /templates/terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/terminal.sh -------------------------------------------------------------------------------- /templates/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/variables.sh -------------------------------------------------------------------------------- /templates/variablesfish.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/variablesfish.fish -------------------------------------------------------------------------------- /templates/waybar-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/waybar-colors.css -------------------------------------------------------------------------------- /templates/zathura-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/templates/zathura-colors -------------------------------------------------------------------------------- /themes/catppuccin.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/catppuccin.hellwal -------------------------------------------------------------------------------- /themes/gruvbox-light.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/gruvbox-light.hellwal -------------------------------------------------------------------------------- /themes/gruvbox-material.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/gruvbox-material.hellwal -------------------------------------------------------------------------------- /themes/gruvbox.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/gruvbox.hellwal -------------------------------------------------------------------------------- /themes/kanagawa.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/kanagawa.hellwal -------------------------------------------------------------------------------- /themes/onedark.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/onedark.hellwal -------------------------------------------------------------------------------- /themes/tokyo-night.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/tokyo-night.hellwal -------------------------------------------------------------------------------- /themes/zenbones-light.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/zenbones-light.hellwal -------------------------------------------------------------------------------- /themes/zenbones.hellwal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwal/HEAD/themes/zenbones.hellwal --------------------------------------------------------------------------------