Files
arthur-os/bin/omarchy-launch-walker
T
2026-04-28 12:03:46 -04:00

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 "$@"