dotfiles/.config/i3/mmc.sh

10 lines
150 B
Bash
Executable File

#!/bin/bash
INSTANCE=$(ls ~/.local/share/multimc/instances/ | rofi -dmenu -i)
echo $INSTANCE
if test -n "$INSTANCE"; then
multimc -l $INSTANCE
fi