In Ptyxis, can you have more than one "custom command" ?

I would like to have 2 commands but I am not sure what I would need to input to allow that.
ptyxis.png
Solution
I haven't used this myself and I'm not sure if there's any downside of doing it like this but I threw some things at it and I think this does what you want:
bash -c "command1 && command2 && bash"


Change out bash for the shell program you want.
If you change the first bash to some other shell you might have to change the &&'s to something appropriate for that shell.
Was this page helpful?