Skip to content

Instantly share code, notes, and snippets.

@DET171
Last active September 5, 2022 08:21
Show Gist options
  • Save DET171/888c11754a1270133b11356c1afc866d to your computer and use it in GitHub Desktop.
Save DET171/888c11754a1270133b11356c1afc866d to your computer and use it in GitHub Desktop.
My Starship configuration
# Disclaimer: I will not be responsible if you get eye cancer from this
format = """
[╭──[](#9A348E)[$username](bg:#9A348E)\
[](bg:#DA627D fg:#9A348E)[㉿](bold bg:#DA627D fg:#ffffff)\
[](fg:#DA627D bg:#FCA17D)[$hostname](bold fg:#ffffff bg:#FCA17D)\
[](fg:#FCA17D bg:#0059ff)[@](bold fg:#ffffff bg:#0059ff)\
[](fg:#0059ff bg:#ff8ff8)[$localip](bold fg:#ffffff bg:#ff8ff8)\
[](fg:#ff8ff8 bg:#10c902)[$battery](bold fg:#ffffff bg:#10c902)\
[](fg:#10c902 bg:#ff8800)[$cmd_duration](bold fg:#ffffff bg:#ff8800)\
[](fg:#ff8800 bg:#ff6173)[$git_branch$git_status](bold fg:#ffffff bg:#ff6173)\
[](fg:#ff6173)\
$fill\
[ ](bg:#363535)\
[ ](bg:#575757)\
[ ](bg:#7a7a7a)\
[ $time](bg:#9e9e9e)\
](white)
[├──\
[](bold #00c8cf)[$directory ](bold fg:#ffffff bg:#00c8cf)\
[](bg:#ff6200 fg:#00c8cf)[ $rust$nodejs$python$go](bg:#ff6200 bold fg:#ffffff)[](#ff6200)\
$fill\
[ ](bg:#363535)\
[ ](bg:#575757)\
[ ](bg:#7a7a7a)\
[ $memory_usage](bg:#9e9e9e)\
](white)
[╰──](white)[$character](fg:#22ff00)
"""
add_newline = true
[nodejs]
style = 'bg:#ff6200'
[python]
style = 'bg:#ff6200'
[rust]
style = 'bg:#ff6200'
[golang]
style = 'bg:#ff6200'
[line_break]
disabled = true
[fill]
symbol = '-'
style = 'fg:white'
[memory_usage]
disabled = false
threshold = 0
format = "$symbol ${ram} \\($ram_pct\\)( | ${swap} \\($swap_pct\\))"
[character]
success_symbol = "[\\$](bold lightgreen)"
error_symbol = "[\\$](bold red)"
vicmd_symbol = "[\\$](bold green)"
[hostname]
format = "$hostname"
ssh_only = false
[username]
format = "$user"
disabled = false
show_always = true
[git_commit]
disabled = true
[cmake]
disabled = true
[directory]
format = "$path$read_only$read_only_style"
truncation_length = 10
[git_branch]
format = ' $symbol$branch'
[git_status]
format = '$all_status$ahead_behind '
[localip]
ssh_only = false
format = "$localipv4"
disabled = false
[sudo]
disabled = false
format = '$symbol'
[time]
disabled = false
style = ''
format = '$time'
use_12hr = true
[cmd_duration]
min_time = 0
format = 'took $duration'
[battery]
charging_symbol = "⚡️ "
format = '$symbol$percentage'
discharging_symbol = "💀 "
[[battery.display]]
threshold = 100
style = '#ffa526'
@DET171
Copy link
Author

DET171 commented May 2, 2022

inspired by kali's prompt

@DET171
Copy link
Author

DET171 commented Sep 5, 2022

no longer similar to kali's prompt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment