dotfiles/.config/i3/mmc.sh

10 lines
150 B
Bash
Raw Permalink Normal View History

2019-07-20 12:14:25 +02:00
#!/bin/bash
INSTANCE=$(ls ~/.local/share/multimc/instances/ | rofi -dmenu -i)
echo $INSTANCE
if test -n "$INSTANCE"; then
multimc -l $INSTANCE
fi