Skip to content

Commit

Permalink
add support for rio terminal emulator
Browse files Browse the repository at this point in the history
  • Loading branch information
prototype99 committed Jan 4, 2025
1 parent 111f6ea commit 674cf1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/terminal-helper
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ declare -A terminals=(
["xterm"]="xterm -e $cmd"
["st"]="st $cmd"
["foot"]="foot $cmd"
["rio"]="rio -e $cmd"
)
declare -a term_order=("alacritty" "kitty" "ptyxis" "konsole" "gnome-terminal" "xfce4-terminal" "lxterminal" "xterm" "st" "foot")
declare -a term_order=("alacritty" "kitty" "ptyxis" "konsole" "gnome-terminal" "xfce4-terminal" "lxterminal" "xterm" "st" "foot" "rio")

if [ -z "$terminal" ] || ! command -v "$terminal" &> /dev/null; then
for entry in ${term_order[@]}; do
Expand Down

0 comments on commit 674cf1b

Please sign in to comment.