ulauncher-ssh icon indicating copy to clipboard operation
ulauncher-ssh copied to clipboard

Fix in ubuntu 20.04 not launch anything

Open RofieSagara opened this issue 4 years ago • 1 comments

subprocess.Popen(["alacritty", "-e", "/bin/bash -c 'ssh trackin.pgsql';/bin/bash"], cwd='/home/user') -- this make the result is 'No such file or directory' so i change with subprocess.Popen(["alacritty", "-e", "/bin/bash", "-c", 'ssh trackin.pgsql', ";", "/bin/bash"], cwd="/home/user") -- this open the terminal

RofieSagara avatar Jan 15 '21 09:01 RofieSagara