alias cp="cp -iv"
alias scl=systemctl
alias jcl=journalctl
-alias m="mbsync -a"
+alias m="mbsync uwaterloo; mbsync amin"
alias best="youtube-dl -f best"
alias sd="ssh deb"
alias sf="ssh fp"
fdict[n] = fp
lines = max(min(15, len(fdict)), 1);
-rofi = Popen(["rofi", "-i", "-dmenu", "-l", str(lines), "-p", "connection: "], stdout=PIPE, stdin=PIPE)
-selected = rofi.communicate("\n".join(fdict.keys()).encode("utf-8"))[0].decode("utf-8").strip()
+width = len(max(fdict.keys(), key=len))
+rofi = Popen(["rofi", "-i", "-dmenu", \
+ "-l", str(lines), "-width", str(width), \
+ "-p", "connection"], stdout=PIPE, stdin=PIPE)
+selected = rofi.communicate("\n" \
+ .join(fdict.keys()) \
+ .encode("utf-8"))[0] \
+ .decode("utf-8") \
+ .strip()
rofi.wait()
r = Popen(["remmina", "-c", fdict[selected]])