aboutsummaryrefslogtreecommitdiffstats
path: root/config/hypr/scripts/Ghostty_themes.sh
blob: f39be65a70014fa1ecb7519779ee823ea8e56bcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/usr/bin/env bash
# ==================================================
#  KoolDots (2026)
#  Project URL: https://github.com/LinuxBeginnings
#  License: GNU GPLv3
#  SPDX-License-Identifier: GPL-3.0-or-later
# ==================================================
# Ghostty theme selector

user_ghostty_config="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/UserConfigs/ghostty.conf"
fallback_ghostty_config="${XDG_CONFIG_HOME:-$HOME/.config}/ghostty/config"
config_file="$user_ghostty_config"
iDIR="${XDG_CONFIG_HOME:-$HOME/.config}/swaync/images"
rofi_theme_primary="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/config-ghostty-theme.rasi"
rofi_theme_fallback="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/config-edit.rasi"
wallust_include_path="${XDG_CONFIG_HOME:-$HOME/.config}/ghostty/wallust.conf"
wallust_option_label="Set by wallpaper"
default_option_label="Default - no color"
wallust_refresh_script="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/scripts/WallustSwww.sh"

notify_user() {
  local icon="$1"
  local title="$2"
  local body="$3"
  if [[ -n "$icon" && -f "$icon" ]]; then
    notify-send -u low -i "$icon" "$title" "$body"
  else
    notify-send -u low "$title" "$body"
  fi
}

refresh_wallpaper_theme() {
  if [[ -x "$wallust_refresh_script" ]]; then
    "$wallust_refresh_script" >/dev/null 2>&1 || true
  fi
  pkill -SIGUSR2 ghostty >/dev/null 2>&1 || true
}
ensure_managed_ghostty_config() {
  if [[ -f "$user_ghostty_config" && -r "$user_ghostty_config" ]]; then
    config_file="$user_ghostty_config"
    return 0
  fi

  if [[ -r "$fallback_ghostty_config" ]]; then
    mkdir -p "$(dirname "$user_ghostty_config")" 2>/dev/null || true
    cp -f "$fallback_ghostty_config" "$user_ghostty_config" 2>/dev/null || true
    if [[ -f "$user_ghostty_config" && -r "$user_ghostty_config" ]]; then
      config_file="$user_ghostty_config"
      return 0
    fi
  fi

  config_file="$fallback_ghostty_config"
}
sync_runtime_ghostty_config() {
  if [[ "$config_file" != "$fallback_ghostty_config" && -r "$config_file" ]]; then
    mkdir -p "$(dirname "$fallback_ghostty_config")" 2>/dev/null || true
    cp -f "$config_file" "$fallback_ghostty_config" 2>/dev/null || true
  fi
}

ensure_managed_ghostty_config
if [[ ! -f "$config_file" || ! -r "$config_file" ]]; then
  notify_user "$iDIR/error.png" "Ghostty Theme" "Config not found: $config_file"
  exit 1
fi
sync_runtime_ghostty_config

rofi_config_args=()
if [[ -f "$rofi_theme_primary" ]]; then
  rofi_config_args=(-config "$rofi_theme_primary")
elif [[ -f "$rofi_theme_fallback" ]]; then
  rofi_config_args=(-config "$rofi_theme_fallback")
fi

current_theme=$(
  awk -F'=' '/^[[:space:]]*theme[[:space:]]*=/ {
    val=$2
    sub(/^[[:space:]]+/, "", val)
    sub(/[[:space:]]+$/, "", val)
    gsub(/^"|"$/, "", val)
    print val
    exit
  }' "$config_file"
)

wallust_enabled=$(
  awk '/^[[:space:]]*config-file[[:space:]]*=/ && $0 !~ /^[[:space:]]*#/ && /wallust\.conf/ {print "1"; exit}' "$config_file"
)
[[ "$wallust_enabled" != "1" ]] && wallust_enabled="0"

mapfile -t available_theme_names < <(
  awk -F'=' '/^[[:space:]]*#[[:space:]]*theme[[:space:]]*=/ {
    val=$2
    sub(/^[[:space:]]+/, "", val)
    sub(/[[:space:]]+$/, "", val)
    gsub(/^"|"$/, "", val)
    print val
  }' "$config_file"
)

if [[ ${#available_theme_names[@]} -eq 0 ]]; then
  notify_user "$iDIR/error.png" "Ghostty Theme" "No commented themes found in $config_file"
  exit 1
fi
menu_entries=("$wallust_option_label" "$default_option_label")
for t in "${available_theme_names[@]}"; do
  menu_entries+=("$t")
done
current_selection_index=0
if [[ "$wallust_enabled" == "1" ]]; then
  current_selection_index=0
elif [[ -z "$current_theme" ]]; then
  current_selection_index=1
else
  current_selection_index=1
  for i in "${!available_theme_names[@]}"; do
    if [[ "${available_theme_names[$i]}" == "$current_theme" ]]; then
      current_selection_index=$((i + 2))
      break
    fi
  done
fi

"${XDG_CONFIG_HOME:-$HOME/.config}/hypr/scripts/RofiFocusedWallpaperLink.sh" >/dev/null 2>&1 || true
choice=$(
  printf "%s\n" "${menu_entries[@]}" |
    rofi -i -dmenu -p "Ghostty Theme" "${rofi_config_args[@]}" -mesg "Select a theme to apply" -selected-row "$current_selection_index"
)

[[ -z "$choice" ]] && exit 0


selected_theme="$choice"

if [[ "$selected_theme" == "$wallust_option_label" ]]; then
  if [[ "$wallust_enabled" == "1" ]]; then
    exit 0
  fi

  tmp_file=$(mktemp)
  awk -v wallust_include_path="$wallust_include_path" '
function trim(s) { sub(/^[[:space:]]+/, "", s); sub(/[[:space:]]+$/, "", s); return s }
{
  line=$0
  if ($0 ~ /^[[:space:]]*theme[[:space:]]*=/) {
    sub(/^[[:space:]]*theme[[:space:]]*=/, "#theme =", line)
    print line
    next
  }
  if ($0 ~ /^[[:space:]]*#?[[:space:]]*config-file[[:space:]]*=/ && $0 ~ /wallust\.conf/) {
    print "config-file = " wallust_include_path
    wallust_set=1
    next
  }
  print $0
}
END {
  if (!wallust_set) {
    print "config-file = " wallust_include_path
  }
}
' "$config_file" > "$tmp_file"
  mv "$tmp_file" "$config_file"
  sync_runtime_ghostty_config
  refresh_wallpaper_theme
  notify_user "$iDIR/ja.png" "Ghostty Theme Applied" "$wallust_option_label"
  exit 0
fi
if [[ "$selected_theme" == "$default_option_label" ]]; then
  if [[ "$wallust_enabled" != "1" && -z "$current_theme" ]]; then
    exit 0
  fi

  tmp_file=$(mktemp)
  awk -v wallust_include_path="$wallust_include_path" '
{
  line=$0
  if ($0 ~ /^[[:space:]]*theme[[:space:]]*=/) {
    sub(/^[[:space:]]*theme[[:space:]]*=/, "#theme =", line)
    print line
    next
  }
  if ($0 ~ /^[[:space:]]*#?[[:space:]]*config-file[[:space:]]*=/ && $0 ~ /wallust\.conf/) {
    print "#config-file = " wallust_include_path
    wallust_seen=1
    next
  }
  print $0
}
END {
  if (!wallust_seen) {
    print "#config-file = " wallust_include_path
  }
}
' "$config_file" > "$tmp_file"
  mv "$tmp_file" "$config_file"
  sync_runtime_ghostty_config

  pkill -SIGUSR2 ghostty >/dev/null 2>&1 || true
  notify_user "$iDIR/ja.png" "Ghostty Theme Applied" "$default_option_label"
  exit 0
fi

if [[ "$wallust_enabled" != "1" && -n "$current_theme" && "$selected_theme" == "$current_theme" ]]; then
  exit 0
fi

format_theme_value() {
  if [[ "$1" =~ [[:space:]] ]]; then
    printf "\"%s\"" "$1"
  else
    printf "%s" "$1"
  fi
}

selected_formatted=$(format_theme_value "$selected_theme")

tmp_file=$(mktemp)
awk -v selected="$selected_theme" -v selected_formatted="$selected_formatted" -v wallust_include_path="$wallust_include_path" '
function trim(s) { sub(/^[[:space:]]+/, "", s); sub(/[[:space:]]+$/, "", s); return s }
function strip_quotes(s) { gsub(/^"|"$/, "", s); return s }
{
  line=$0
  if ($0 ~ /^[[:space:]]*#?[[:space:]]*config-file[[:space:]]*=/ && $0 ~ /wallust\.conf/) {
    print "#config-file = " wallust_include_path
    wallust_seen=1
    next
  }
  if ($0 ~ /^[[:space:]]*theme[[:space:]]*=/) {
    sub(/^[[:space:]]*theme[[:space:]]*=/, "#theme =", line)
    print line
    next
  }
  if ($0 ~ /^[[:space:]]*#[[:space:]]*theme[[:space:]]*=/) {
    val=$0
    sub(/^[[:space:]]*#[[:space:]]*theme[[:space:]]*=[[:space:]]*/, "", val)
    val=trim(val)
    val=strip_quotes(val)
    if (val == selected) {
      print "theme = " selected_formatted
      next
    }
  }
  print $0
}
END {
  if (!wallust_seen) {
    print "#config-file = " wallust_include_path
  }
}' "$config_file" > "$tmp_file"

mv "$tmp_file" "$config_file"
sync_runtime_ghostty_config

pkill -SIGUSR2 ghostty >/dev/null 2>&1 || true

notify_user "$iDIR/ja.png" "Ghostty Theme Applied" "$selected_theme"

exit 0
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage