From e74a404c5121cb2e3677bf73221f9b531b3a0c5e Mon Sep 17 00:00:00 2001 From: candifloss Date: Mon, 23 Dec 2024 15:05:49 +0530 Subject: [PATCH] Remove old Fish and Alacritty dots --- alacritty/README.md | 3 --- alacritty/alacritty.toml | 28 -------------------- alacritty/colors/candy.toml | 8 ------ fish/conf.d/fish_prompt.fish | 41 ------------------------------ fish/conf.d/fish_right_prompt.fish | 37 --------------------------- fish/config.fish | 5 ---- 6 files changed, 122 deletions(-) delete mode 100644 alacritty/README.md delete mode 100644 alacritty/alacritty.toml delete mode 100644 alacritty/colors/candy.toml delete mode 100644 fish/conf.d/fish_prompt.fish delete mode 100644 fish/conf.d/fish_right_prompt.fish delete mode 100644 fish/config.fish diff --git a/alacritty/README.md b/alacritty/README.md deleted file mode 100644 index 9e44f39..0000000 --- a/alacritty/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Alacritty terminal config - -File location: `$HOME/.config/alacritty/alacritty.toml` \ No newline at end of file diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml deleted file mode 100644 index e673ba0..0000000 --- a/alacritty/alacritty.toml +++ /dev/null @@ -1,28 +0,0 @@ -[window] -decorations_theme_variant = "Dark" -dynamic_title = true -position = { x = 0, y = 0 } -title = "Terminal" -opacity = 1 - -[font] -normal = { family = "IosevkaTermSlab Nerd Font Mono" } -size = 11 - -[selection] -save_to_clipboard = true - -[cursor] -style = { shape = "Block", blinking = "On" } -thickness = 1.0 - -[colors] -cursor = { text = "#000000", cursor = "#22785E" } -selection = { text = "#D3D7CF", background = "#262626" } - -[colors.primary] -background = "#101010" -foreground = "#BBBBBB" - -[general] -import = ["~/.config/alacritty/colors/candy.toml"] diff --git a/alacritty/colors/candy.toml b/alacritty/colors/candy.toml deleted file mode 100644 index 0272c31..0000000 --- a/alacritty/colors/candy.toml +++ /dev/null @@ -1,8 +0,0 @@ -[colors.normal] -green = "#3ba04d" -blue = "#2288d6" -red = "#d62222" -magenta = "#aa7240" -yellow = "#757575" -cyan = "#11a0af" - diff --git a/fish/conf.d/fish_prompt.fish b/fish/conf.d/fish_prompt.fish deleted file mode 100644 index 64defdf..0000000 --- a/fish/conf.d/fish_prompt.fish +++ /dev/null @@ -1,41 +0,0 @@ -function fish_prompt - # Check the last command status and set the error color - if test $status -eq 0 - set error_color "\033[38;2;0;255;180m" # rgb(0, 255, 180) for success - else - set error_color "\033[38;2;255;53;94m" # rgb(255, 53, 94) for error - end - - # Get SSH session status - if test -n "$SSH_CONNECTION" - set ssh_color "\033[38;2;255;149;0m" # rgb(255, 149, 0) for SSH - else - set ssh_color "\033[38;2;82;82;82m" # rgb(82, 82, 82) for non-SSH - end - - # Try to get the git branch, avoid error if not in a git repo - set git_color "\033[38;2;82;82;82m" # Default git color when not in a git repo - if test -d .git - set git_branch (git rev-parse --abbrev-ref HEAD) - if test -n "$git_branch" - switch $git_branch - case 'main' 'master' - set git_color "\033[38;2;178;98;44m" # rgb(178, 98, 44) for main/master - case 'dev' - set git_color "\033[38;2;54;159;150m" # rgb(54, 159, 150) for dev - case '*' - set git_color "\033[38;2;255;255;255m" # rgb(255, 255, 255) for other branches - end - end - end - - # Set the user color - if test $USER = "root" - set user_color "\033[38;2;255;53;94m" # rgb(255, 53, 94) for root - else - set user_color "\033[38;2;0;255;180m" # rgb(0, 255, 180) for non-root users - end - - # Print the custom prompt with the symbol and different colors - echo -n -e "$ssh_color❯$git_color❯$user_color❯$error_color❯\033[0m " -end diff --git a/fish/conf.d/fish_right_prompt.fish b/fish/conf.d/fish_right_prompt.fish deleted file mode 100644 index 5d156b9..0000000 --- a/fish/conf.d/fish_right_prompt.fish +++ /dev/null @@ -1,37 +0,0 @@ -function fish_right_prompt - # Check if we're in a Git repo - set git_dir (git rev-parse --show-toplevel 2>/dev/null) - if test -n "$git_dir" - # Escape - set escaped_git_dir (string replace "/" "\\/" $git_dir) - - # Get the repo name - set repo_name (basename $git_dir) - - # Relative path in git - set relative_path (string replace -r "^$escaped_git_dir/" "" (pwd)) - - # RGB color codes - set repo_color "\033[38;2;55;120;130m" # RGB for repo name (dark cyan) - set separator_color "\033[38;2;178;98;44m" # RGB for separator (bronze) - set path_color "\033[38;2;82;82;82m" # RGB for path (gray) - set reset_color "\033[0m" # Reset color - - # Ensure the relative path starts with a single slash - if not string match -r "^/" $relative_path - set relative_path "/$relative_path" - end - - # Check if we're at the Git root or inside the repo - if test "$relative_path" = "" - # At the repo root - printf "$repo_color$repo_name$reset_color" - else - # Inside the repo, print the repo name, separator, and path - printf "$repo_color$repo_name$separator_color 󰊢 $path_color$relative_path$reset_color" - end - else - # Not in a Git repo, use the default prompt_pwd function - prompt_pwd - end -end \ No newline at end of file diff --git a/fish/config.fish b/fish/config.fish deleted file mode 100644 index 4591bd1..0000000 --- a/fish/config.fish +++ /dev/null @@ -1,5 +0,0 @@ -if status is-interactive - # Commands to run in interactive sessions can go here -end - -set -U fish_greeting "" \ No newline at end of file