You are not logged in.
Pages: 1
I'm trying something that seems very simple, yet I'm having trouble.
I'm trying to run screenfetch on startup in i3. I used
exec termite -e screenfetch --holdbut the problem is, it's only screenfetch open and I have no option to input new command into that specific terminal.
How do I run that command and have it show my home folder ready to recieve new command after screenfetch is written?
I'm probably approaching this in a completely wrong way.
Last edited by JasonHockeyPuck (2016-07-02 10:54:42)
Offline
exec termite -e bash -c "screenfetch; exec bash""UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
That opens screenfetch for a split second and then a new empty terminal, but screenfetch is gone.
Last edited by JasonHockeyPuck (2016-07-02 09:47:07)
Offline
exec termite -e 'bash -c "screenfetch; exec bash"'(Added quotes around the -e argument)
Offline
Excellent. Thanks!
Offline
Pages: 1