i want to hide a program (gitkraken) from taskbar and only show it in the system tray. for this purpose i wrote a little bash script, using kdocker, to achieve this.
#!/bin/bash
gitkraken
sleep 10
kdocker -f -t
basically it starts gitkraken, waits 10sec, then runs kdocker.
-f = put active window in system tray
-t = hide it from task
however, the kdocker -f -t commands starts after like 1minute, not 10 seconds, why?
is there any easy alternative on how to do this?
gitkrakentake? - Biffen