This is a fairly complete set of icons for Gnome, KDE Plasma, XFCE, LXQt, Cinnamon and Mate, based on the icons and artwork by Paul Davey (Mattahan) (http://www.mattahan.com/).
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
286 B
10 lines
286 B
#!/bin/bash
|
|
#
|
|
echo "eliminates svg symbolic icon and links a symbolic png to the original"
|
|
echo "it does not check for anything, be sure to do it right!"
|
|
echo "It executes this:"
|
|
echo rm $1-symbolic.svg
|
|
echo ln -s $1.png $1-symbolic.png
|
|
|
|
rm $1-symbolic.svg
|
|
ln -s $1.png $1-symbolic.png
|
|
|