Skip to content

Instantly share code, notes, and snippets.

View jomarinb's full-sized avatar
🐧

Jose Marin jomarinb

🐧
  • Costa Rica
View GitHub Profile
@jomarinb
jomarinb / icons-for-chrome-apps.sh
Created March 29, 2022 21:53 — forked from ninogresenz/icons-for-chrome-apps.sh
This script is setting the right icon for all installed chrome apps in KDE's app panel (Icons-only Task Manager). By default it's only showing the chrome icon which is very confusing.
#!/bin/bash
set -e
DIR="$HOME/.local/share/applications"
PATTERN="chrome-*.desktop"
if ! command -v xdotool > /dev/null; then
echo "installing xdotool..."
yes | sudo pacman -S xdotool