mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
17 lines
436 B
Bash
Executable File
17 lines
436 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Prompt for text input with Walker
|
|
# omarchy:group=menu
|
|
# omarchy:name=input
|
|
# omarchy:args=prompt [walker args...]
|
|
# omarchy:examples=omarchy menu input Reminder|omarchy-menu-input "Reminder in minutes" --width 400
|
|
|
|
set -euo pipefail
|
|
|
|
prompt="${1:-Input}"
|
|
if (( $# > 0 )); then
|
|
shift
|
|
fi
|
|
|
|
omarchy-launch-walker --dmenu --inputonly --width 295 --minheight 1 --maxheight 1 -p "$prompt…" "$@" 2>/dev/null
|