diff options
| author | Amin Bandali <bandali@gnu.org> | 2018-11-16 23:51:28 -0500 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2018-11-16 23:51:28 -0500 | 
| commit | a7876499d29261a3f505cd394363d954a5a347dc (patch) | |
| tree | b53baca5657afd3c8c2a8e09c6d160ed5c9ef5c3 | |
| parent | dab6b69b1c4a8be1f08d43e5ad6d4152f68310df (diff) | |
| download | configs-a7876499d29261a3f505cd394363d954a5a347dc.tar.gz configs-a7876499d29261a3f505cd394363d954a5a347dc.tar.xz configs-a7876499d29261a3f505cd394363d954a5a347dc.zip  | |
[rc/rofi-remmina.py] better format code, set rofi -width
Diffstat (limited to '')
| -rw-r--r-- | rc.org | 11 | 
1 files changed, 9 insertions, 2 deletions
@@ -5609,8 +5609,15 @@ for f in os.listdir(remmina_dir):      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]])  | 
