mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Add omarchy CLI * Remove outdated or internal * Add bash completions for command * Add omarchy command documentation * Add missing docs * Correct to what's now right * Fix tests --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
15 lines
412 B
Bash
Executable File
15 lines
412 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Launch Walker and ensure its Elephant data provider is running
|
|
|
|
if ! pgrep -x elephant > /dev/null; then
|
|
setsid uwsm-app -- elephant &
|
|
fi
|
|
|
|
# Ensure walker service is running
|
|
if ! pgrep -f "walker --gapplication-service" > /dev/null; then
|
|
setsid uwsm-app -- env GSK_RENDERER=cairo walker --gapplication-service &
|
|
fi
|
|
|
|
exec walker --width 644 --maxheight 300 --minheight 300 "$@"
|