mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Scope branding image pickers to ~/Pictures, fix About transcode mode
The "Set From Image" path in both Style → About and Style → Screensaver
was scanning all of $HOME for *.svg / *.png and feeding the result into
Walker dmenu. On a populated home directory this can be tens of thousands
of entries, leaving the picker effectively unusable.
Scope the picker to ${XDG_PICTURES_DIR:-$HOME/Pictures}, matching the
pattern already used in omarchy-capture-screenshot.
While here, drop the hardcoded --mode block from omarchy-branding-about
so the About transcode falls back to the default braille mode, matching
what omarchy-branding-screensaver does and what stock about.txt ships
with. The reduced --width 54 stays so the result fits the fastfetch
logo column.
* Explain the scope of the picker
---------
Co-authored-by: Gavin Nugent <245706154+28allday@users.noreply.github.com>
Co-authored-by: David Heinemeier Hansson <david@hey.com>
31 lines
941 B
Bash
Executable File
31 lines
941 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Edit, set, or reset About branding
|
|
# omarchy:group=branding
|
|
# omarchy:name=about
|
|
# omarchy:args=<image|text|reset>
|
|
# omarchy:examples=omarchy branding about image | omarchy branding about text | omarchy branding about reset
|
|
|
|
set -euo pipefail
|
|
|
|
SOURCE_DIR="${XDG_PICTURES_DIR:-$HOME/Pictures}"
|
|
|
|
case "${1:-}" in
|
|
image)
|
|
image=$(omarchy-menu-file "Pick png/svg from $SOURCE_DIR" "${SOURCE_DIR}" "svg png")
|
|
if [[ -n $image ]] && omarchy-transcode-ascii "$image" ~/.config/omarchy/branding/about.txt --width 54 --height 26; then
|
|
omarchy-launch-about >/dev/null 2>&1
|
|
fi
|
|
;;
|
|
text)
|
|
omarchy-launch-editor ~/.config/omarchy/branding/about.txt >/dev/null 2>&1 && omarchy-launch-about >/dev/null 2>&1
|
|
;;
|
|
reset)
|
|
cp "$OMARCHY_PATH/icon.txt" ~/.config/omarchy/branding/about.txt && omarchy-launch-about >/dev/null 2>&1
|
|
;;
|
|
*)
|
|
echo "Usage: omarchy-branding-about <image|text|reset>" >&2
|
|
exit 1
|
|
;;
|
|
esac
|