KDocker icon indicating copy to clipboard operation
KDocker copied to clipboard

Thanks for Docker + Docking Progressive Web Apps (Google Chrome)

Open ndmax opened this issue 2 years ago • 2 comments

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:

#!/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

ndmax avatar Jul 02 '23 16:07 ndmax

Thank you from me too!

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.

Jieiku avatar Jul 02 '23 16:07 Jieiku