diff options
| author | 2024-12-27 21:12:04 +0100 | |
|---|---|---|
| committer | 2024-12-27 21:12:04 +0100 | |
| commit | 2a7f5980c1d0a7aee2ca306cec7383614cac070e (patch) | |
| tree | 53a3a51451af3201a19f113601aeabbba56e1dc1 | |
| parent | alacritty: switch to TOML configuration format (#7) (diff) | |
ghostty: add generator
| -rwxr-xr-x | colors/ghostty.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/colors/ghostty.sh b/colors/ghostty.sh new file mode 100755 index 0000000..8e08f0a --- /dev/null +++ b/colors/ghostty.sh @@ -0,0 +1,29 @@ +#!/bin/sh +. ./colors.sh + +cat <<HEREDOC +# $theme +background = $background +foreground = $foreground + +# cursor-color +# selection-background +# selection-foreground + +palette = 0=$black +palette = 1=$red +palette = 2=$green +palette = 3=$yellow +palette = 4=$blue +palette = 5=$magenta +palette = 6=$cyan +palette = 7=$white +palette = 8=$brblack +palette = 9=$brred +palette = 10=$brgreen +palette = 11=$bryellow +palette = 12=$brblue +palette = 13=$brmagenta +palette = 14=$brcyan +palette = 15=$brwhite +HEREDOC |
