forked from Shinonome/dots-hyprland
97 lines
2.3 KiB
TOML
Executable File
97 lines
2.3 KiB
TOML
Executable File
# Don't print a new line at the start of the prompt
|
||
add_newline = false
|
||
# Pipes ╰─ ╭─
|
||
# Powerline symbols
|
||
# Wedges 🭧🭒 🭣🭧🭓
|
||
# Random noise 🬖🬥🬔🬗
|
||
|
||
right_format = """\
|
||
$cmd_duration
|
||
"""
|
||
|
||
format = """
|
||
$username$hostname$directory
|
||
$character
|
||
"""
|
||
|
||
# Replace the "❯" symbol in the prompt with "➜"
|
||
[character] # The name of the module we are configuring is "character"
|
||
success_symbol = "[🭧🭒](bold fg:blue)[ ➜ ](bold bg:blue fg:black)[](bold fg:blue)"
|
||
|
||
error_symbol = "[🭧🭒](bold fg:red)[ ✗ ](bold bg:red fg:black)[](bold fg:red)"
|
||
# Disable the package module, hiding it from the prompt completely
|
||
[package]
|
||
disabled = true
|
||
|
||
[git_branch]
|
||
symbol = "🌱 "
|
||
truncation_length = 4
|
||
truncation_symbol = ""
|
||
|
||
[git_commit]
|
||
commit_hash_length = 4
|
||
tag_symbol = "🔖 "
|
||
|
||
[git_state]
|
||
format = '[\($state( $progress_current of $progress_total)\)]($style) '
|
||
cherry_pick = "[🍒 PICKING](bold red)"
|
||
|
||
[git_status]
|
||
conflicted = " 🏳 "
|
||
ahead = " 🏎💨 "
|
||
behind = " 😰 "
|
||
diverged = " 😵 "
|
||
untracked = " 🤷 "
|
||
stashed = " 📦 "
|
||
modified = " 📝 "
|
||
staged = '[++\($count\)](blue)'
|
||
renamed = " ✍️ "
|
||
deleted = " 🗑 "
|
||
|
||
[hostname]
|
||
ssh_only = false
|
||
format = "[ ](bold bg:cyan fg:blue)[$hostname ](bg:cyan bold fg:black)[ ](bold fg:cyan bg:blue)"
|
||
trim_at = ".companyname.com"
|
||
disabled = false
|
||
|
||
[line_break]
|
||
disabled = false
|
||
|
||
[memory_usage]
|
||
disabled = true
|
||
threshold = -1
|
||
symbol = " "
|
||
style = "bold dimmed blue"
|
||
|
||
[time]
|
||
disabled = true
|
||
format = '🕙[\[ $time \]]($style) '
|
||
time_format = "%T"
|
||
|
||
[username]
|
||
style_user = "bold bg:blue fg:black"
|
||
style_root = "red bold"
|
||
format = "[🭃](bold fg:blue)[$user ]($style)"
|
||
disabled = false
|
||
show_always = true
|
||
|
||
[directory]
|
||
home_symbol = " "
|
||
read_only = " "
|
||
style = "bg:blue fg:black"
|
||
truncation_length = 2
|
||
truncation_symbol = "./"
|
||
format = '[$path]($style)[🭞](fg:blue)'
|
||
|
||
|
||
[directory.substitutions]
|
||
"Documents" = " "
|
||
"/" = " "
|
||
"Downloads" = " "
|
||
"Music" = " "
|
||
"Pictures" = " "
|
||
|
||
[cmd_duration]
|
||
min_time = 0
|
||
format = '[🬈🬖🬥🬅 ](bold bg:yellow fg:black)[time:$duration](bold bg:yellow fg:black)[ 🬖🬥🬔🬗](bold bg:yellow fg:black)'
|