blob: 1384699aa8027d2ad2a21672608819180f59ff36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
# Toggle dropdown terminal windows in River.
# The first argument is the name of the dropdown window.
# The rest is the command to be run inside the terminal.
name="$1"
class="dropdown"
title="dropdown_$name"
shift
# Get the window ID of an existing dropdown terminal
existing=$(riverctl list-views | awk -v class="$class" '$3 == class {print $1}')
if [ -n "$existing" ]; then
# If found, close it
riverctl close-view "$existing"
else
# Otherwise, launch a new one
case "$TERMINAL" in
*st)
classflag="-c"
titleflag="-t"
cmdflag="-e"
;;
*alacritty)
classflag="--class"
titleflag="--title"
cmdflag="--command"
;;
*foot)
classflag="-a"
titleflag="--title"
cmdflag="-e"
;;
esac
$TERMINAL "$classflag" "$class" "$titleflag" "$title" "$cmdflag" "$@" &
fi
|