80-chromium-to-firefox-in-panel 264 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
#!/bin/sh -efu

fffile="/usr/share/applications/firefox.desktop"
panfile="/etc/skel/.config/xfce4/panel/launcher-5/15592088901.desktop"

if [ -f "$fffile" -a -f "$panfile" ]
then
	sed -i 's/Chromium/Firefox/' "$panfile"
	sed -i 's/chromium/firefox/' "$panfile"
fi