@ -0,0 +1 @@ |
|||
../apps/utilities-terminal.png |
|||
@ -0,0 +1 @@ |
|||
../apps/utilities-terminal.png |
|||
|
After Width: | Height: | Size: 44 KiB |
@ -0,0 +1 @@ |
|||
edit-clear.png |
|||
|
After Width: | Height: | Size: 29 KiB |
@ -0,0 +1 @@ |
|||
edit-clone.png |
|||
|
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1 @@ |
|||
../places/folder-recent.png |
|||
@ -0,0 +1 @@ |
|||
arrow.png |
|||
|
After Width: | Height: | Size: 6.4 KiB |
@ -0,0 +1 @@ |
|||
../places/poi-marker.png |
|||
@ -0,0 +1 @@ |
|||
transform-browse.png |
|||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1 @@ |
|||
document-edit.png |
|||
@ -0,0 +1 @@ |
|||
view-preview.png |
|||
@ -0,0 +1 @@ |
|||
view-preview.png |
|||
|
After Width: | Height: | Size: 22 KiB |
@ -0,0 +1 @@ |
|||
layer-visible-on.png |
|||
@ -0,0 +1 @@ |
|||
../status/unstarred.png |
|||
|
After Width: | Height: | Size: 38 KiB |
@ -0,0 +1 @@ |
|||
view-refresh.png |
|||
@ -0,0 +1 @@ |
|||
edit-delete.png |
|||
@ -0,0 +1 @@ |
|||
amarok_scripts.png |
|||
@ -0,0 +1 @@ |
|||
gtk-open.png |
|||
|
Before Width: | Height: | Size: 683 B After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
@ -0,0 +1 @@ |
|||
im-user.png |
|||
@ -0,0 +1 @@ |
|||
im-user.png |
|||
@ -0,0 +1 @@ |
|||
recent.png |
|||
@ -0,0 +1 @@ |
|||
amarok_scripts.png |
|||
@ -0,0 +1 @@ |
|||
layer-visible-on.png |
|||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1 @@ |
|||
../categories/applications-accessories.png |
|||
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
@ -0,0 +1 @@ |
|||
../status/network-wired.png |
|||
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 36 B |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 36 B |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 19 B |
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 19 B |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 44 KiB |
@ -0,0 +1 @@ |
|||
../actions/fingerprint.png |
|||
|
Before Width: | Height: | Size: 6.9 KiB |
@ -0,0 +1,38 @@ |
|||
#!/bin/bash |
|||
|
|||
echo "Running in directory $(pwd)" |
|||
read -p "Do you really want to execute the changes (y/n)? " pregunta |
|||
|
|||
if [ "$pregunta" = "y" ] |
|||
then |
|||
echo "Changes will be executed" |
|||
else |
|||
echo "Changes will NOT be executed; doing a dry run, that is, the script will only show what it would have done if you had answered yes" |
|||
fi |
|||
read -p "Press Enter to continue..." |
|||
|
|||
for filenamesencer in *.svg |
|||
do |
|||
echo "Processing $filenamesencer" |
|||
filename_no_ext="${filenamesencer%.*}" |
|||
echo "Filename without extension: $filename_no_ext" |
|||
filename_png="$filename_no_ext.png" |
|||
if [ -e "$filename_png" ] |
|||
then |
|||
echo "Located an SVG which has also a matching PNG: $filenamesencer and $filename_png" |
|||
echo |
|||
echo "Operation: delete SVG:" |
|||
echo "rm $filenamesencer" |
|||
if [ "$pregunta" = "s" ] |
|||
then |
|||
rm "$filenamesencer" |
|||
echo "rm done" |
|||
fi |
|||
else |
|||
echo "***** There is no matching PNG file, therefore leaving the SVG in place..." |
|||
fi |
|||
echo |
|||
echo |
|||
echo |
|||
|
|||
done |
|||
@ -0,0 +1 @@ |
|||
../actions/media-playback-pause.png |
|||
|
Before Width: | Height: | Size: 485 B |
@ -0,0 +1 @@ |
|||
../actions/media-playback-start.png |
|||
|
Before Width: | Height: | Size: 462 B |
@ -0,0 +1 @@ |
|||
../actions/media-playback-stop.png |
|||