Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b58cc8a13 | |||
|
e0967a8388
|
|||
|
8d94bc4006
|
@@ -106,6 +106,7 @@ json = false # copy JSON format instead of plain text
|
|||||||
name = false # fetch color name (requires network)
|
name = false # fetch color name (requires network)
|
||||||
copy = true # copy result to clipboard
|
copy = true # copy result to clipboard
|
||||||
notify = true # show desktop notification with the copied value
|
notify = true # show desktop notification with the copied value
|
||||||
|
swatch = true # show color swatch in notification
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also use the CLI to manage your configuration:
|
You can also use the CLI to manage your configuration:
|
||||||
|
|||||||
+29
-3
@@ -45,7 +45,7 @@ desktop_name=0
|
|||||||
desktop_notify=1
|
desktop_notify=1
|
||||||
desktop_copy=1
|
desktop_copy=1
|
||||||
desktop_output="hex"
|
desktop_output="hex"
|
||||||
desktop_swatch=0
|
desktop_swatch=1
|
||||||
|
|
||||||
# Track which settings were explicitly set via CLI flags to ensure they override config
|
# Track which settings were explicitly set via CLI flags to ensure they override config
|
||||||
cli_json=""
|
cli_json=""
|
||||||
@@ -194,7 +194,33 @@ set_config() {
|
|||||||
|
|
||||||
if [[ -n "$new_val" ]]; then
|
if [[ -n "$new_val" ]]; then
|
||||||
if [[ "$original_line" =~ ^([[:space:]]*[A-Za-z_]+[[:space:]]*=[[:space:]]*)([^[:space:]#]+)(.*)$ ]]; then
|
if [[ "$original_line" =~ ^([[:space:]]*[A-Za-z_]+[[:space:]]*=[[:space:]]*)([^[:space:]#]+)(.*)$ ]]; then
|
||||||
echo "${BASH_REMATCH[1]}$new_val${BASH_REMATCH[3]}" >> "$temp_file"
|
local prefix="${BASH_REMATCH[1]}"
|
||||||
|
local old_val="${BASH_REMATCH[2]}"
|
||||||
|
local suffix="${BASH_REMATCH[3]}"
|
||||||
|
|
||||||
|
# Adjust whitespace to keep comments aligned if the value length changed
|
||||||
|
if [[ "$key" != "output" ]]; then
|
||||||
|
local old_len=${#old_val}
|
||||||
|
local new_len=${#new_val}
|
||||||
|
local diff=$((old_len - new_len))
|
||||||
|
|
||||||
|
if [[ $diff -gt 0 ]]; then
|
||||||
|
# new value is shorter, add spaces to suffix
|
||||||
|
local spaces=""
|
||||||
|
for ((i=0; i<diff; i++)); do spaces+=" "; done
|
||||||
|
suffix="$spaces$suffix"
|
||||||
|
elif [[ $diff -lt 0 ]]; then
|
||||||
|
# new value is longer, remove spaces from suffix
|
||||||
|
local remove=$((-diff))
|
||||||
|
for ((i=0; i<remove; i++)); do
|
||||||
|
if [[ "$suffix" == " "* ]]; then
|
||||||
|
suffix="${suffix# }"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "$prefix$new_val$suffix" >> "$temp_file"
|
||||||
continue
|
continue
|
||||||
elif [[ "$original_line" =~ ^([[:space:]]*[A-Za-z_]+[[:space:]]*=[[:space:]]*)(.*)$ ]]; then
|
elif [[ "$original_line" =~ ^([[:space:]]*[A-Za-z_]+[[:space:]]*=[[:space:]]*)(.*)$ ]]; then
|
||||||
echo "${BASH_REMATCH[1]}$new_val" >> "$temp_file"
|
echo "${BASH_REMATCH[1]}$new_val" >> "$temp_file"
|
||||||
@@ -274,7 +300,7 @@ json = false # copy JSON format instead of plain text
|
|||||||
name = false # fetch color name (requires network)
|
name = false # fetch color name (requires network)
|
||||||
copy = true # copy result to clipboard
|
copy = true # copy result to clipboard
|
||||||
notify = true # show desktop notification with the copied value
|
notify = true # show desktop notification with the copied value
|
||||||
swatch = false # show color swatch in notification
|
swatch = true # show color swatch in notification
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user