mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
omarchy-cmd-present "$EDITOR" || EDITOR=nvim
|
|
|
|
case "$EDITOR" in
|
|
nvim | vim | nano | micro | hx | helix | fresh)
|
|
exec omarchy-launch-tui "$EDITOR" "$@"
|
|
;;
|
|
*)
|
|
exec setsid uwsm-app -- "$EDITOR" "$@"
|
|
;;
|
|
esac
|