forked from InioX/matugen-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request InioX#9 from Heus-Sueh/new-themes
Update hyprland-colors.conf and starship.toml
- Loading branch information
Showing
3 changed files
with
74 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
general { | ||
col.active_border = {{colors.primary_fixed.default.rgba}} | ||
col.inactive_border = {{colors.secondary_fixed_dim.default.rgba}} | ||
} | ||
|
||
misc { | ||
background_color = {{colors.surface.default.rgba}} | ||
} | ||
<* for name, value in colors *> | ||
$image = {{image}} | ||
${{name}} = rgba({{value.default.hex_stripped}}ff) | ||
<* endfor *> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,46 @@ | ||
format="""$directory$git_branch | ||
$character""" | ||
add_newline = true | ||
format = ''' | ||
$directory$git_branch$rust$python | ||
$character''' | ||
|
||
palette = 'colors' | ||
|
||
[palettes.colors] | ||
mustard = '#af8700' # example | ||
color1 = '{{colors.primary_fixed_dim.default.hex}}' | ||
color2 = '{{colors.on_primary.default.hex}}' | ||
color3 = '{{colors.on_surface_variant.default.hex}}' | ||
color4 = '{{colors.surface_container.default.hex}}' | ||
color5 = '{{colors.on_primary.default.hex}}' | ||
color6 = '{{colors.surface_dim.default.hex}}' | ||
color7 = '{{colors.surface.default.hex}}' | ||
color8 = '{{colors.primary.default.hex}}' | ||
color9 = '{{colors.tertiary.default.hex}}' | ||
|
||
# Prompt symbols | ||
# [character] | ||
# success_symbol = "({{colors.tertiary.default.hex}} bold)" | ||
# error_symbol = "(@{error})" | ||
# vicmd_symbol = "(#f9e2af)" | ||
[character] | ||
success_symbol = "[๐](color9 bold)" | ||
error_symbol = "[๐](@{error})" | ||
vicmd_symbol = "[๐](#f9e2af)" | ||
|
||
[directory] | ||
format = """ | ||
[๎ถ]($style)[$path](fg:{{colors.on_primary.default.hex}} bg:{{colors.primary.default.hex}})[๎ด ](fg:{{colors.primary.default.hex}})""" | ||
format = "[๎ถ](fg:color1 bg:color4)[๓ฐ](bg:color1 fg:color2)[๎ด ](fg:color1 bg:color4)[$path ](fg:color3 bg:color4)[๎ด ](fg:color4)" | ||
|
||
style = "fg:{{colors.primary.default.hex}}" | ||
[directory.substitutions] | ||
"Documents" = "๓ฐ " | ||
"Downloads" = "๏ " | ||
"Music" = "๏ " | ||
"Pictures" = "๏พ " | ||
|
||
[git_branch] | ||
style = "fg:{{colors.primary.default.hex}}" | ||
format = "[๎ถ](fg:color8 bg:color4)[๏ ](bg:color8 fg:color5)[๎ด](fg:color8 bg:color4)[(bg:color8 fg:color5) $branch](fg:color3 bg:color4)[๎ด](fg:color4) " | ||
|
||
[time] | ||
format = "[๎ถ](fg:color8 bg:color4)[๏บ ](bg:color8 fg:color5)[๎ด](fg:color8 bg:color4)[(bg:color8 fg:color5) $time](fg:color3 bg:color4)[๎ด](fg:color4) " | ||
disabled = false | ||
time_format = "%R" # Hour:Minute Format | ||
|
||
[python] | ||
format = "[๎ถ](fg:color8 bg:color4)[${symbol}${version}](bg:color8 fg:color5)[๎ด](fg:color8 bg:color4)[(bg:color8 fg:color5)( ${virtualenv})](fg:color3 bg:color4)[๎ด](fg:color4) " | ||
symbol = '๐' | ||
# pyenv_version_name = true | ||
pyenv_prefix = 'venv' |