Browse Source

svg icons for sabtraylinux

pull/1452/head
jcfp 5 years ago
committed by Safihre
parent
commit
b9210a2801
  1. 1
      icons/logo-arrow.svg
  2. 1
      icons/logo-arrow_gray.svg
  3. 1
      icons/logo-arrow_green.svg
  4. 6
      sabnzbd/sabtraylinux.py

1
icons/logo-arrow.svg

@ -0,0 +1 @@
<svg viewBox="0 0 608 608" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M630.988 320.63V188.324h99.863v-35.62l110.197 101.773L730.85 356.25v-35.62h-99.86z" fill="none" stroke-width="16.62" stroke="#000" transform="matrix(0 2.665 -2.7482 0 1003.016 -1657.67)"/><path d="M121.86 23.913h363.604v266.135h97.89l-279.69 293.667L23.97 290.048h97.89V23.913z" fill="#FFB300" class="logo-arrow-outer"/><path d="M303.664 583.797L122.274 23.975h362.78l-181.39 559.822z" class="logo-arrow-inner" fill="#FFCA28"/></svg>

After

Width:  |  Height:  |  Size: 594 B

1
icons/logo-arrow_gray.svg

@ -0,0 +1 @@
<svg viewBox="0 0 608 608" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M630.988 320.63V188.324h99.863v-35.62l110.197 101.773L730.85 356.25v-35.62h-99.86z" fill="none" stroke-width="16.62" stroke="#000" transform="matrix(0 2.665 -2.7482 0 1003.016 -1657.67)"/><path d="M121.86 23.913h363.604v266.135h97.89l-279.69 293.667L23.97 290.048h97.89V23.913z" fill="#B9B9B9" class="logo-arrow-outer"/><path d="M303.664 583.797L122.274 23.975h362.78l-181.39 559.822z" class="logo-arrow-inner" fill="#D5D5D5"/></svg>

After

Width:  |  Height:  |  Size: 594 B

1
icons/logo-arrow_green.svg

@ -0,0 +1 @@
<svg viewBox="0 0 608 608" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M630.988 320.63V188.324h99.863v-35.62l110.197 101.773L730.85 356.25v-35.62h-99.86z" fill="none" stroke-width="16.62" stroke="#000" transform="matrix(0 2.665 -2.7482 0 1003.016 -1657.67)"/><path d="M121.86 23.913h363.604v266.135h97.89l-279.69 293.667L23.97 290.048h97.89V23.913z" fill="#7CB342" class="logo-arrow-outer"/><path d="M303.664 583.797L122.274 23.975h362.78l-181.39 559.822z" class="logo-arrow-inner" fill="#9CCC65"/></svg>

After

Width:  |  Height:  |  Size: 594 B

6
sabnzbd/sabtraylinux.py

@ -49,9 +49,9 @@ from sabnzbd.utils.upload import add_local
class StatusIcon(Thread):
sabicons = {
'default': abspath('icons/sabnzbd16_32.ico'),
'green': abspath('icons/sabnzbd16_32green.ico'),
'pause': abspath('icons/sabnzbd16_32paused.ico')
'default': abspath('icons/logo-arrow.svg'),
'green': abspath('icons/logo-arrow_green.svg'),
'pause': abspath('icons/logo-arrow_gray.svg')
}
updatefreq = 1000 # ms

Loading…
Cancel
Save