This file contains hidden or 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
#!/usr/bin/env bash | |
# exit immediately | |
set -e | |
# check if filename is provided | |
if [ $# -ne 1 ]; then | |
echo "Usage: $0 <filename>" | |
exit 1 | |
fi |
This file contains hidden or 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
"$schema" = 'https://starship.rs/config-schema.json' | |
format = """ | |
[](color_bg1)\ | |
$os\ | |
$username\ | |
[](bg:color_pop_dark_gray fg:color_bg1)\ | |
$directory\ | |
[](fg:color_pop_dark_gray bg:color_pop_orange)\ | |
$git_branch\ |
This file contains hidden or 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
# Tokyo Night Color Scheme for Alacritty | |
[colors.primary] | |
background = "#1a1b26" | |
foreground = "#a9b1d6" | |
[colors.normal] | |
black = "#32344a" | |
red = "#f7768e" | |
green = "#9ece6a" |