mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-27 00:53:17 +00:00
16 lines
390 B
Plaintext
16 lines
390 B
Plaintext
|
#!/bin/bash
|
||
|
cd $D/Games/Minecraft/Game
|
||
|
rm `ff -e log`
|
||
|
bin/MultiMC -d . $@
|
||
|
rm functions/*
|
||
|
for i in `ls -d instances/*/ | grep -v _MMC_TEMP | xargs -n1 basename`
|
||
|
do
|
||
|
echo > functions/$i.fish "function $i
|
||
|
minecraft -l $i; end"
|
||
|
done
|
||
|
for i in `cat ~/.config/qutebrowser/quickmarks | cut -d ' ' -f1`
|
||
|
do
|
||
|
echo > functions/$i.fish function $i"
|
||
|
qb / \":quickmark-load $i\"; end"
|
||
|
done
|