You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No issue to report - I just wanted to say thank you for KDocker. It's so useful for creating efficient desktop workflows and I appreciate the efforts of contributors.
If anyone is trying to figure out how to get Google Chrome web apps to dock properly, here's an example running on Lubuntu 23.04:
#!/bin/bash
bash -c '/opt/google/chrome/google-chrome --profile-directory=Default --app-id=cifhbcnohmdccbgoicgdjpfamggdegmo &'
while true; do
sleep 5
status=$(wmctrl -l | grep "Microsoft Teams")
if [ "$status" != "" ]; then break; fi
done
WID="$(wmctrl -lx | grep "Microsoft Teams")"; kdocker -qw "${WID%% *}" -i /usr/share/icons/Numix-Circle/48/apps/teams.svg
The text was updated successfully, but these errors were encountered:
I use KDocker to dock thunderbird, I install the "Minimize on Close" extension for thunderbird which compliments kdocker perfectly.
In Thunderbird press alt to reveal the toolbar, then from the tools menu goto addons and themes.
Thanks for sharing this actually! I use birdtray right now for this, but since on i3 there is no way to minimize windows, I have birdtray "restart" thunderbird when I close it out of habit, which is annoying. I'll try integrating it with kdocker instead.
Hi there.
No issue to report - I just wanted to say thank you for KDocker. It's so useful for creating efficient desktop workflows and I appreciate the efforts of contributors.
If anyone is trying to figure out how to get Google Chrome web apps to dock properly, here's an example running on Lubuntu 23.04:
The text was updated successfully, but these errors were encountered: