From 76600c414586ec97ef089b282227c9803b941c59 Mon Sep 17 00:00:00 2001 From: soku Date: Fri, 6 Feb 2026 10:46:18 +0000 Subject: [PATCH] Bunch of starship tomls made a bunch of customizations for myself with starship based off of the arch-os toml by murkl --- Starship/forest_green_starship.toml | 179 +++++++++++++++++++++ Starship/hsr_clara_theme_starship.toml | 201 ++++++++++++++++++++++++ Starship/hsr_pela_theme_starship.toml | 200 +++++++++++++++++++++++ Starship/soku_red_tokyo_white.toml | 187 ++++++++++++++++++++++ Starship/soku_starship_tokyo_white.toml | 187 ++++++++++++++++++++++ 5 files changed, 954 insertions(+) create mode 100644 Starship/forest_green_starship.toml create mode 100644 Starship/hsr_clara_theme_starship.toml create mode 100644 Starship/hsr_pela_theme_starship.toml create mode 100644 Starship/soku_red_tokyo_white.toml create mode 100644 Starship/soku_starship_tokyo_white.toml diff --git a/Starship/forest_green_starship.toml b/Starship/forest_green_starship.toml new file mode 100644 index 0000000..e31540a --- /dev/null +++ b/Starship/forest_green_starship.toml @@ -0,0 +1,179 @@ +"$schema" = 'https://starship.rs/config-schema.json' + +# Icons: https://www.nerdfonts.com/cheat-sheet +# ░▒▓ ▓▒░  + +# //////////////////////////////////////////////// +# FORMAT +# //////////////////////////////////////////////// + +# Left +format = """ +[░▒▓](color_black2)\ +$os\ +$time\ +[](fg:color_black2 bg:color_green)\ +$hostname\ +$localip\ +[](fg:color_green bg:color_blue2)\ +$username\ +[](fg:color_blue2 bg:color_yellow)\ +$shell\ +$shlvl\ +$sudo\ +[](fg:color_yellow bg:color_red)\ +$git_branch\ +$git_status\ +$package\ +$docker_context\ +[](fg:color_red bg:color_white3)\ +$directory\ +[](fg:color_white3)\ +$line_break\ +$character\ +[](fg:color_fg) +""" + +# Right +right_format = """$cmd_duration""" + +# Empty line +add_newline = true + +# //////////////////////////////////////////////// +# COLORS +# //////////////////////////////////////////////// + +palette = 'arch_os' + +# Nord: https://www.nordtheme.com +[palettes.arch_os] +color_fg = '#D7D2D1' # Default was #D8dee9 +color_bg = '#1a1a1a' # Darker Black, Default was #2e3440 +color_red = '#4C5E4C' # Nandor Green, (Was #558237) Hot Pepper Green, Default was #bf616a +color_green = '#559237' # Hot Pepper Green, (Was #4C5E4C) Nandor (Green), Default was #a3be8c +color_purple = '#b48ead' +color_yellow = '#A4B83F' # Clipped Grass, (was #76836D) Gazebo Green, Default was #ebcb8b +color_orange = '#d08770' +color_white1 = '#eceff4' +color_white2 = '#e5e9f0' +color_white3 = '#A6AB9D' # Moorland Forest Light Green, default was #d8dee9 +color_black1 = '#2e3440' +color_black2 = '#061713' # This is now dark forest green (Black Glaze), default was #3b4252 +color_black3 = '#434c5e' +color_black4 = '#4c566a' +color_blue1 = '#5e81ac' +color_blue2 = '#243B32' # Palm Green (Dark), Default was #81a1c1 +color_blue3 = '#88c0d0' +color_blue4 = '#8fbcbb' + +# //////////////////////////////////////////////// +# LINE BREAK (disabled) +# //////////////////////////////////////////////// + +[line_break] +disabled = false # True = Disabled + +[character] +disabled = false # True = Disabled +success_symbol = '[ % ](bold fg:color_green)' +error_symbol = '[ 🢂 ](bold fg:color_red)' +vimcmd_symbol = '[  ](bold fg:color_green)' +vimcmd_replace_one_symbol = '[  ](bold fg:color_purple)' +vimcmd_replace_symbol = '[  ](bold fg:color_purple)' +vimcmd_visual_symbol = '[  ](bold fg:color_yellow)' + +# //////////////////////////////////////////////// +# MODULES LEFT +# //////////////////////////////////////////////// + +[os] +disabled = false +style = "fg:color_white3 bg:color_black2" +format = "[ $symbol ]($style)" + +[os.symbols] +Arch = "" +Fedora = "⛨" + +[time] +disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:color_black2" +format = '[[  $time ](fg:color_white3 bg:color_black2)]($style)' + +[hostname] +disabled = false +ssh_only = true +ssh_symbol = " 󱘖 " # 󱘖  󰣀 +style = "fg:color_bg bg:color_green" +format = '[$ssh_symbol]($style)[ 󰍹 $hostname ]($style)' + +[localip] +disabled = false +ssh_only = true +style = "fg:color_bg bg:color_green" +format = '[ 󰩟 $localipv4 ]($style)' + +[username] +disabled = false +show_always = true +style_user = "fg:color_bg bg:color_blue2" +style_root = "fg:color_red bg:color_blue2" +format = '[  ]($style)[$user ](fg:color_bg bg:color_blue2)' + +[shell] +disabled = false +fish_indicator = "" +bash_indicator = "  bash " +unknown_indicator = "  shell " +style = "fg:color_bg bg:color_yellow" +format = "[ $indicator ]($style)" + +[shlvl] +disabled = false +threshold = 2 +symbol = '' +style = "fg:color_bg bg:color_yellow" +format = "[ $symbol $shlvl ]($style)" + +[sudo] +disabled = false +symbol = '󰌆 ' +style = "fg:color_red bg:color_yellow" +format = '[ $symbol ]($style)' + +[git_branch] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol $branch ](fg:color_fg bg:color_red)]($style)' + +[git_status] +style = "bg:color_red" +format = '[[($all_status$ahead_behind )](fg:color_fg bg:color_red)]($style)' + +[package] +format = '[  $version ](fg:color_fg bg:color_red)' + +[docker_context] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol( $context) ](fg:color_fg bg:color_red)]($style)' + +[directory] +truncation_length = 4 +truncation_symbol = "••/" +home_symbol = " " +read_only = "  " +read_only_style = "fg:color_red bg:color_white3" +style = "fg:color_bg bg:color_white3" +format = "[  ]($style)[$read_only]($read_only_style)[ $path ]($style)" + + +# //////////////////////////////////////////////// +# MODULES RIGHT +# //////////////////////////////////////////////// + +[cmd_duration] +style = "fg:color_fg" +format = "[ ◄ $duration ]($style)" diff --git a/Starship/hsr_clara_theme_starship.toml b/Starship/hsr_clara_theme_starship.toml new file mode 100644 index 0000000..18caf70 --- /dev/null +++ b/Starship/hsr_clara_theme_starship.toml @@ -0,0 +1,201 @@ +"$schema" = 'https://starship.rs/config-schema.json' + +# Icons: https://www.nerdfonts.com/cheat-sheet +# ░▒▓ ▓▒░  + +# //////////////////////////////////////////////// +# FORMAT +# //////////////////////////////////////////////// + +# Left +format = """ +[░▒▓](color_black2)\ +$os\ +$time\ +[](fg:color_black2 bg:color_green)\ +$hostname\ +$localip\ +[](fg:color_green bg:color_blue2)\ +$username\ +[](fg:color_blue2 bg:color_yellow)\ +$shell\ +$shlvl\ +$sudo\ +[](fg:color_yellow bg:color_red)\ +$git_branch\ +$git_status\ +$package\ +$docker_context\ +[](fg:color_red bg:color_white3)\ +$directory\ +[](fg:color_white3)\ +$line_break\ +$character\ +[](fg:color_fg) +""" + +# Right +right_format = """$cmd_duration""" + +# Empty line +add_newline = true + +# //////////////////////////////////////////////// +# COLORS +# //////////////////////////////////////////////// + +palette = 'arch_os' +# Pallete is redesigned for Pela from Honkai: Star Rail + +# Nord: https://www.nordtheme.com +[palettes.arch_os] +color_fg = '#faeefd' # Silver (Svarog), Default was #D8dee9 +color_bg = '#2e3155' # Dark Slate Blue (Svarog), Default was #2e3440 +color_red = '#f8ebe7' # Skintone Face (Arrow After Shell), Default was #bf616a +color_green = '#682135' # Maroon Red Scarf (Connection space before User), Default was #a3be8c +color_purple = '#b48ead' +color_yellow = '#920d2f' # Dark Red Coat (Shell Space), Default was #ebcb8b +color_orange = '#d08770' +color_white1 = '#eceff4' +color_white2 = '#e5e9f0' +color_white3 = '#f6f5f8' # White Hair (Outer Edge), default was #d8dee9 +color_black1 = '#2e3440' +color_black2 = '#f8ebe7' # Skintone Legs (Time and Icons Space), default was #3b4252 +color_black3 = '#434c5e' +color_black4 = '#4c566a' +color_blue1 = '#5e81ac' +color_blue2 = '#9f0707' # Red Coat (User Space), Default was #81a1c1 +color_blue3 = '#88c0d0' +color_blue4 = '#8fbcbb' + +# #682135 Maroon Red (Hostname IP: Scarf) +# #f8ebe7 Skintone (TIME: legs) +# #9f0707 Red (User: Coat) +# #920d2f Dark Red (Shell: Dark Coat) +# #f8ebe7 Skintone (After Shell: Skintone Face) +# #5a4348 Brown (Hosery, Beautiful Legs!!) +# #f6f5f8 White Hair (Directory: Hair) +# #2e3155 Dark Slate Blue (bg) (Directory Letters: Svarog Body) +# #faeefd Silver (Svarog Steel) (fg) + +# Will need to alter fg and bg usage to make sure everything is readable, good contrast +# Alter: Time text, Symbols text, Username Text, shell text, directory text +# Time: was #color_black2 (hosery), format was fg: color_white3 (hat), bg:color_black2 (hosery) +# Symbols (OS): was fg:color_white3 (hat) bg:color_black2 (hosery) +# Username Text: was fg:color_bg (Hat) bg:color_blue2 (Dark Blue) +# Shell: was "fg:color_bg (hat) bg:color_yellow (hair)" +# Directory: read_only_style = "fg:color_red (gold) bg:color_white3 (hat)" style = "fg:color_bg(hat) bg:color_white3 (hat)" + + + + +# //////////////////////////////////////////////// +# LINE BREAK (disabled) +# //////////////////////////////////////////////// + +[line_break] +disabled = false # True = Disabled + +[character] +disabled = false # True = Disabled +success_symbol = '[ % ](bold fg:color_green)' +error_symbol = '[ 🢂 ](bold fg:color_red)' +vimcmd_symbol = '[  ](bold fg:color_green)' +vimcmd_replace_one_symbol = '[  ](bold fg:color_purple)' +vimcmd_replace_symbol = '[  ](bold fg:color_purple)' +vimcmd_visual_symbol = '[  ](bold fg:color_yellow)' + +# //////////////////////////////////////////////// +# MODULES LEFT +# //////////////////////////////////////////////// + +[os] +disabled = false +style = "fg:color_bg bg:color_black2" +format = "[ $symbol ]($style)" + +[os.symbols] +Arch = "" +Fedora = "⛨" + +[time] +disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:color_black2" +format = '[[  $time ](fg:color_bg bg:color_black2)]($style)' + +[hostname] +disabled = false +ssh_only = true +ssh_symbol = " 󱘖 " # 󱘖  󰣀 +style = "fg:color_bg bg:color_green" +format = '[$ssh_symbol]($style)[ 󰍹 $hostname ]($style)' + +[localip] +disabled = false +ssh_only = true +style = "fg:color_bg bg:color_green" +format = '[ 󰩟 $localipv4 ]($style)' + +[username] +disabled = false +show_always = true +style_user = "fg:color_fg bg:color_blue2" +style_root = "fg:color_red bg:color_blue2" +format = '[  ]($style)[$user ](fg:color_fg bg:color_blue2)' + +[shell] +disabled = false +fish_indicator = "" +bash_indicator = "  bash " +unknown_indicator = "  shell " +style = "fg:color_fg bg:color_yellow" +format = "[ $indicator ]($style)" + +[shlvl] +disabled = false +threshold = 2 +symbol = '' +style = "fg:color_bg bg:color_yellow" +format = "[ $symbol $shlvl ]($style)" + +[sudo] +disabled = false +symbol = '󰌆 ' +style = "fg:color_red bg:color_yellow" +format = '[ $symbol ]($style)' + +[git_branch] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol $branch ](fg:color_fg bg:color_red)]($style)' + +[git_status] +style = "bg:color_red" +format = '[[($all_status$ahead_behind )](fg:color_fg bg:color_red)]($style)' + +[package] +format = '[  $version ](fg:color_fg bg:color_red)' + +[docker_context] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol( $context) ](fg:color_fg bg:color_red)]($style)' + +[directory] +truncation_length = 4 +truncation_symbol = "••/" +home_symbol = " " +read_only = "  " +read_only_style = "fg:color_red bg:color_white3" +style = "fg:color_bg bg:color_white3" +format = "[  ]($style)[$read_only]($read_only_style)[ $path ]($style)" + + +# //////////////////////////////////////////////// +# MODULES RIGHT +# //////////////////////////////////////////////// + +[cmd_duration] +style = "fg:color_fg" +format = "[ ◄ $duration ]($style)" diff --git a/Starship/hsr_pela_theme_starship.toml b/Starship/hsr_pela_theme_starship.toml new file mode 100644 index 0000000..86620de --- /dev/null +++ b/Starship/hsr_pela_theme_starship.toml @@ -0,0 +1,200 @@ +"$schema" = 'https://starship.rs/config-schema.json' + +# Icons: https://www.nerdfonts.com/cheat-sheet +# ░▒▓ ▓▒░  + +# //////////////////////////////////////////////// +# FORMAT +# //////////////////////////////////////////////// + +# Left +format = """ +[░▒▓](color_black2)\ +$os\ +$time\ +[](fg:color_black2 bg:color_green)\ +$hostname\ +$localip\ +[](fg:color_green bg:color_blue2)\ +$username\ +[](fg:color_blue2 bg:color_yellow)\ +$shell\ +$shlvl\ +$sudo\ +[](fg:color_yellow bg:color_red)\ +$git_branch\ +$git_status\ +$package\ +$docker_context\ +[](fg:color_red bg:color_white3)\ +$directory\ +[](fg:color_white3)\ +$line_break\ +$character\ +[](fg:color_fg) +""" + +# Right +right_format = """$cmd_duration""" + +# Empty line +add_newline = true + +# //////////////////////////////////////////////// +# COLORS +# //////////////////////////////////////////////// + +palette = 'arch_os' +# Pallete is redesigned for Pela from Honkai: Star Rail + +# Nord: https://www.nordtheme.com +[palettes.arch_os] +color_fg = '#fefdff' # White, Default was #D8dee9 +color_bg = '#302d2e' # Black, Default was #2e3440 +color_red = '#f5e5ca' # Gold Accent (Arrow After Shell), Default was #bf616a +color_green = '#49a5f4' # Middle Blue (Connection space before User), Default was #a3be8c +color_purple = '#b48ead' +color_yellow = '#4f4582' # Hair (Shell Space), Default was #ebcb8b +color_orange = '#d08770' +color_white1 = '#eceff4' +color_white2 = '#e5e9f0' +color_white3 = '#302d3e' # Hat (Outer Edge), default was #d8dee9 +color_black1 = '#2e3440' +color_black2 = '#5a4348' # Hosery (Time and Icons Space), default was #3b4252 +color_black3 = '#434c5e' +color_black4 = '#4c566a' +color_blue1 = '#5e81ac' +color_blue2 = '#344D97' # Dark Blue (User Space), Default was #81a1c1 +color_blue3 = '#88c0d0' +color_blue4 = '#8fbcbb' + +# #49a5f4 Middle Blue (Common Blue) +# ------- #7af4f9 Light Blue (Accent Light) Don't Use +# #344d97 Dark Blue (Accent) +# #4f4582 Purple (Hair) +# #fefdff White (Suit Main) +# #f5e5ca Gold (Accent on Suit) +# #5a4348 Brown (Hosery, Beautiful Legs!!) +# #302d3e Black (Gloves and Hat) + +# Will need to alter fg and bg usage to make sure everything is readable, good contrast +# Alter: Time text, Symbols text, Username Text, shell text, directory text +# Time: was #color_black2 (hosery), format was fg: color_white3 (hat), bg:color_black2 (hosery) +# Symbols (OS): was fg:color_white3 (hat) bg:color_black2 (hosery) +# Username Text: was fg:color_bg (Hat) bg:color_blue2 (Dark Blue) +# Shell: was "fg:color_bg (hat) bg:color_yellow (hair)" +# Directory: read_only_style = "fg:color_red (gold) bg:color_white3 (hat)" style = "fg:color_bg(hat) bg:color_white3 (hat)" + + + + +# //////////////////////////////////////////////// +# LINE BREAK (disabled) +# //////////////////////////////////////////////// + +[line_break] +disabled = false # True = Disabled + +[character] +disabled = false # True = Disabled +success_symbol = '[ % ](bold fg:color_green)' +error_symbol = '[ 🢂 ](bold fg:color_red)' +vimcmd_symbol = '[  ](bold fg:color_green)' +vimcmd_replace_one_symbol = '[  ](bold fg:color_purple)' +vimcmd_replace_symbol = '[  ](bold fg:color_purple)' +vimcmd_visual_symbol = '[  ](bold fg:color_yellow)' + +# //////////////////////////////////////////////// +# MODULES LEFT +# //////////////////////////////////////////////// + +[os] +disabled = false +style = "fg:color_fg bg:color_black2" +format = "[ $symbol ]($style)" + +[os.symbols] +Arch = "" +Fedora = "⛨" + +[time] +disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:color_black2" +format = '[[  $time ](fg:color_fg bg:color_black2)]($style)' + +[hostname] +disabled = false +ssh_only = true +ssh_symbol = " 󱘖 " # 󱘖  󰣀 +style = "fg:color_bg bg:color_green" +format = '[$ssh_symbol]($style)[ 󰍹 $hostname ]($style)' + +[localip] +disabled = false +ssh_only = true +style = "fg:color_bg bg:color_green" +format = '[ 󰩟 $localipv4 ]($style)' + +[username] +disabled = false +show_always = true +style_user = "fg:color_fg bg:color_blue2" +style_root = "fg:color_red bg:color_blue2" +format = '[  ]($style)[$user ](fg:color_fg bg:color_blue2)' + +[shell] +disabled = false +fish_indicator = "" +bash_indicator = "  bash " +unknown_indicator = "  shell " +style = "fg:color_fg bg:color_yellow" +format = "[ $indicator ]($style)" + +[shlvl] +disabled = false +threshold = 2 +symbol = '' +style = "fg:color_bg bg:color_yellow" +format = "[ $symbol $shlvl ]($style)" + +[sudo] +disabled = false +symbol = '󰌆 ' +style = "fg:color_red bg:color_yellow" +format = '[ $symbol ]($style)' + +[git_branch] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol $branch ](fg:color_fg bg:color_red)]($style)' + +[git_status] +style = "bg:color_red" +format = '[[($all_status$ahead_behind )](fg:color_fg bg:color_red)]($style)' + +[package] +format = '[  $version ](fg:color_fg bg:color_red)' + +[docker_context] +symbol = "" +style = "bg:color_red" +format = '[[ $symbol( $context) ](fg:color_fg bg:color_red)]($style)' + +[directory] +truncation_length = 4 +truncation_symbol = "••/" +home_symbol = " " +read_only = "  " +read_only_style = "fg:color_red bg:color_white3" +style = "fg:color_fg bg:color_white3" +format = "[  ]($style)[$read_only]($read_only_style)[ $path ]($style)" + + +# //////////////////////////////////////////////// +# MODULES RIGHT +# //////////////////////////////////////////////// + +[cmd_duration] +style = "fg:color_fg" +format = "[ ◄ $duration ]($style)" diff --git a/Starship/soku_red_tokyo_white.toml b/Starship/soku_red_tokyo_white.toml new file mode 100644 index 0000000..2fa41f4 --- /dev/null +++ b/Starship/soku_red_tokyo_white.toml @@ -0,0 +1,187 @@ +"$schema" = 'https://starship.rs/config-schema.json' + +# Icons: https://www.nerdfonts.com/cheat-sheet +# ░▒▓ ▓▒░  + +# //////////////////////////////////////////////// +# FORMAT +# //////////////////////////////////////////////// + +# Left +format = """ +[░▒▓](color_blkprl)\ +$os\ +$time\ +[](fg:color_blkprl bg:color_bbyseal)\ +$hostname\ +$localip\ +[](fg:color_bbyseal bg:color_crtblue)\ +$username\ +[](fg:color_crtblue bg:color_urbanite)\ +$shell\ +$shlvl\ +$sudo\ +[](fg:color_urbanite bg:color_gred)\ +$git_branch\ +$git_status\ +$package\ +$docker_context\ +[](fg:color_gred bg:color_coolelg)\ +$directory\ +[](fg:color_coolelg)\ +$line_break\ +$character\ +[](fg:color_fg) +""" + +# Right +right_format = """$cmd_duration""" + +# Empty line +add_newline = true + +# //////////////////////////////////////////////// +# COLORS +# //////////////////////////////////////////////// + +palette = 'arch_os' + +# Nord: https://www.nordtheme.com +[palettes.arch_os] +color_fg = '#d8dee9' +color_bg = '#2e3440' +color_red = '#bf616a' +color_green = '#a3be8c' +color_purple = '#b48ead' +color_yellow = '#ebcb8b' +color_orange = '#d08770' +color_white1 = '#eceff4' +color_white2 = '#e5e9f0' +color_white3 = '#d8dee9' +color_black1 = '#2e3440' +color_black2 = '#3b4252' +color_black3 = '#434c5e' +color_black4 = '#4c566a' +color_blue1 = '#5e81ac' +color_blue2 = '#81a1c1' +color_blue3 = '#88c0d0' +color_blue4 = '#8fbcbb' +# Tokyo Night White + Red +color_blkprl = '#4C5558' # Charcoal (#1A1A1A), Black Pearl (Originally #1A282A) +color_gred = '#AD5660' # Grenadine Red +color_coolelg = '#CECED1' # Cool Elegence Light Gray +color_bbyseal = '#A1A5A7' # Baby Seal, Mid Slate Gray +color_crtblue = '#737F83' # Courtyard Blue, Mid Blue Gray +color_urbanite = '#4C5558' # Urbanite, Dark Mid Slate Gray + + +# //////////////////////////////////////////////// +# LINE BREAK (disabled) +# //////////////////////////////////////////////// + +[line_break] +disabled = false # True = Disabled + +[character] +disabled = false # True = Disabled +success_symbol = '[ % ](bold fg:color_green)' +error_symbol = '[ 🢂 ](bold fg:color_red)' +vimcmd_symbol = '[  ](bold fg:color_green)' +vimcmd_replace_one_symbol = '[  ](bold fg:color_purple)' +vimcmd_replace_symbol = '[  ](bold fg:color_purple)' +vimcmd_visual_symbol = '[  ](bold fg:color_yellow)' + +# //////////////////////////////////////////////// +# MODULES LEFT +# //////////////////////////////////////////////// + +[os] +disabled = false +style = "fg:color_coolelg bg:color_blkprl" +format = "[ $symbol ]($style)" + +[os.symbols] +Arch = "" +Fedora = "⛨" + +[time] +disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:color_blkprl" +format = '[[  $time ](fg:color_coolelg bg:color_blkprl)]($style)' + +[hostname] +disabled = false +ssh_only = true +ssh_symbol = " 󱘖 " # 󱘖  󰣀 +style = "fg:color_blkprl bg:color_bbyseal" +format = '[$ssh_symbol]($style)[ 󰍹 $hostname ]($style)' + +[localip] +disabled = false +ssh_only = true +style = "fg:color_blkprl bg:color_bbyseal" +format = '[ 󰩟 $localipv4 ]($style)' + +[username] +disabled = false +show_always = true +style_user = "fg:color_coolelg bg:color_crtblue" +style_root = "fg:color_gred bg:color_crtblue" +format = '[  ]($style)[$user ](fg:color_coolelg bg:color_crtblue)' + +[shell] +disabled = false +fish_indicator = "" +bash_indicator = "  bash " +unknown_indicator = "  shell " +style = "fg:color_coolelg bg:color_urbanite" +format = "[ $indicator ]($style)" + +[shlvl] +disabled = false +threshold = 2 +symbol = '' +style = "fg:color_bbyseal bg:color_urbanite" +format = "[ $symbol $shlvl ]($style)" + +[sudo] +disabled = false +symbol = '󰌆 ' +style = "fg:color_gred bg:color_urbanite" +format = '[ $symbol ]($style)' + +[git_branch] +symbol = "" +style = "bg:color_gred" +format = '[[ $symbol $branch ](fg:color_fg bg:color_gred)]($style)' + +[git_status] +style = "bg:color_gred" +format = '[[($all_status$ahead_behind )](fg:color_fg bg:color_gred)]($style)' + +[package] +format = '[  $version ](fg:color_blkprl bg:color_gred)' + +[docker_context] +symbol = "" +style = "bg:color_gred" +format = '[[ $symbol( $context) ](fg:color_blkprl bg:color_gred)]($style)' + +[directory] +truncation_length = 4 +truncation_symbol = "••/" +home_symbol = " " +read_only = "  " +read_only_style = "fg:color_gred bg:color_coolelg" +style = "fg:color_blkprl bg:color_coolelg" +format = "[  ]($style)[$read_only]($read_only_style)[ $path ]($style)" + + +# //////////////////////////////////////////////// +# MODULES RIGHT +# //////////////////////////////////////////////// + +[cmd_duration] +style = "fg:color_coolelg" +format = "[ ◄ $duration ]($style)" diff --git a/Starship/soku_starship_tokyo_white.toml b/Starship/soku_starship_tokyo_white.toml new file mode 100644 index 0000000..7fd13ba --- /dev/null +++ b/Starship/soku_starship_tokyo_white.toml @@ -0,0 +1,187 @@ +"$schema" = 'https://starship.rs/config-schema.json' + +# Icons: https://www.nerdfonts.com/cheat-sheet +# ░▒▓ ▓▒░  + +# //////////////////////////////////////////////// +# FORMAT +# //////////////////////////////////////////////// + +# Left +format = """ +[░▒▓](color_blkprl)\ +$os\ +$time\ +[](fg:color_blkprl bg:color_bbyseal)\ +$hostname\ +$localip\ +[](fg:color_bbyseal bg:color_crtblue)\ +$username\ +[](fg:color_crtblue bg:color_urbanite)\ +$shell\ +$shlvl\ +$sudo\ +[](fg:color_urbanite bg:color_gred)\ +$git_branch\ +$git_status\ +$package\ +$docker_context\ +[](fg:color_gred bg:color_coolelg)\ +$directory\ +[](fg:color_coolelg)\ +$line_break\ +$character\ +[](fg:color_fg) +""" + +# Right +right_format = """$cmd_duration""" + +# Empty line +add_newline = true + +# //////////////////////////////////////////////// +# COLORS +# //////////////////////////////////////////////// + +palette = 'arch_os' + +# Nord: https://www.nordtheme.com +[palettes.arch_os] +color_fg = '#d8dee9' +color_bg = '#2e3440' +color_red = '#bf616a' +color_green = '#a3be8c' +color_purple = '#b48ead' +color_yellow = '#ebcb8b' +color_orange = '#d08770' +color_white1 = '#eceff4' +color_white2 = '#e5e9f0' +color_white3 = '#d8dee9' +color_black1 = '#2e3440' +color_black2 = '#3b4252' +color_black3 = '#434c5e' +color_black4 = '#4c566a' +color_blue1 = '#5e81ac' +color_blue2 = '#81a1c1' +color_blue3 = '#88c0d0' +color_blue4 = '#8fbcbb' +# Tokyo Night White + Red +color_blkprl = '#1A282A' # Black Pearl +color_gred = '#AD5660' # Grenadine Red +color_coolelg = '#CECED1' # Cool Elegence Light Gray +color_bbyseal = '#A1A5A7' # Baby Seal, Mid Slate Gray +color_crtblue = '#737F83' # Courtyard Blue, Mid Blue Gray +color_urbanite = '#4C5558' # Urbanite, Dark Mid Slate Gray + + +# //////////////////////////////////////////////// +# LINE BREAK (disabled) +# //////////////////////////////////////////////// + +[line_break] +disabled = false # True = Disabled + +[character] +disabled = false # True = Disabled +success_symbol = '[ % ](bold fg:color_green)' +error_symbol = '[ 🢂 ](bold fg:color_red)' +vimcmd_symbol = '[  ](bold fg:color_green)' +vimcmd_replace_one_symbol = '[  ](bold fg:color_purple)' +vimcmd_replace_symbol = '[  ](bold fg:color_purple)' +vimcmd_visual_symbol = '[  ](bold fg:color_yellow)' + +# //////////////////////////////////////////////// +# MODULES LEFT +# //////////////////////////////////////////////// + +[os] +disabled = false +style = "fg:color_coolelg bg:color_blkprl" +format = "[ $symbol ]($style)" + +[os.symbols] +Arch = "" +Fedora = "⛨" + +[time] +disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:color_blkprl" +format = '[[  $time ](fg:color_coolelg bg:color_blkprl)]($style)' + +[hostname] +disabled = false +ssh_only = true +ssh_symbol = " 󱘖 " # 󱘖  󰣀 +style = "fg:color_blkprl bg:color_bbyseal" +format = '[$ssh_symbol]($style)[ 󰍹 $hostname ]($style)' + +[localip] +disabled = false +ssh_only = true +style = "fg:color_blkprl bg:color_bbyseal" +format = '[ 󰩟 $localipv4 ]($style)' + +[username] +disabled = false +show_always = true +style_user = "fg:color_coolelg bg:color_crtblue" +style_root = "fg:color_gred bg:color_crtblue" +format = '[  ]($style)[$user ](fg:color_coolelg bg:color_crtblue)' + +[shell] +disabled = false +fish_indicator = "" +bash_indicator = "  bash " +unknown_indicator = "  shell " +style = "fg:color_coolelg bg:color_urbanite" +format = "[ $indicator ]($style)" + +[shlvl] +disabled = false +threshold = 2 +symbol = '' +style = "fg:color_bbyseal bg:color_urbanite" +format = "[ $symbol $shlvl ]($style)" + +[sudo] +disabled = false +symbol = '󰌆 ' +style = "fg:color_gred bg:color_urbanite" +format = '[ $symbol ]($style)' + +[git_branch] +symbol = "" +style = "bg:color_gred" +format = '[[ $symbol $branch ](fg:color_fg bg:color_gred)]($style)' + +[git_status] +style = "bg:color_gred" +format = '[[($all_status$ahead_behind )](fg:color_fg bg:color_gred)]($style)' + +[package] +format = '[  $version ](fg:color_blkprl bg:color_gred)' + +[docker_context] +symbol = "" +style = "bg:color_gred" +format = '[[ $symbol( $context) ](fg:color_blkprl bg:color_gred)]($style)' + +[directory] +truncation_length = 4 +truncation_symbol = "••/" +home_symbol = " " +read_only = "  " +read_only_style = "fg:color_gred bg:color_coolelg" +style = "fg:color_blkprl bg:color_coolelg" +format = "[  ]($style)[$read_only]($read_only_style)[ $path ]($style)" + + +# //////////////////////////////////////////////// +# MODULES RIGHT +# //////////////////////////////////////////////// + +[cmd_duration] +style = "fg:color_coolelg" +format = "[ ◄ $duration ]($style)"