diff options
| author | Josh <joshott16@gmail.com> | 2025-07-24 08:15:52 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-07-24 08:15:52 -0400 |
| commit | 21150560c5762a4f6f446e74f2020f61d9ba4221 (patch) | |
| tree | 73a20509a1f19e90bc6e4bd240e89332693e2c8d /wallust/templates | |
| parent | 993b580ec5ea47a8f7d5b1d84556d6f27dc6a22c (diff) | |
| download | dotfiles-21150560c5762a4f6f446e74f2020f61d9ba4221.tar.gz dotfiles-21150560c5762a4f6f446e74f2020f61d9ba4221.zip | |
the great colorscheme migration
Diffstat (limited to 'wallust/templates')
| -rw-r--r-- | wallust/templates/colors_fish.fish | 39 | ||||
| -rw-r--r-- | wallust/templates/colors_kitty.conf | 29 | ||||
| -rw-r--r-- | wallust/templates/colors_neowallust.vim | 19 | ||||
| -rw-r--r-- | wallust/templates/colors_rofi.rasi | 10 | ||||
| -rw-r--r-- | wallust/templates/colors_sway | 21 | ||||
| -rw-r--r-- | wallust/templates/colors_waybar.css | 20 | ||||
| -rw-r--r-- | wallust/templates/colors_zathura | 34 | ||||
| -rw-r--r-- | wallust/templates/dunstrc | 22 | ||||
| -rw-r--r-- | wallust/templates/starship.toml | 149 | ||||
| -rw-r--r-- | wallust/templates/starship_transient.toml | 8 | ||||
| -rw-r--r-- | wallust/templates/swaylock | 29 |
11 files changed, 380 insertions, 0 deletions
diff --git a/wallust/templates/colors_fish.fish b/wallust/templates/colors_fish.fish new file mode 100644 index 0000000..c97a2da --- /dev/null +++ b/wallust/templates/colors_fish.fish @@ -0,0 +1,39 @@ +set fish_color_autosuggestion {color8.strip} +set fish_color_cancel {color1.strip} '--reverse' +set fish_color_command {color10.strip} +set fish_color_comment {color8.strip} +set fish_color_cwd {color2.strip} +set fish_color_cwd_root {color1.strip} +set fish_color_end {color3.strip} +set fish_color_error {color1.strip} +set fish_color_escape {color5.strip} +set fish_color_history_current --bold +set fish_color_host {color12.strip} +set fish_color_host_remote {color12.strip} +set fish_color_keyword {color5.strip} +set fish_color_match --background={color4.strip} +set fish_color_normal {foreground.strip} +set fish_color_operator {color6.strip} +set fish_color_option {color3.strip} +set fish_color_param {color12.strip} +set fish_color_quote {color11.strip} +set fish_color_redirection {color5.strip} +set fish_color_search_match --background={color8.strip} +set fish_color_selection --background={color8.strip} +set fish_color_status {color1.strip} +set fish_color_user {color10.strip} +set fish_color_valid_path --underline + +set fish_pager_color_background {background.strip} +set fish_pager_color_completion {foreground.strip} +set fish_pager_color_description {color8.strip} +set fish_pager_color_prefix {color10.strip} +set fish_pager_color_progress {color8.strip} +set fish_pager_color_secondary_background {background.strip} +set fish_pager_color_secondary_completion {foreground.strip} +set fish_pager_color_secondary_description {color8.strip} +set fish_pager_color_secondary_prefix {color10.strip} +set fish_pager_color_selected_background --background={color8.strip} +set fish_pager_color_selected_completion {foreground.strip} +set fish_pager_color_selected_description {color8.strip} +set fish_pager_color_selected_prefix {color10.strip} diff --git a/wallust/templates/colors_kitty.conf b/wallust/templates/colors_kitty.conf new file mode 100644 index 0000000..ac65068 --- /dev/null +++ b/wallust/templates/colors_kitty.conf @@ -0,0 +1,29 @@ +foreground {{foreground}} +background {{background}} +cursor {{cursor}} + +active_tab_foreground {{background}} +active_tab_background {{foreground}} +inactive_tab_foreground {{foreground}} +inactive_tab_background {{background}} + +active_border_color {{foreground}} +inactive_border_color {{background}} +bell_border_color {{color1}} + +color0 {{color0}} +color8 {{color8}} +color1 {{color1}} +color9 {{color9}} +color2 {{color2}} +color10 {{color10}} +color3 {{color3}} +color11 {{color11}} +color4 {{color4}} +color12 {{color12}} +color5 {{color5}} +color13 {{color13}} +color6 {{color6}} +color14 {{color14}} +color7 {{color7}} +color15 {{color15}} diff --git a/wallust/templates/colors_neowallust.vim b/wallust/templates/colors_neowallust.vim new file mode 100644 index 0000000..c5e966d --- /dev/null +++ b/wallust/templates/colors_neowallust.vim @@ -0,0 +1,19 @@ +let background = "{{background}}" +let foreground = "{{foreground}}" +let cursor = "{{cursor}}" +let color0 = "{{color0}}" +let color1 = "{{color1}}" +let color2 = "{{color2}}" +let color3 = "{{color3}}" +let color4 = "{{color4}}" +let color5 = "{{color5}}" +let color6 = "{{color6}}" +let color7 = "{{color7}}" +let color8 = "{{color8}}" +let color9 = "{{color9}}" +let color10 = "{{color10}}" +let color11 = "{{color11}}" +let color12 = "{{color12}}" +let color13 = "{{color13}}" +let color14 = "{{color14}}" +let color15 = "{{color15}}" diff --git a/wallust/templates/colors_rofi.rasi b/wallust/templates/colors_rofi.rasi new file mode 100644 index 0000000..2eb00be --- /dev/null +++ b/wallust/templates/colors_rofi.rasi @@ -0,0 +1,10 @@ +* { + bg-col: {{background}}; + bg-col-light: {{background}}; + border-col: {{background}}; + selected-col: {{background}}; + blue: {{color12}}; + fg-col: {{foreground}}; + fg-col2: {{color13}}; + grey: {{color0}}; +} diff --git a/wallust/templates/colors_sway b/wallust/templates/colors_sway new file mode 100644 index 0000000..978ff5d --- /dev/null +++ b/wallust/templates/colors_sway @@ -0,0 +1,21 @@ +set $wallpaper {{wallpaper}} + +set $background {{background}} +set $foreground {{foreground}} + +set $color0 {{color0}} +set $color1 {{color1}} +set $color2 {{color2}} +set $color3 {{color3}} +set $color4 {{color4}} +set $color5 {{color5}} +set $color6 {{color6}} +set $color7 {{color7}} +set $color8 {{color8}} +set $color9 {{color9}} +set $color10 {{color10}} +set $color11 {{color11}} +set $color12 {{color12}} +set $color13 {{color13}} +set $color14 {{color14}} +set $color15 {{color15}} diff --git a/wallust/templates/colors_waybar.css b/wallust/templates/colors_waybar.css new file mode 100644 index 0000000..24dad19 --- /dev/null +++ b/wallust/templates/colors_waybar.css @@ -0,0 +1,20 @@ +@define-color foreground {{foreground}}; +@define-color background {{background}}; +@define-color cursor {{cursor}}; + +@define-color color0 {{color0}}; +@define-color color1 {{color1}}; +@define-color color2 {{color2}}; +@define-color color3 {{color3}}; +@define-color color4 {{color4}}; +@define-color color5 {{color5}}; +@define-color color6 {{color6}}; +@define-color color7 {{color7}}; +@define-color color8 {{color8}}; +@define-color color9 {{color9}}; +@define-color color10 {{color10}}; +@define-color color11 {{color11}}; +@define-color color12 {{color12}}; +@define-color color13 {{color13}}; +@define-color color14 {{color14}}; +@define-color color15 {{color15}}; diff --git a/wallust/templates/colors_zathura b/wallust/templates/colors_zathura new file mode 100644 index 0000000..e2c4b9c --- /dev/null +++ b/wallust/templates/colors_zathura @@ -0,0 +1,34 @@ +set recolor "true" +set recolor-keephue "true" + +set completion-bg "{{background}}" +set completion-fg "{{foreground}}" +set completion-group-bg "{{background}}" +set completion-group-fg "{{color2}}" +set completion-highlight-bg "{{color2}}" +set completion-highlight-fg "{{background}}" + +set recolor-lightcolor "{{background}}" +set recolor-darkcolor "{{foreground}}" +set default-bg "{{background}}" + +set inputbar-bg "{{background}}" +set inputbar-fg "{{foreground}}" +set notification-bg "{{background}}" +set notification-fg "{{foreground}}" +set notification-error-bg "{{color1}}" +set notification-error-fg "{{foreground}}" +set notification-warning-bg "{{color1}}" +set notification-warning-fg "{{foreground}}" +set statusbar-bg "{{background}}" +set statusbar-fg "{{foreground}}" +set index-bg "{{background}}" +set index-fg "{{foreground}}" +set index-active-bg "{{foreground}}" +set index-active-fg "{{background}}" +set render-loading-bg "{{background}}" +set render-loading-fg "{{foreground}}" + +set window-title-home-tilde true +set statusbar-basename true +set selection-clipboard clipboard diff --git a/wallust/templates/dunstrc b/wallust/templates/dunstrc new file mode 100644 index 0000000..3ee6f67 --- /dev/null +++ b/wallust/templates/dunstrc @@ -0,0 +1,22 @@ +[global] +horizontal_padding = 12 +frame_width = 2 +font = FiraCodeNerdFont 11 +icon_theme = Papyrus +corner_radius = 16 + +frame_color = "{{color11}}" +separator_color= frame + +[urgency_low] +background = "{{background}}" +foreground = "{{foreground}}" + +[urgency_normal] +background = "{{background}}" +foreground = "{{foreground}}" + +[urgency_critical] +background = "{{color15}}" +foreground = "{{background}}" +frame_color = "{{color7}}" diff --git a/wallust/templates/starship.toml b/wallust/templates/starship.toml new file mode 100644 index 0000000..59d157f --- /dev/null +++ b/wallust/templates/starship.toml @@ -0,0 +1,149 @@ +format = """ +[┏](id_color)\ +[](id_color)\ +$os\ +$username\ +$hostname\ +$sudo\ +[ ](bg:id_color)\ +[](fg:id_color bg:dir_color)\ +$directory\ +[](fg:dir_color bg:git_color)\ +$git_branch\ +$git_status\ +[](fg:git_color bg:lang_color)\ +$c\ +$rust\ +$golang\ +$nodejs\ +$php\ +$java\ +$kotlin\ +$haskell\ +$python\ +$julia\ +$lua\ +[](fg:lang_color)\ +$line_break\ +[┗](id_color)$character +""" + +palette = "wallust" + +[palettes.wallust] +text_color = "{{background}}" +id_color = "{{color14}}" +dir_color = "{{color13}}" +git_color = "{{color12}}" +lang_color = "{{color11}}" +yellow = "#eed49f" +mauve = "#c6a0f6" + +[os] +disabled = false +style = "bg:id_color fg:text_color bold" + +[os.symbols] +Linux = "" +Gentoo = "" +Fedora = "" +Arch = "" +Ubuntu = "" +Debian = "" + +[username] +show_always = true +format = '[ $user](bg:id_color fg:text_color bold)' +disabled = false + +[hostname] +ssh_symbol = '' +style = "bg:id_color fg:text_color bold" +format = '[@$hostname]($style)' + +[sudo] +disabled = false +symbol = " " +style = "bg:id_color fg:text_color" +format = '[$symbol]($style)' + +[directory] +style = "bg:dir_color" +read_only = "" +format = '[ $path( $read_only) ]($style fg:text_color bold)' +truncation_length = 3 +truncation_symbol = "…/" + +[git_branch] +symbol = "" +style = "bg:git_color fg:text_color bold" +format = '[ $symbol $branch ]($style)' + +[git_status] +style = "bg:git_color fg:text_color bold" +deleted = '' +format = '[$all_status$ahead_behind ]($style)' + +[character] +disabled = false +success_symbol = '[ ](fg:id_color)[](fg:green)' +error_symbol = '[ ](fg:id_color)[](fg:red)' +vimcmd_symbol = '[ ](fg:id_color)[](fg:green)' +vimcmd_replace_one_symbol = '[ ](fg:id_color)[](fg:mauve)' +vimcmd_replace_symbol = '[ ](fg:id_color)[](fg:mauve)' +vimcmd_visual_symbol = '[ ](fg:id_color)[](fg:yellow)' + +[nodejs] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[c] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[rust] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[golang] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[php] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[java] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[kotlin] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[haskell] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[python] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[julia] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' + +[lua] +symbol = "" +style = "bg:lang_color fg:text_color bold" +format = '[ $symbol( $version) ]($style)' diff --git a/wallust/templates/starship_transient.toml b/wallust/templates/starship_transient.toml new file mode 100644 index 0000000..315b788 --- /dev/null +++ b/wallust/templates/starship_transient.toml @@ -0,0 +1,8 @@ +palette = "wallust" + +[palettes.wallust] +id_color = "{{color14}}" + +[character] +disabled = false +success_symbol = '[](fg:id_color)' diff --git a/wallust/templates/swaylock b/wallust/templates/swaylock new file mode 100644 index 0000000..e5eff15 --- /dev/null +++ b/wallust/templates/swaylock @@ -0,0 +1,29 @@ +image={{wallpaper}} +clock +indicator +indicator-radius=100 +indicator-thickness=7 +effect-blur=7x5 +effect-vignette=0.8:0.8 +ring-color={{color0}} +key-hl-color={{color12}} +bs-hl-color={{color10}} +text-color={{foreground}} +line-color=00000000 +inside-color={{background}}88 +separator-color=00000000 +layout-bg-color={{background}}88 +layout-text-color={{foreground}} +ring-clear-color={{color14}} +text-clear-color={{color14}} +inside-clear-color={{background}}88 +ring-ver-color={{color11}} +text-ver-color={{color11}} +inside-ver-color={{background}}88 +ring-wrong-color={{color10}} +text-wrong-color={{color10}} +inside-wrong-color={{background}}88 +grace=4 +fade-in=0.2 +font=FiraCodeNerdFont +font-size=30 |