diff options
Diffstat (limited to '')
36 files changed, 2501 insertions, 547 deletions
@@ -9,12 +9,27 @@ Contributors Francesco Marella Alexandros Frantzis Dan Helfman +Gabriel de Perthuis Martin Koelewijn -Tango Desktop Project provided artwork for the redshift icon. +Joern Konopka (Ubuntu Mono icons) +aleth (Ubuntu Mono icons) +Tango Desktop Project provided artwork for the official redshift icon. Translators -------------------- -Gregory Petrosyan (ru) -Jon Lund Steffensen (da) +Ibai Oihanguren (Basque) +Gustavo Guidorizzi (Brazilian Portuguese) +Rafael Beraldo (Brazilian Portuguese) +clever_fox (Czech) +Jon Lund Steffensen (Danish) +Ilari Oras (Finnish) +XioNoX (French) +Hangman (French) +Jan-Christoph Borchardt (German) +dotancohen (Hebrew) +Andrea Amoroso (Italian) +Gregory Petrosyan (Russian) +Чистый (Russian) +Fernando Ossandon (Spanish) diff --git a/Makefile.am b/Makefile.am index b2ba5d3..14335fa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,11 +3,31 @@ SUBDIRS = src po ACLOCAL_AMFLAGS = -I m4 # Icons -icondir = @datadir@/icons/hicolor/scalable/apps -icon_DATA = data/icons/hicolor/scalable/apps/redshift.svg \ - data/icons/hicolor/scalable/apps/redshift-idle.svg +hicolor_icondir = @datadir@/icons/hicolor/scalable/apps +hicolor_icon_DATA = data/icons/hicolor/scalable/apps/redshift.svg \ + data/icons/hicolor/scalable/apps/redshift-idle.svg -EXTRA_DIST = $(icon_DATA) +ubuntu_mono_dark_icondir = @datadir@/icons/ubuntu-mono-dark/scalable/apps +ubuntu_mono_dark_icon_DATA = data/icons/ubuntu-mono-dark/scalable/apps/redshift.svg \ + data/icons/ubuntu-mono-dark/scalable/apps/redshift-idle.svg + +ubuntu_mono_light_icondir = @datadir@/icons/ubuntu-mono-light/scalable/apps +ubuntu_mono_light_icon_DATA = data/icons/ubuntu-mono-light/scalable/apps/redshift.svg \ + data/icons/ubuntu-mono-light/scalable/apps/redshift-idle.svg + + +# Desktop file +if ENABLE_GUI +desktopdir = @datadir@/applications +desktop_DATA = data/applications/gtk-redshift.desktop +endif + + +EXTRA_DIST = \ + $(hicolor_icon_DATA) \ + $(ubuntu_mono_dark_icon_DATA) \ + $(ubuntu_mono_light_icon_DATA) \ + $(desktop_DATA) # Update PO translations @@ -1,3 +1,34 @@ +v1.5 (2010-08-18) +* New ubuntu-mono-dark icons that fit better with the color guidelines. + Contributed by aleth. +* Improve GNOME location provider (patch by Gabriel de Perthuis). +* Application launcher and autostart feature contributed by Francesco Marella. +* Translation updates: Basque (Ibai Oihanguren); Chinese (Jonathan Lumb); + French (Hangman, XioNoX); German (Jan-Christoph Borchardt); Hebrew + (dotancohen); Spanish (Fernando Ossandon). + +v1.4.1 (2010-06-15) +* Include Ubuntu Mono icons by Joern Konopka. +* Fix: Toggle icon in statusicon.py like appindicator already does. +* Tranlation updates: Spanish (Fernando Ossandon), Russian (Чистый) + +v1.4 (2010-06-13) +* Command line options for color adjustment methods changed. Procedure for + setting specific screen (-s) or CRTC (-c) changed. See `redshift -h' for + more information. +* Automatically obtain the location from the GNOME Clock applet if possible. +* Add application indicator GUI (by Francesco Marella) (fixes #588086). +* Add reset option (-x) that removes any color adjustment applied. Based on + patch by Dan Helfman (fixes #590777). +* `configure' options for GUI changed; see `configure --help' for more + information. +* New translations: + - German (Jan-Christoph Borchardt) + - Italian (Andrea Amoroso) + - Czech (clever_fox) + - Spanish (Fernando Ossandon) + - Finnish (Ilari Oras) + v1.3 (2010-05-12) * Allow adjusting individual CRTCs when using RANDR. Contributed by Alexandros Frantzis. @@ -6,78 +6,8 @@ Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. -Download --------- +Run `redshift -h' for help on command line options. You can run the program +as `gtk-redshift' instead of 'redshift' for a graphical status icon. -Latest release is redshift 1.3 published on 2010-05-12. There are also -packages available for some distributions: - - * Ubuntu: Packages for Ubuntu Karmic. - * Gentoo: Redshift is in the Sunrise overlay. - -What is it? ------------ - -The program uses an X server extension to adjust the color -temperature. This is done by setting appropriate gamma ramps. If you -have configured your own gamma ramps they will be overwritten but in -that case you probably care too much about color accuracy to use this -program anyway. Your graphics driver and X server needs to either -support at least RANDR version 1.3 or the VidMode extension. - -The color temperature is set according to the position of the sun. A -different color temperature is set during night and daytime. During -twilight and early morning, the color temperature transitions smoothly -from night to daytime temperature to allow your eyes to slowly -adapt. At night the color temperature should be set to match the lamps in your -room. This is typically a low temperature at around 3000K--4000K -(default is 3700K). During the day, the color temperature should match -the light from outside, typically around 5500K--6500K (default is -5500K). The light has a higher temperature on an overcast day. - -How does it work? ------------------ - -Redshift will continously update the color temperature at regular -intervals. One shot mode can be selected if you only want to do one -adjustment. The color adjustments done by Redshift can be temporarily -toggled on and off by sending it the USR1 signal: - - $ killall -USR1 redshift - -The command line options are explained in the following paragraphs. The -only required parameter is your current location, all other options -have reasonable defaults. - - -h Display help message. - -v Verbose output. - - -g R:G:B Additional gamma correction to apply. Can also be - specified as -g GAMMA to set all channels to the same - gamma value. - -l LAT:LON Your current location in latitudes and longitudes. - -m METHOD Method to use to set color temperature (randr or - vidmode). Default is randr. In some cases one of the - methods will not work. In that case you may be able to - use the other method. - -o One shot mode. Do not continously adjust color - temperature. - -r Disable temperature transition. By default the program - will make a smooth transition to the desired color - temperature when the program is started and stopped. - -s SCREEN X screen to apply adjustments to. - -c CRTC CRTC to apply adjustments to (RANDR only) - -t DAY:NIGHT Color temperature to set at daytime/night. - -Example (location is Copenhagen, Denmark): - - $ redshift -l 55.7:12.6 -t 5700:3600 -g 0.8 -m vidmode -v - -Status icon ------------ - -Start the program gtk-redshift instead of redshift, with the same -arguments as you would pass to redshift. This will create an icon for -Redshift in the system tray. The icon will allow you to toggle -Redshift on and off. Thanks goes to the Tango Desktop Project for the -icon. gtk-redshift requires at least Python 2.6 and PyGTK 2.12. +Website: http://jonls.dk/redshift/ +Project page: http://launchpad.net/redshift diff --git a/configure.ac b/configure.ac index 22dd3e9..6f4bb98 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) -AC_INIT([redshift], [1.3], [https://bugs.launchpad.net/redshift]) +AC_INIT([redshift], [1.5], [https://bugs.launchpad.net/redshift]) AC_CONFIG_SRCDIR([src/redshift.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([dist-bzip2]) @@ -22,7 +22,7 @@ PKG_CHECK_MODULES([XCB], [xcb], [have_xcb=yes], [have_xcb=no]) PKG_CHECK_MODULES([XCB_RANDR], [xcb-randr], [have_xcb_randr=yes], [have_xcb_randr=no]) -PKG_CHECK_MODULES([GLIB], [glib-2.0], [have_glib=yes], [have_glib=no]) +PKG_CHECK_MODULES([GLIB], [glib-2.0 gobject-2.0], [have_glib=yes], [have_glib=no]) PKG_CHECK_MODULES([GCONF], [gconf-2.0], [have_gconf=yes], [have_gconf=no]) AC_CHECK_HEADER([windows.h], [have_windows_h=yes], [have_windows_h=no]) @@ -131,44 +131,25 @@ AS_IF([test "x$enable_gnome_clock" != xno], [ ]) AM_CONDITIONAL([ENABLE_GNOME_CLOCK], [test "x$enable_gnome_clock" = xyes]) - -# Check for GUI -# There doesn't seem to be an easy way of detecting the presence -# of a python module. For that reason, statusicon is the default GUI. -AC_MSG_CHECKING([which GUI to enable]) +# Check for GUI status icon +AC_MSG_CHECKING([whether to enable GUI status icon]) AC_ARG_ENABLE([gui], [AC_HELP_STRING([--enable-gui], - [enable GUI (appindicator, statusicon or none)])], + [enable GUI status icon])], [enable_gui=$enableval],[enable_gui=maybe]) - -# Statusicon GUI -AS_IF([test "x$enable_gui" = xstatusicon -o "x$enable_gui" = maybe], [ - AS_IF([test $have_python != yes], [ - AS_IF([test "x$enable_gui" = xstatusicon], [ - AC_MSG_ERROR([status icon script requires Python 2.6]) - ]) - enable_gui=maybe - ]) -]) - -# Appindicator GUI -AS_IF([test "x$enable_gui" = xappindicator -o "x$enable_gui" = maybe], [ - AS_IF([test $have_python != yes], [ - AS_IF([test "x$enable_gui" = xappindicator], [ - AC_MSG_ERROR([application indicator script requires Python 2.6]) +AS_IF([test "x$enable_gui" != xno], [ + AS_IF([test $have_python = yes], [ + AC_MSG_RESULT([yes]) + ], [ + AC_MSG_RESULT([missing dependencies]) + AS_IF([test "x$enable_gui" = xyes], [ + AC_MSG_ERROR([GUI status icon script requires Python 2.6]) ]) - enable_gui=maybe + enable_gui=no ]) +], [ + AC_MSG_RESULT([no]) ]) - -# Fall back to no GUI -AS_IF([test "x$enable_gui" != xappindicator -a "x$enable_gui" != xstatusicon], [ - enable_gui=none -]) - -AC_MSG_RESULT([$enable_gui]) - -AM_CONDITIONAL([ENABLE_STATUSICON], [test "x$enable_gui" = xstatusicon]) -AM_CONDITIONAL([ENABLE_APPINDICATOR], [test "x$enable_gui" = xappindicator]) +AM_CONDITIONAL([ENABLE_GUI], [test "x$enable_gui" != xno]) # Checks for header files. diff --git a/data/applications/gtk-redshift.desktop b/data/applications/gtk-redshift.desktop new file mode 100755 index 0000000..850255c --- /dev/null +++ b/data/applications/gtk-redshift.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Name=Redshift +GenericName=Color temperature adjustment +Comment=Color temperature adjustment tool +Exec=gtk-redshift +Icon=redshift +Terminal=false +Type=Application +Categories=Utility; +StartupNotify=true diff --git a/data/icons/ubuntu-mono-dark/scalable/apps/redshift-idle.svg b/data/icons/ubuntu-mono-dark/scalable/apps/redshift-idle.svg new file mode 100644 index 0000000..5bf4883 --- /dev/null +++ b/data/icons/ubuntu-mono-dark/scalable/apps/redshift-idle.svg @@ -0,0 +1,459 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2837" + version="1.1" + inkscape:version="0.47 r22583" + sodipodi:docname="redshift-dark-7.svg" + inkscape:export-filename="/home/joern/Desktop/redshiftIconlight.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs2839"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective2845" /> + <inkscape:perspective + id="perspective7076" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7164" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7202" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-2" + id="radialGradient7192-2" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-2"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-4" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-9" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-4" + id="radialGradient7192-4" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-4"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-8" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-7" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-5" + id="radialGradient7192-1" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-5"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-5" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-4" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-90" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-9" + id="radialGradient7192-8" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-9"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-88" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-1" /> + </linearGradient> + <inkscape:perspective + id="perspective7369" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-8" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-5" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-51" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-93" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-84" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7667" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7691" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7757" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7782" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-28" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7883" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2901" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2950" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2921" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective3058" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2916" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2882" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2904" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="12.50008" + inkscape:cy="11.54906" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + showguides="false" + inkscape:guide-bbox="true" + inkscape:window-width="955" + inkscape:window-height="801" + inkscape:window-x="174" + inkscape:window-y="71" + inkscape:window-maximized="0" + inkscape:snap-global="false"> + <sodipodi:guide + position="0,0" + orientation="0,24" + id="guide2847" /> + <sodipodi:guide + position="24,0" + orientation="-24,0" + id="guide2849" /> + <sodipodi:guide + position="24,24" + orientation="0,-24" + id="guide2851" /> + <sodipodi:guide + position="0,24" + orientation="24,0" + id="guide2853" /> + <inkscape:grid + type="xygrid" + id="grid7095" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="-4.6845824,12.020815" + id="guide7849" /> + <sodipodi:guide + orientation="0,1" + position="-5.08233,17.987029" + id="guide7867" /> + <sodipodi:guide + orientation="1,0" + position="6.0104077,18.870912" + id="guide7869" /> + <sodipodi:guide + orientation="1,0" + position="17.987029,20.019961" + id="guide7871" /> + <sodipodi:guide + orientation="0,1" + position="9.1923882,6.0104077" + id="guide7873" /> + </sodipodi:namedview> + <metadata + id="metadata2842"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ebene#1" + style="display:inline"> + <g + id="g4255" + transform="matrix(0.98314262,0,0,0.98314262,0.05987544,0.20244021)" + style="opacity:0.4"> + <g + id="g4252" /> + </g> + <g + id="g4411"> + <path + d="m 11.901568,3.515032 c -3.6085296,0 -6.5338204,2.925291 -6.5338204,6.533821 0,2.308483 1.0115514,4.239217 3.021892,5.512911 0.9197379,0.58272 2.3031584,0.94774 3.4545534,0.951673 1.249176,0.0043 2.539034,-0.235058 3.569303,-0.99251 1.631571,-1.199528 3.021893,-3.170417 3.021893,-5.472074 0,-3.60853 -2.925291,-6.533821 -6.533821,-6.533821 z m 0,-1e-7 c -3.6085297,0 -6.5338204,2.9252909 -6.5338204,6.5338201 0,2.308484 1.2145131,4.350661 3.021892,5.512912 l 0.8984002,3.634437 c 0,0 0,1.306764 2.6135282,1.306764 2.613528,0 2.613528,-1.306764 2.613528,-1.306764 l 0.8984,-3.675274 c 1.79843,-1.163919 3.021892,-3.170418 3.021892,-5.472075 0,-3.6085292 -2.925291,-6.5338201 -6.53382,-6.5338201 z" + style="opacity:0.24;fill:none;stroke:#43423e;stroke-width:3.70000004999999987;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + id="path4672-2-2" /> + <path + d="m 11.901568,3.515032 c -3.6085296,0 -6.5338204,2.925291 -6.5338204,6.533821 0,2.308483 1.0115514,4.239217 3.021892,5.512911 0.9197379,0.58272 2.3031584,0.94774 3.4545534,0.951673 1.249176,0.0043 2.539034,-0.235058 3.569303,-0.99251 1.631571,-1.199528 3.021893,-3.170417 3.021893,-5.472074 0,-3.60853 -2.925291,-6.533821 -6.533821,-6.533821 z m 0,-3e-7 c -3.6085297,0 -6.5338204,2.9252909 -6.5338204,6.5338203 0,2.308484 1.2145131,4.350661 3.021892,5.512912 l 0.8984002,3.634437 c 0,0 0,1.306764 2.6135282,1.306764 2.613528,0 2.613528,-1.306764 2.613528,-1.306764 l 0.8984,-3.675274 c 1.79843,-1.163919 3.021892,-3.170418 3.021892,-5.472075 0,-3.6085294 -2.925291,-6.5338203 -6.53382,-6.5338203 z" + style="fill:none;stroke:#dfd8c8;stroke-width:1.96014606999999996;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;opacity:0.4" + id="path4672-2" /> + </g> + </g> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)" /> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Ebene" + style="display:inline" /> +</svg> diff --git a/data/icons/ubuntu-mono-dark/scalable/apps/redshift.svg b/data/icons/ubuntu-mono-dark/scalable/apps/redshift.svg new file mode 100644 index 0000000..86ac824 --- /dev/null +++ b/data/icons/ubuntu-mono-dark/scalable/apps/redshift.svg @@ -0,0 +1,460 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2837" + version="1.1" + inkscape:version="0.47 r22583" + sodipodi:docname="redshift-dark-5.svg" + inkscape:export-filename="/home/joern/Desktop/redshiftIconlight.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs2839"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective2845" /> + <inkscape:perspective + id="perspective7076" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7164" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7202" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-2" + id="radialGradient7192-2" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-2"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-4" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-9" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-4" + id="radialGradient7192-4" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-4"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-8" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-7" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-5" + id="radialGradient7192-1" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-5"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-5" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-4" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-90" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-9" + id="radialGradient7192-8" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-9"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-88" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-1" /> + </linearGradient> + <inkscape:perspective + id="perspective7369" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-8" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-5" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-51" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-93" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-84" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7667" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7691" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7757" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7782" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-28" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7883" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2901" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2950" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2921" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective3058" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2916" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2882" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective2904" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="-2.4433352" + inkscape:cy="11.54906" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + showguides="false" + inkscape:guide-bbox="true" + inkscape:window-width="955" + inkscape:window-height="801" + inkscape:window-x="174" + inkscape:window-y="71" + inkscape:window-maximized="0" + inkscape:snap-global="false"> + <sodipodi:guide + position="0,0" + orientation="0,24" + id="guide2847" /> + <sodipodi:guide + position="24,0" + orientation="-24,0" + id="guide2849" /> + <sodipodi:guide + position="24,24" + orientation="0,-24" + id="guide2851" /> + <sodipodi:guide + position="0,24" + orientation="24,0" + id="guide2853" /> + <inkscape:grid + type="xygrid" + id="grid7095" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="-4.6845824,12.020815" + id="guide7849" /> + <sodipodi:guide + orientation="0,1" + position="-5.08233,17.987029" + id="guide7867" /> + <sodipodi:guide + orientation="1,0" + position="6.0104077,18.870912" + id="guide7869" /> + <sodipodi:guide + orientation="1,0" + position="17.987029,20.019961" + id="guide7871" /> + <sodipodi:guide + orientation="0,1" + position="9.1923882,6.0104077" + id="guide7873" /> + </sodipodi:namedview> + <metadata + id="metadata2842"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ebene#1" + style="display:inline"> + <path + id="path4672-2-2" + style="fill:none;stroke:#000000;stroke-width:3.7;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;opacity:0.59999999999999998" + d="m 11.901568,3.515032 c -3.6085296,0 -6.5338204,2.925291 -6.5338204,6.533821 0,2.308483 1.0115514,4.239217 3.021892,5.512911 0.9197379,0.58272 2.3031584,0.94774 3.4545534,0.951673 1.249176,0.0043 2.539034,-0.235058 3.569303,-0.99251 1.631571,-1.199528 3.021893,-3.170417 3.021893,-5.472074 0,-3.60853 -2.925291,-6.533821 -6.533821,-6.533821 z m 0,-1e-7 c -3.6085297,0 -6.5338204,2.9252909 -6.5338204,6.5338201 0,2.308484 1.2145131,4.350661 3.021892,5.512912 l 0.8984002,3.634437 c 0,0 0,1.306764 2.6135282,1.306764 2.613528,0 2.613528,-1.306764 2.613528,-1.306764 l 0.8984,-3.675274 c 1.79843,-1.163919 3.021892,-3.170418 3.021892,-5.472075 0,-3.6085292 -2.925291,-6.5338201 -6.53382,-6.5338201 z" /> + <g + id="g4255" + transform="matrix(0.98314262,0,0,0.98314262,0.05987544,0.20244021)"> + <g + id="g4252" /> + <path + style="fill:none;stroke:#dfd8c8;stroke-width:1.99375558;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path4672" + d="m 12.044735,3.3693906 c -3.6704028,0 -6.6458518,2.9754492 -6.6458518,6.6458524 0,2.348066 1.2353376,4.425259 3.0737066,5.607438 l 0.9138046,3.696755 c 0,0 0,1.32917 2.6583406,1.32917 2.658341,0 2.658341,-1.32917 2.658341,-1.32917 l 0.913804,-3.738292 c 1.829267,-1.183876 3.073707,-3.224779 3.073707,-5.565901 0,-3.6704032 -2.975449,-6.6458524 -6.645852,-6.6458524 z" /> + </g> + <path + style="fill:none;stroke:#dfd8c8;stroke-width:1.96014607;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + id="path4672-2" + d="m 11.901568,3.515032 c -3.6085296,0 -6.5338204,2.925291 -6.5338204,6.533821 0,2.308483 1.0115514,4.239217 3.021892,5.512911 0.9197379,0.58272 2.3031584,0.94774 3.4545534,0.951673 1.249176,0.0043 2.539034,-0.235058 3.569303,-0.99251 1.631571,-1.199528 3.021893,-3.170417 3.021893,-5.472074 0,-3.60853 -2.925291,-6.533821 -6.533821,-6.533821 z" + sodipodi:nodetypes="csssssc" /> + </g> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)" /> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Ebene" + style="display:inline" /> +</svg> diff --git a/data/icons/ubuntu-mono-light/scalable/apps/redshift-idle.svg b/data/icons/ubuntu-mono-light/scalable/apps/redshift-idle.svg new file mode 100644 index 0000000..737fd64 --- /dev/null +++ b/data/icons/ubuntu-mono-light/scalable/apps/redshift-idle.svg @@ -0,0 +1,525 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2837" + version="1.1" + inkscape:version="0.47 r22583" + sodipodi:docname="redshiftIconlight.svg" + inkscape:export-filename="/home/joern/Desktop/redshiftIconlight.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs2839"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective2845" /> + <inkscape:perspective + id="perspective7076" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7164" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7202" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-2" + id="radialGradient7192-2" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-2"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-4" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-9" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-4" + id="radialGradient7192-4" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-4"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-8" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-7" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-5" + id="radialGradient7192-1" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-5"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-5" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-4" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-90" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-9" + id="radialGradient7192-8" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-9"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-88" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-1" /> + </linearGradient> + <inkscape:perspective + id="perspective7369" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-8" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-5" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-51" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-93" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-84" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7667" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7691" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7757" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7782" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-28" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7883" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="49.496586" + inkscape:cy="1.9672137" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + showguides="false" + inkscape:guide-bbox="true" + inkscape:window-width="1440" + inkscape:window-height="848" + inkscape:window-x="0" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-global="false"> + <sodipodi:guide + position="0,0" + orientation="0,24" + id="guide2847" /> + <sodipodi:guide + position="24,0" + orientation="-24,0" + id="guide2849" /> + <sodipodi:guide + position="24,24" + orientation="0,-24" + id="guide2851" /> + <sodipodi:guide + position="0,24" + orientation="24,0" + id="guide2853" /> + <inkscape:grid + type="xygrid" + id="grid7095" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="-4.6845824,12.020815" + id="guide7849" /> + <sodipodi:guide + orientation="0,1" + position="-5.08233,17.987029" + id="guide7867" /> + <sodipodi:guide + orientation="1,0" + position="6.0104077,18.870912" + id="guide7869" /> + <sodipodi:guide + orientation="1,0" + position="17.987029,20.019961" + id="guide7871" /> + <sodipodi:guide + orientation="0,1" + position="9.1923882,6.0104077" + id="guide7873" /> + </sodipodi:namedview> + <metadata + id="metadata2842"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)" /> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Ebene" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ebene#1" + style="display:inline"> + <path + style="opacity:0.6;fill:#eae3d0;fill-opacity:1;stroke:#eae3d0;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 11.510863,1.2668107 c -0.212123,0 -0.306981,0.1387472 -0.345273,0.2014092 -0.03829,0.062662 -0.04233,0.1226004 -0.05754,0.1726365 -0.03043,0.100072 -0.06871,0.2142696 -0.08632,0.345273 -0.03522,0.2620066 -0.05755,0.5978084 -0.05755,0.9782734 0,0.380465 0.02233,0.7162668 0.05755,0.9782734 0.0176,0.1310034 0.05589,0.245201 0.08632,0.345273 0.01521,0.050036 0.01925,0.1099745 0.05754,0.1726365 0.03829,0.062662 0.13315,0.2014092 0.345273,0.2014092 l 0.633001,0 0.460364,0 c 0.212123,0 0.306981,-0.1387472 0.345273,-0.2014092 0.03829,-0.062662 0.04233,-0.1226004 0.05755,-0.1726365 0.03043,-0.100072 0.06871,-0.2142696 0.08632,-0.345273 0.03522,-0.2620066 0.05755,-0.5978084 0.05755,-0.9782734 0,-0.380465 -0.02233,-0.7162668 -0.05755,-0.9782734 -0.01761,-0.1310034 -0.05589,-0.245201 -0.08632,-0.345273 -0.01522,-0.050036 -0.01925,-0.1099745 -0.05755,-0.1726365 -0.03829,-0.062662 -0.13315,-0.2014092 -0.345273,-0.2014092 l -1.093365,0 z m 0.633001,3.3951842 c -1.875109,0 -3.5762342,0.7565046 -4.8050492,1.9853197 -1.1007691,1.1007691 -1.8174891,2.5858504 -1.9565469,4.2295944 -0.027501,-0.03353 -0.065131,-0.07337 -0.086318,-0.08632 -0.062662,-0.03829 -0.1226005,-0.04233 -0.1726365,-0.05754 -0.100072,-0.03043 -0.2142696,-0.06871 -0.345273,-0.08632 -0.2620067,-0.03522 -0.5978084,-0.05755 -0.9782734,-0.05755 -0.3804651,0 -0.7162668,0.02233 -0.9782735,0.05755 -0.1310033,0.0176 -0.2452009,0.05589 -0.3452729,0.08632 -0.050036,0.01521 -0.1099745,0.01925 -0.1726365,0.05754 -0.062662,0.03829 -0.2014093,0.13315 -0.2014093,0.345273 l 0,1.093365 c 0,0.212123 0.1387473,0.306981 0.2014093,0.345273 0.062662,0.03829 0.1226004,0.04233 0.1726365,0.05755 0.100072,0.03043 0.2142696,0.06871 0.3452729,0.08632 0.2620067,0.03522 0.5978084,0.05755 0.9782735,0.05755 0.380465,0 0.7162667,-0.02233 0.9782734,-0.05755 0.1310034,-0.0176 0.245201,-0.05589 0.345273,-0.08632 0.050036,-0.01521 0.1099745,-0.01925 0.1726365,-0.05755 0.034213,-0.02091 0.098481,-0.05373 0.1438637,-0.115091 0.051534,0.346746 0.1283003,0.679486 0.230182,1.007046 0.015206,0.04889 0.041272,0.09545 0.057545,0.143864 0.01823,0.05826 0.037764,0.115059 0.057545,0.172636 0.03808,0.104002 0.07214,0.214951 0.115091,0.3165 0.015829,0.03944 0.040985,0.07601 0.057546,0.115091 0.071497,0.160061 0.118173,0.30714 0.2014092,0.460364 0.015919,0.03078 0.041161,0.05582 0.057545,0.08632 0.09074,0.161237 0.1845422,0.336402 0.2877275,0.489136 0.00725,0.0111 0.021465,0.01771 0.028773,0.02877 0.019407,0.02837 0.037722,0.05826 0.057545,0.08632 0.2210746,0.323613 0.4748727,0.610999 0.7480914,0.891955 1.26202,1.29776 3.0801933,2.504184 5.0533333,2.504184 1.598657,0 3.036377,-0.912679 4.211492,-1.813638 -0.149994,0.149994 -0.132324,0.302661 -0.115091,0.374046 0.01724,0.07138 0.0617,0.126497 0.08632,0.172637 0.04924,0.09228 0.121227,0.182643 0.201409,0.287727 0.160366,0.210167 0.363971,0.479062 0.633001,0.748092 0.269029,0.269029 0.537924,0.501407 0.748091,0.661773 0.105085,0.08019 0.195449,0.123391 0.287728,0.172636 0.04614,0.02462 0.101251,0.06908 0.172636,0.08632 0.07138,0.01724 0.224052,0.0349 0.374046,-0.115091 l 0.776864,-0.776864 c 0.149994,-0.149994 0.132323,-0.30266 0.115091,-0.374045 -0.01724,-0.07138 -0.0617,-0.126497 -0.08632,-0.172637 -0.04924,-0.09228 -0.09245,-0.182643 -0.172637,-0.287727 -0.160366,-0.210168 -0.392744,-0.479063 -0.661773,-0.748092 -0.269029,-0.269029 -0.537924,-0.472634 -0.748091,-0.633 -0.105085,-0.08019 -0.19545,-0.152164 -0.287728,-0.20141 -0.04614,-0.02462 -0.101251,-0.06908 -0.172636,-0.08632 -0.04934,-0.01191 -0.12721,-0.01046 -0.230182,0.02877 0.133815,-0.147968 0.253808,-0.301818 0.374045,-0.460364 0.09057,-0.148931 0.07867,-0.351384 -0.02877,-0.489137 0.492324,-0.761973 0.794943,-1.629932 0.9495,-2.560774 0.01963,0.0045 0.04003,0.02345 0.05755,0.02877 0.100072,0.03043 0.21427,0.06871 0.345273,0.08632 0.262007,0.03522 0.597808,0.05755 0.978273,0.05755 0.380465,0 0.716267,-0.02233 0.978274,-0.05755 0.131003,-0.0176 0.245201,-0.05589 0.345273,-0.08632 0.05003,-0.01521 0.109974,-0.01925 0.172636,-0.05754 0.06266,-0.03829 0.201409,-0.13315 0.201409,-0.345273 l 0,-1.093364 c 0,-0.212123 -0.138747,-0.306981 -0.201409,-0.345273 -0.06266,-0.03829 -0.1226,-0.04234 -0.172636,-0.05755 -0.100072,-0.03043 -0.21427,-0.06871 -0.345273,-0.08632 -0.262007,-0.03522 -0.597809,-0.05755 -0.978274,-0.05755 -0.380465,0 -0.716266,0.02233 -0.978273,0.05755 -0.120729,0.01622 -0.22222,0.0573 -0.3165,0.08632 -0.138617,-1.2620594 -0.647596,-2.4093405 -1.381092,-3.3664115 0.06584,0.012178 0.10817,0.00862 0.143863,0 0.07138,-0.017232 0.126497,-0.061696 0.172637,-0.086318 0.09228,-0.049245 0.182643,-0.092454 0.287727,-0.1726365 0.210168,-0.1603659 0.479062,-0.3927438 0.748092,-0.6617732 0.269029,-0.2690295 0.472634,-0.537924 0.633,-0.7480915 0.08019,-0.1050841 0.152164,-0.1954493 0.201409,-0.2877275 0.02462,-0.04614 0.04031,-0.1012511 0.05755,-0.1726364 0.01724,-0.071385 0.06368,-0.2240523 -0.08632,-0.3740458 L 18.90546,4.0577672 c -0.149994,-0.1499935 -0.302661,-0.132323 -0.374046,-0.115091 -0.07138,0.017232 -0.126497,0.061696 -0.172637,0.086318 -0.09228,0.049245 -0.211415,0.1212266 -0.3165,0.2014092 -0.210167,0.1603659 -0.450289,0.363971 -0.719319,0.6330005 -0.269029,0.2690294 -0.501407,0.5379239 -0.661773,0.7480914 -0.08019,0.1050842 -0.123391,0.1954493 -0.172636,0.2877275 -0.02462,0.046139 -0.06908,0.1012512 -0.08632,0.1726365 -0.0052,0.021415 7.1e-4,0.052539 0,0.086318 C 16.162841,5.9653055 15.889871,5.7997031 15.625366,5.6402684 14.603179,5.0241285 13.424384,4.6619949 12.143864,4.6619949 z M 7.3388148,6.6473146 7.540224,6.4171326 C 7.6902175,6.2671391 7.6437744,6.1144722 7.6265423,6.0430868 7.6093102,5.9717015 7.5648462,5.9165899 7.540224,5.8704504 7.4909791,5.7781722 7.4477702,5.687807 7.3675876,5.5827229 7.2072217,5.3725554 6.9748438,5.1036609 6.7058143,4.8346314 6.4367849,4.565602 6.1966631,4.3619968 5.9864956,4.201631 5.8814115,4.1214484 5.7622736,4.0494667 5.6699954,4.0002217 5.6238559,3.9755995 5.597517,3.9311356 5.5261317,3.9139035 c -0.035693,-0.00862 -0.1036682,-0.00884 -0.1726365,0 -0.068968,0.00884 -0.1551852,0.040094 -0.230182,0.115091 L 4.346449,4.8058587 C 4.1964555,4.9558522 4.2428987,5.1085191 4.260131,5.1799044 c 0.017232,0.071385 0.061696,0.126497 0.086318,0.1726365 0.049245,0.092278 0.092454,0.2114161 0.1726365,0.3165002 0.1603658,0.2101675 0.3927438,0.4502893 0.6617732,0.7193187 0.2690294,0.2690295 0.5091512,0.5014074 0.7193187,0.6617732 0.1050841,0.080183 0.224222,0.1233916 0.3165002,0.1726365 0.04614,0.024622 0.072479,0.069086 0.1438638,0.086318 0.071385,0.017232 0.252825,0.034903 0.4028184,-0.115091 L 7.3388148,6.6473146 z M 6.4756324,16.02723 c -0.071385,0.01724 -0.126497,0.0617 -0.1726365,0.08632 -0.092278,0.04925 -0.2114161,0.121226 -0.3165003,0.201409 -0.2101674,0.160366 -0.4502892,0.363971 -0.7193187,0.633 -0.2690294,0.26903 -0.5014073,0.537925 -0.6617732,0.748092 -0.080183,0.105084 -0.1233915,0.195449 -0.1726365,0.287727 -0.024622,0.04614 -0.069086,0.101252 -0.086318,0.172637 -0.017232,0.07138 -0.034903,0.224052 0.115091,0.374046 l 0.7480914,0.776864 c 0.1499935,0.149994 0.3314332,0.132323 0.4028185,0.115091 0.071385,-0.01724 0.126497,-0.0617 0.1726365,-0.08632 0.092278,-0.04924 0.1826433,-0.09245 0.2877275,-0.172636 0.2101675,-0.160366 0.479062,-0.392744 0.7480914,-0.661773 0.2690295,-0.26903 0.4726346,-0.509152 0.6330005,-0.719319 0.080182,-0.105084 0.1521643,-0.224222 0.2014092,-0.3165 0.024622,-0.04614 0.040313,-0.101252 0.057545,-0.172637 0.017232,-0.07138 0.063676,-0.224051 -0.086318,-0.374045 L 6.8496781,16.142321 C 6.6996846,15.992327 6.5470177,16.009998 6.4756324,16.02723 z m 2.5039806,1.98265 c 0,2.854452 -0.04866,3.55799 0.670352,4.24065 0.788942,0.749054 4.90207,0.771827 5.669586,-7.61e-4 0.750879,-0.755841 0.4737,-2.476062 0.4737,-4.25723 l -6.813638,0.01734 z" + id="path7926" + sodipodi:nodetypes="cssssssscccssssssscccscsssssssccssssssscsssssssssssscsssssssccsssssssssccssssssccsssssccsssssssccssssssssscccssssssssccssssssscccssssssccsssssssccccsscc" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657" + width="2.6470928" + height="1.4386374" + x="2.4762204" + y="10.973947" + rx="3.3423133" + ry="0.17260009" /> + <path + style="fill:#3a3935;fill-opacity:1;stroke:none" + d="m 12.356893,5.2190517 c -3.5109807,0 -6.3543456,2.8711131 -6.3543456,6.3820933 0,3.510981 2.8433649,6.354346 6.3543456,6.354346 2.091831,0 4.451587,-1.515552 5.194062,-2.801557 0,0 -1.511326,-0.879634 -1.558261,-3.750072 3e-6,-2.0257978 1.313096,-3.3782058 1.311203,-3.3749278 C 15.435977,5.602336 13.445296,5.2190517 12.356893,5.2190517 z" + id="path7356" + sodipodi:nodetypes="csscccc" /> + <path + transform="matrix(0.80552866,-0.05090045,0.33309036,1.1343219,-1.4163082,-1.6701199)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-5" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.2317115,-0.03569794,0.06301311,0.4090114,5.381261,7.964564)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-2" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.07560196,-0.03056249,0.06655832,0.16464426,9.5398059,11.647215)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-8" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.34805141,-0.5199518,0.59727893,0.22716849,-0.304213,7.8949168)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-4" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(-0.44099836,1.4339535,-1.0763276,-0.24400487,28.714594,2.6361874)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-56" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0" + width="2.6470928" + height="1.4386374" + x="6.8505774" + y="-0.95078588" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0-4" + width="2.6470928" + height="1.4386374" + x="1.6418734" + y="-12.791093" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0-6" + width="2.6470928" + height="1.4386374" + x="7.481966" + y="16.063971" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0-0" + width="2.6470928" + height="1.4386374" + x="18.88641" + y="10.946954" + rx="3.3423133" + ry="0.17260009" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0-8" + width="2.6470928" + height="1.4386374" + x="-26.738235" + y="-0.41279015" + rx="3.3423133" + ry="0.17260009" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + <path + style="fill:#3a3935;fill-opacity:1;stroke:none" + d="m 9.6829134,20.753986 c 0,-0.733245 -0.09979,-2.494693 -0.00418,-2.494693 0,0 1.3184246,0.665411 2.8116726,0.662912 1.332012,-0.0023 2.723282,-0.662912 2.723282,-0.662912 0.09562,0 0.04002,1.916127 0.04002,2.649372 0,0.733244 -0.717466,1.039968 -1.255358,1.323546 -0.472012,0.248847 -1.047234,0.26394 -1.580706,0.252681 -0.533175,-0.01125 -1.110463,-0.0446 -1.567761,-0.318972 -0.52358,-0.31414 -1.1669709,-0.67869 -1.1669709,-1.411934 z" + id="rect7657-0-4-8" + sodipodi:nodetypes="ccscsaaac" /> + <rect + style="fill:#3a3935;fill-opacity:1;stroke:none" + id="rect7657-0-6-9" + width="2.6470928" + height="1.4386374" + x="6.9439716" + y="-17.524841" + rx="3.3423133" + ry="0.17260009" + transform="matrix(-0.70710678,0.70710678,-0.70710678,-0.70710678,0,0)" /> + </g> +</svg> diff --git a/data/icons/ubuntu-mono-light/scalable/apps/redshift.svg b/data/icons/ubuntu-mono-light/scalable/apps/redshift.svg new file mode 100644 index 0000000..2ea5d42 --- /dev/null +++ b/data/icons/ubuntu-mono-light/scalable/apps/redshift.svg @@ -0,0 +1,635 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2837" + version="1.1" + inkscape:version="0.47 r22583" + sodipodi:docname="redshift.svg" + inkscape:export-filename="/home/joern/Desktop/redshiftIconlight.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs2839"> + <linearGradient + id="linearGradient3652"> + <stop + style="stop-color:#dc0000;stop-opacity:1;" + offset="0" + id="stop3654" /> + <stop + style="stop-color:#dc4300;stop-opacity:1;" + offset="1" + id="stop3656" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective2845" /> + <inkscape:perspective + id="perspective7076" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7107-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7164" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7202" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-2" + id="radialGradient7192-2" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-2"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-4" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-9" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-4" + id="radialGradient7192-4" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-4"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-8" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-7" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-5" + id="radialGradient7192-1" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-5"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-5" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-4" /> + </linearGradient> + <inkscape:perspective + id="perspective7202-90" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7186-9" + id="radialGradient7192-8" + cx="4.0879612" + cy="15.890368" + fx="4.6574459" + fy="16.146029" + r="0.66291261" + gradientTransform="matrix(2.8333333,0.9,-0.43392852,1.3660713,-0.59931111,-9.4961718)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7186-9"> + <stop + style="stop-color:#eae3d0;stop-opacity:0.38275862" + offset="0" + id="stop7188-88" /> + <stop + style="stop-color:#eae3d0;stop-opacity:0;" + offset="1" + id="stop7190-1" /> + </linearGradient> + <inkscape:perspective + id="perspective7369" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-8" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-5" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-51" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-9" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-93" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7369-84" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7667" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7691" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7757" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7782" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7810-28" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective7883" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3658" + cx="11.776751" + cy="11.587271" + fx="11.776751" + fy="11.587271" + r="5.7742038" + gradientTransform="matrix(1,0,0,1.1028741,0,-1.1920298)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3662" + cx="-25.414688" + cy="0.30652854" + fx="-25.414688" + fy="0.30652854" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,0.13993694)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3664" + cx="20.209955" + cy="11.666272" + fx="20.209955" + fy="11.666272" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,5.3259071)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3666" + cx="8.8055124" + cy="16.783289" + fx="8.8055124" + fy="16.783289" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,7.6619366)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3668" + cx="2.9654198" + cy="-12.071774" + fx="2.9654198" + fy="-12.071774" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,-5.5110275)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3670" + cx="8.1741238" + cy="-0.23146719" + fx="8.1741238" + fy="-0.23146719" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,-0.10566981)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3672" + cx="3.7997668" + cy="11.693265" + fx="3.7997668" + fy="11.693265" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,5.3382299)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3674" + cx="8.267518" + cy="-16.805523" + fx="8.267518" + fy="-16.805523" + r="1.3235464" + gradientTransform="matrix(1,0,0,0.54347825,0,-7.6720866)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3652" + id="radialGradient3676" + cx="12.453539" + cy="20.373398" + fx="12.453539" + fy="20.373398" + r="2.816242" + gradientTransform="matrix(1,0,0,0.75068297,0,5.079435)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="4.5713314" + inkscape:cy="2.7216751" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + showguides="false" + inkscape:guide-bbox="true" + inkscape:window-width="1440" + inkscape:window-height="848" + inkscape:window-x="0" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-global="false"> + <sodipodi:guide + position="0,0" + orientation="0,24" + id="guide2847" /> + <sodipodi:guide + position="24,0" + orientation="-24,0" + id="guide2849" /> + <sodipodi:guide + position="24,24" + orientation="0,-24" + id="guide2851" /> + <sodipodi:guide + position="0,24" + orientation="24,0" + id="guide2853" /> + <inkscape:grid + type="xygrid" + id="grid7095" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="-4.6845824,12.020815" + id="guide7849" /> + <sodipodi:guide + orientation="0,1" + position="-5.08233,17.987029" + id="guide7867" /> + <sodipodi:guide + orientation="1,0" + position="6.0104077,18.870912" + id="guide7869" /> + <sodipodi:guide + orientation="1,0" + position="17.987029,20.019961" + id="guide7871" /> + <sodipodi:guide + orientation="0,1" + position="9.1923882,6.0104077" + id="guide7873" /> + </sodipodi:namedview> + <metadata + id="metadata2842"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)" /> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Ebene" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ebene#1" + style="display:inline"> + <path + style="opacity:0.6;fill:#eae3d0;fill-opacity:1;stroke:#eae3d0;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m 11.510863,1.2668107 c -0.212123,0 -0.306981,0.1387472 -0.345273,0.2014092 -0.03829,0.062662 -0.04233,0.1226004 -0.05754,0.1726365 -0.03043,0.100072 -0.06871,0.2142696 -0.08632,0.345273 -0.03522,0.2620066 -0.05755,0.5978084 -0.05755,0.9782734 0,0.380465 0.02233,0.7162668 0.05755,0.9782734 0.0176,0.1310034 0.05589,0.245201 0.08632,0.345273 0.01521,0.050036 0.01925,0.1099745 0.05754,0.1726365 0.03829,0.062662 0.13315,0.2014092 0.345273,0.2014092 l 0.633001,0 0.460364,0 c 0.212123,0 0.306981,-0.1387472 0.345273,-0.2014092 0.03829,-0.062662 0.04233,-0.1226004 0.05755,-0.1726365 0.03043,-0.100072 0.06871,-0.2142696 0.08632,-0.345273 0.03522,-0.2620066 0.05755,-0.5978084 0.05755,-0.9782734 0,-0.380465 -0.02233,-0.7162668 -0.05755,-0.9782734 -0.01761,-0.1310034 -0.05589,-0.245201 -0.08632,-0.345273 -0.01522,-0.050036 -0.01925,-0.1099745 -0.05755,-0.1726365 -0.03829,-0.062662 -0.13315,-0.2014092 -0.345273,-0.2014092 l -1.093365,0 z m 0.633001,3.3951842 c -1.875109,0 -3.5762342,0.7565046 -4.8050492,1.9853197 -1.1007691,1.1007691 -1.8174891,2.5858504 -1.9565469,4.2295944 -0.027501,-0.03353 -0.065131,-0.07337 -0.086318,-0.08632 -0.062662,-0.03829 -0.1226005,-0.04233 -0.1726365,-0.05754 -0.100072,-0.03043 -0.2142696,-0.06871 -0.345273,-0.08632 -0.2620067,-0.03522 -0.5978084,-0.05755 -0.9782734,-0.05755 -0.3804651,0 -0.7162668,0.02233 -0.9782735,0.05755 -0.1310033,0.0176 -0.2452009,0.05589 -0.3452729,0.08632 -0.050036,0.01521 -0.1099745,0.01925 -0.1726365,0.05754 -0.062662,0.03829 -0.2014093,0.13315 -0.2014093,0.345273 l 0,1.093365 c 0,0.212123 0.1387473,0.306981 0.2014093,0.345273 0.062662,0.03829 0.1226004,0.04233 0.1726365,0.05755 0.100072,0.03043 0.2142696,0.06871 0.3452729,0.08632 0.2620067,0.03522 0.5978084,0.05755 0.9782735,0.05755 0.380465,0 0.7162667,-0.02233 0.9782734,-0.05755 0.1310034,-0.0176 0.245201,-0.05589 0.345273,-0.08632 0.050036,-0.01521 0.1099745,-0.01925 0.1726365,-0.05755 0.034213,-0.02091 0.098481,-0.05373 0.1438637,-0.115091 0.051534,0.346746 0.1283003,0.679486 0.230182,1.007046 0.015206,0.04889 0.041272,0.09545 0.057545,0.143864 0.01823,0.05826 0.037764,0.115059 0.057545,0.172636 0.03808,0.104002 0.07214,0.214951 0.115091,0.3165 0.015829,0.03944 0.040985,0.07601 0.057546,0.115091 0.071497,0.160061 0.118173,0.30714 0.2014092,0.460364 0.015919,0.03078 0.041161,0.05582 0.057545,0.08632 0.09074,0.161237 0.1845422,0.336402 0.2877275,0.489136 0.00725,0.0111 0.021465,0.01771 0.028773,0.02877 0.019407,0.02837 0.037722,0.05826 0.057545,0.08632 0.2210746,0.323613 0.4748727,0.610999 0.7480914,0.891955 1.26202,1.29776 3.0801933,2.504184 5.0533333,2.504184 1.598657,0 3.036377,-0.912679 4.211492,-1.813638 -0.149994,0.149994 -0.132324,0.302661 -0.115091,0.374046 0.01724,0.07138 0.0617,0.126497 0.08632,0.172637 0.04924,0.09228 0.121227,0.182643 0.201409,0.287727 0.160366,0.210167 0.363971,0.479062 0.633001,0.748092 0.269029,0.269029 0.537924,0.501407 0.748091,0.661773 0.105085,0.08019 0.195449,0.123391 0.287728,0.172636 0.04614,0.02462 0.101251,0.06908 0.172636,0.08632 0.07138,0.01724 0.224052,0.0349 0.374046,-0.115091 l 0.776864,-0.776864 c 0.149994,-0.149994 0.132323,-0.30266 0.115091,-0.374045 -0.01724,-0.07138 -0.0617,-0.126497 -0.08632,-0.172637 -0.04924,-0.09228 -0.09245,-0.182643 -0.172637,-0.287727 -0.160366,-0.210168 -0.392744,-0.479063 -0.661773,-0.748092 -0.269029,-0.269029 -0.537924,-0.472634 -0.748091,-0.633 -0.105085,-0.08019 -0.19545,-0.152164 -0.287728,-0.20141 -0.04614,-0.02462 -0.101251,-0.06908 -0.172636,-0.08632 -0.04934,-0.01191 -0.12721,-0.01046 -0.230182,0.02877 0.133815,-0.147968 0.253808,-0.301818 0.374045,-0.460364 0.09057,-0.148931 0.07867,-0.351384 -0.02877,-0.489137 0.492324,-0.761973 0.794943,-1.629932 0.9495,-2.560774 0.01963,0.0045 0.04003,0.02345 0.05755,0.02877 0.100072,0.03043 0.21427,0.06871 0.345273,0.08632 0.262007,0.03522 0.597808,0.05755 0.978273,0.05755 0.380465,0 0.716267,-0.02233 0.978274,-0.05755 0.131003,-0.0176 0.245201,-0.05589 0.345273,-0.08632 0.05003,-0.01521 0.109974,-0.01925 0.172636,-0.05754 0.06266,-0.03829 0.201409,-0.13315 0.201409,-0.345273 l 0,-1.093364 c 0,-0.212123 -0.138747,-0.306981 -0.201409,-0.345273 -0.06266,-0.03829 -0.1226,-0.04234 -0.172636,-0.05755 -0.100072,-0.03043 -0.21427,-0.06871 -0.345273,-0.08632 -0.262007,-0.03522 -0.597809,-0.05755 -0.978274,-0.05755 -0.380465,0 -0.716266,0.02233 -0.978273,0.05755 -0.120729,0.01622 -0.22222,0.0573 -0.3165,0.08632 -0.138617,-1.2620594 -0.647596,-2.4093405 -1.381092,-3.3664115 0.06584,0.012178 0.10817,0.00862 0.143863,0 0.07138,-0.017232 0.126497,-0.061696 0.172637,-0.086318 0.09228,-0.049245 0.182643,-0.092454 0.287727,-0.1726365 0.210168,-0.1603659 0.479062,-0.3927438 0.748092,-0.6617732 0.269029,-0.2690295 0.472634,-0.537924 0.633,-0.7480915 0.08019,-0.1050841 0.152164,-0.1954493 0.201409,-0.2877275 0.02462,-0.04614 0.04031,-0.1012511 0.05755,-0.1726364 0.01724,-0.071385 0.06368,-0.2240523 -0.08632,-0.3740458 L 18.90546,4.0577672 c -0.149994,-0.1499935 -0.302661,-0.132323 -0.374046,-0.115091 -0.07138,0.017232 -0.126497,0.061696 -0.172637,0.086318 -0.09228,0.049245 -0.211415,0.1212266 -0.3165,0.2014092 -0.210167,0.1603659 -0.450289,0.363971 -0.719319,0.6330005 -0.269029,0.2690294 -0.501407,0.5379239 -0.661773,0.7480914 -0.08019,0.1050842 -0.123391,0.1954493 -0.172636,0.2877275 -0.02462,0.046139 -0.06908,0.1012512 -0.08632,0.1726365 -0.0052,0.021415 7.1e-4,0.052539 0,0.086318 C 16.162841,5.9653055 15.889871,5.7997031 15.625366,5.6402684 14.603179,5.0241285 13.424384,4.6619949 12.143864,4.6619949 z M 7.3388148,6.6473146 7.540224,6.4171326 C 7.6902175,6.2671391 7.6437744,6.1144722 7.6265423,6.0430868 7.6093102,5.9717015 7.5648462,5.9165899 7.540224,5.8704504 7.4909791,5.7781722 7.4477702,5.687807 7.3675876,5.5827229 7.2072217,5.3725554 6.9748438,5.1036609 6.7058143,4.8346314 6.4367849,4.565602 6.1966631,4.3619968 5.9864956,4.201631 5.8814115,4.1214484 5.7622736,4.0494667 5.6699954,4.0002217 5.6238559,3.9755995 5.597517,3.9311356 5.5261317,3.9139035 c -0.035693,-0.00862 -0.1036682,-0.00884 -0.1726365,0 -0.068968,0.00884 -0.1551852,0.040094 -0.230182,0.115091 L 4.346449,4.8058587 C 4.1964555,4.9558522 4.2428987,5.1085191 4.260131,5.1799044 c 0.017232,0.071385 0.061696,0.126497 0.086318,0.1726365 0.049245,0.092278 0.092454,0.2114161 0.1726365,0.3165002 0.1603658,0.2101675 0.3927438,0.4502893 0.6617732,0.7193187 0.2690294,0.2690295 0.5091512,0.5014074 0.7193187,0.6617732 0.1050841,0.080183 0.224222,0.1233916 0.3165002,0.1726365 0.04614,0.024622 0.072479,0.069086 0.1438638,0.086318 0.071385,0.017232 0.252825,0.034903 0.4028184,-0.115091 L 7.3388148,6.6473146 z M 6.4756324,16.02723 c -0.071385,0.01724 -0.126497,0.0617 -0.1726365,0.08632 -0.092278,0.04925 -0.2114161,0.121226 -0.3165003,0.201409 -0.2101674,0.160366 -0.4502892,0.363971 -0.7193187,0.633 -0.2690294,0.26903 -0.5014073,0.537925 -0.6617732,0.748092 -0.080183,0.105084 -0.1233915,0.195449 -0.1726365,0.287727 -0.024622,0.04614 -0.069086,0.101252 -0.086318,0.172637 -0.017232,0.07138 -0.034903,0.224052 0.115091,0.374046 l 0.7480914,0.776864 c 0.1499935,0.149994 0.3314332,0.132323 0.4028185,0.115091 0.071385,-0.01724 0.126497,-0.0617 0.1726365,-0.08632 0.092278,-0.04924 0.1826433,-0.09245 0.2877275,-0.172636 0.2101675,-0.160366 0.479062,-0.392744 0.7480914,-0.661773 0.2690295,-0.26903 0.4726346,-0.509152 0.6330005,-0.719319 0.080182,-0.105084 0.1521643,-0.224222 0.2014092,-0.3165 0.024622,-0.04614 0.040313,-0.101252 0.057545,-0.172637 0.017232,-0.07138 0.063676,-0.224051 -0.086318,-0.374045 L 6.8496781,16.142321 C 6.6996846,15.992327 6.5470177,16.009998 6.4756324,16.02723 z m 2.5039806,1.98265 c 0,2.854452 -0.04866,3.55799 0.670352,4.24065 0.788942,0.749054 4.90207,0.771827 5.669586,-7.61e-4 0.750879,-0.755841 0.4737,-2.476062 0.4737,-4.25723 l -6.813638,0.01734 z" + id="path7926" + sodipodi:nodetypes="cssssssscccssssssscccscsssssssccssssssscsssssssssssscsssssssccsssssssssccssssssccsssssccsssssssccssssssssscccssssssssccssssssscccssssssccsssssssccccsscc" /> + <rect + style="fill:url(#radialGradient3672);fill-opacity:1.0;stroke:none" + id="rect7657" + width="2.6470928" + height="1.4386374" + x="2.4762204" + y="10.973947" + rx="3.3423133" + ry="0.17260009" /> + <path + style="fill:url(#radialGradient3658);fill-opacity:1;stroke:none" + d="m 12.356893,5.2190517 c -3.5109807,0 -6.3543456,2.8711131 -6.3543456,6.3820933 0,3.510981 2.8433649,6.354346 6.3543456,6.354346 2.091831,0 4.451587,-1.515552 5.194062,-2.801557 0,0 -1.511326,-0.879634 -1.558261,-3.750072 3e-6,-2.0257978 1.313096,-3.3782058 1.311203,-3.3749278 C 15.435977,5.602336 13.445296,5.2190517 12.356893,5.2190517 z" + id="path7356" + sodipodi:nodetypes="csscccc" /> + <path + transform="matrix(0.80552866,-0.05090045,0.33309036,1.1343219,-1.4163082,-1.6701199)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-5" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.2317115,-0.03569794,0.06301311,0.4090114,5.381261,7.964564)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-2" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.07560196,-0.03056249,0.06655832,0.16464426,9.5398059,11.647215)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-8" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(0.34805141,-0.5199518,0.59727893,0.22716849,-0.304213,7.8949168)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-4" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <path + transform="matrix(-0.44099836,1.4339535,-1.0763276,-0.24400487,28.714594,2.6361874)" + sodipodi:type="arc" + style="fill:#eae3d0;fill-opacity:1;stroke:none" + id="path7359-56" + sodipodi:cx="7.65625" + sodipodi:cy="15.09375" + sodipodi:rx="1.53125" + sodipodi:ry="1.40625" + d="m 9.1875,15.09375 a 1.53125,1.40625 0 1 1 -3.0625,0 1.53125,1.40625 0 1 1 3.0625,0 z" /> + <rect + style="fill:url(#radialGradient3670);fill-opacity:1.0;stroke:none" + id="rect7657-0" + width="2.6470928" + height="1.4386374" + x="6.8505774" + y="-0.95078588" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" /> + <rect + style="fill:url(#radialGradient3668);fill-opacity:1.0;stroke:none" + id="rect7657-0-4" + width="2.6470928" + height="1.4386374" + x="1.6418734" + y="-12.791093" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + style="fill:url(#radialGradient3666);fill-opacity:1.0;stroke:none" + id="rect7657-0-6" + width="2.6470928" + height="1.4386374" + x="7.481966" + y="16.063971" + rx="3.3423133" + ry="0.17260009" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" /> + <rect + style="fill:url(#radialGradient3664);fill-opacity:1.0;stroke:none" + id="rect7657-0-0" + width="2.6470928" + height="1.4386374" + x="18.88641" + y="10.946954" + rx="3.3423133" + ry="0.17260009" /> + <rect + style="fill:url(#radialGradient3662);fill-opacity:1.0;stroke:none" + id="rect7657-0-8" + width="2.6470928" + height="1.4386374" + x="-26.738235" + y="-0.41279015" + rx="3.3423133" + ry="0.17260009" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + <path + style="fill:url(#radialGradient3676);fill-opacity:1.0;stroke:none" + d="m 9.6829134,20.753986 c 0,-0.733245 -0.09979,-2.494693 -0.00418,-2.494693 0,0 1.3184246,0.665411 2.8116726,0.662912 1.332012,-0.0023 2.723282,-0.662912 2.723282,-0.662912 0.09562,0 0.04002,1.916127 0.04002,2.649372 0,0.733244 -0.717466,1.039968 -1.255358,1.323546 -0.472012,0.248847 -1.047234,0.26394 -1.580706,0.252681 -0.533175,-0.01125 -1.110463,-0.0446 -1.567761,-0.318972 -0.52358,-0.31414 -1.1669709,-0.67869 -1.1669709,-1.411934 z" + id="rect7657-0-4-8" + sodipodi:nodetypes="ccscsaaac" /> + <rect + style="fill:url(#radialGradient3674);fill-opacity:1.0;stroke:none" + id="rect7657-0-6-9" + width="2.6470928" + height="1.4386374" + x="6.9439716" + y="-17.524841" + rx="3.3423133" + ry="0.17260009" + transform="matrix(-0.70710678,0.70710678,-0.70710678,-0.70710678,0,0)" /> + </g> +</svg> @@ -1,2 +1,2 @@ # List of available languages -cs da de es fi it pt_BR ru +cs da de es eu fi fr he it pt_BR ru zh_CN diff --git a/po/POTFILES.in b/po/POTFILES.in index 6bd7210..a46a9d4 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -10,4 +10,3 @@ src/location-gnome-clock.c src/location-manual.c src/gtk-redshift/statusicon.py -src/gtk-redshift/rsappindicator.py @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/redshift\n" -"POT-Creation-Date: 2010-06-13 22:39+0200\n" +"POT-Creation-Date: 2010-07-28 00:45+0200\n" "PO-Revision-Date: 2010-06-13 20:24+0000\n" "Last-Translator: clever_fox <clever_fox@seznam.cz>\n" "Language-Team: Czech <cs@li.org>\n" @@ -180,72 +180,84 @@ msgid "Malformed temperature argument.\n" msgstr "Neplatný argument teploty.\n" #: src/redshift.c:659 -msgid "Trying other provider...\n" +#, fuzzy +msgid "Trying next provider...\n" msgstr "Zkouší se jiný poskytovatel...\n" -#: src/redshift.c:671 +#: src/redshift.c:665 +#, fuzzy, c-format +msgid "Using provider `%s'.\n" +msgstr "Neznámý poskytovatel polohy `%s'.\n" + +#: src/redshift.c:673 msgid "No more location providers to try.\n" msgstr "Nejsou žádní další poskytovatelé polohy k vyzkoušení.\n" -#: src/redshift.c:685 +#: src/redshift.c:687 msgid "Unable to get location from provider.\n" msgstr "Nebylo možné získat polohu od poskytovatele.\n" #. TRANSLATORS: Append degree symbols if possible. -#: src/redshift.c:694 +#: src/redshift.c:696 #, c-format msgid "Location: %f, %f\n" msgstr "Poloha: %f, %f\n" -#: src/redshift.c:701 +#: src/redshift.c:703 #, c-format msgid "Latitude must be between %.1f and %.1f.\n" msgstr "Zeměpisná šířka musí být mezi %.1f a %.1f.\n" -#: src/redshift.c:710 +#: src/redshift.c:712 #, c-format msgid "Longitude must be between %.1f and %.1f.\n" msgstr "Zeměpisná délka musí být mezi %.1f a %.1f.\n" -#: src/redshift.c:719 src/redshift.c:727 +#: src/redshift.c:721 src/redshift.c:729 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Teplota musí být mezi %uK a %uK.\n" -#: src/redshift.c:737 +#: src/redshift.c:739 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Hodnota gamma musí být %.1f a %.1f.\n" -#: src/redshift.c:743 +#: src/redshift.c:745 #, c-format msgid "Gamma: %.3f, %.3f, %.3f\n" msgstr "Gamma: %.3f, %.3f, %.3f\n" -#: src/redshift.c:761 -msgid "Trying other method...\n" +#: src/redshift.c:763 +#, fuzzy +msgid "Trying next method...\n" msgstr "Zkouší se jiná metoda...\n" -#: src/redshift.c:771 +#: src/redshift.c:768 +#, fuzzy, c-format +msgid "Using method `%s'.\n" +msgstr "Neznámá metoda `%s'.\n" + +#: src/redshift.c:775 msgid "No more methods to try.\n" msgstr "Nejsou další metody k vyzkoušení.\n" -#: src/redshift.c:783 src/redshift.c:904 +#: src/redshift.c:787 src/redshift.c:908 msgid "Unable to read system time.\n" msgstr "Nebylo možné načíst systémový čas.\n" #. TRANSLATORS: Append degree symbol if possible. -#: src/redshift.c:792 +#: src/redshift.c:796 #, c-format msgid "Solar elevation: %f\n" msgstr "Solarní elevace: %f\n" -#: src/redshift.c:799 src/redshift.c:971 +#: src/redshift.c:803 src/redshift.c:975 #, c-format msgid "Color temperature: %uK\n" msgstr "Teplota barev: %uK\n" -#: src/redshift.c:804 src/redshift.c:815 src/redshift.c:979 +#: src/redshift.c:808 src/redshift.c:819 src/redshift.c:983 msgid "Temperature adjustment failed.\n" msgstr "Přizpůsobení barev selhalo.\n" @@ -352,28 +364,29 @@ msgstr "Není možné obnovit gamma ramp.\n" msgid "Unable to set gamma ramps.\n" msgstr "Není možné nastavit gamma ramp.\n" -#: src/location-gnome-clock.c:46 -msgid "Cannot list dirs in `/apps/panel/applets'.\n" +#: src/location-gnome-clock.c:47 +#, fuzzy +msgid "Cannot list GNOME panel applets.\n" msgstr "Není možné zobrazit adresáře v `/apps/panel/applets'.\n" -#: src/location-gnome-clock.c:78 +#: src/location-gnome-clock.c:81 msgid "No clock applet was found.\n" msgstr "Nebyl nalezen žádný applet hodin.\n" -#: src/location-gnome-clock.c:86 +#: src/location-gnome-clock.c:89 #, c-format msgid "Error reading city list: `%s'.\n" msgstr "Chyba při čtení seznamu měst: `%s'.\n" -#: src/location-gnome-clock.c:106 +#: src/location-gnome-clock.c:109 msgid "No city selected as current city.\n" msgstr "Není zvoleno současné město.\n" -#: src/location-gnome-clock.c:113 +#: src/location-gnome-clock.c:116 msgid "Location not specified for city.\n" msgstr "Tato lokace není ve městě definována.\n" -#: src/location-gnome-clock.c:140 +#: src/location-gnome-clock.c:143 msgid "Use the location as set in the GNOME Clock applet.\n" msgstr "" @@ -401,6 +414,10 @@ msgstr "Nevhodný argument.\n" msgid "Too many arguments.\n" msgstr "Příliš mnoho argumentů.\n" -#: src/gtk-redshift/statusicon.py:61 src/gtk-redshift/rsappindicator.py:70 +#: src/gtk-redshift/statusicon.py:92 msgid "Toggle" msgstr "Přepnout" + +#: src/gtk-redshift/statusicon.py:96 +msgid "Autostart" +msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/redshift\n" -"POT-Creation-Date: 2010-06-13 22:39+0200\n" +"POT-Creation-Date: 2010-07-28 00:45+0200\n" "PO-Revision-Date: 2010-06-13 20:24+0000\n" "Last-Translator: Ilari Oras <happo1472583@gmail.com>\n" "Language-Team: Finnish <fi@li.org>\n" @@ -178,72 +178,84 @@ msgid "Malformed temperature argument.\n" msgstr "Vääränmuotoinen värilämpötilan argumentti.\n" #: src/redshift.c:659 -msgid "Trying other provider...\n" +#, fuzzy +msgid "Trying next provider...\n" +msgstr "Yritetään toista metodia...\n" + +#: src/redshift.c:665 +#, c-format +msgid "Using provider `%s'.\n" msgstr "" -#: src/redshift.c:671 +#: src/redshift.c:673 msgid "No more location providers to try.\n" msgstr "" -#: src/redshift.c:685 +#: src/redshift.c:687 msgid "Unable to get location from provider.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: src/redshift.c:694 +#: src/redshift.c:696 #, c-format msgid "Location: %f, %f\n" msgstr "Sijainti: %f, %f\n" -#: src/redshift.c:701 +#: src/redshift.c:703 #, c-format msgid "Latitude must be between %.1f and %.1f.\n" msgstr "Leveyspiiri on asetettava väliltä %.1f - %.1f.\n" -#: src/redshift.c:710 +#: src/redshift.c:712 #, c-format msgid "Longitude must be between %.1f and %.1f.\n" msgstr "Pituuspiiri on asetettava väliltä %.1f - %.1f.\n" -#: src/redshift.c:719 src/redshift.c:727 +#: src/redshift.c:721 src/redshift.c:729 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "Värilämpötila on säädettävä väliltä %uK - %uK.\n" -#: src/redshift.c:737 +#: src/redshift.c:739 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "Gamman arvo on asetettava väliltä %.1f - %.1f.\n" -#: src/redshift.c:743 +#: src/redshift.c:745 #, c-format msgid "Gamma: %.3f, %.3f, %.3f\n" msgstr "Gamma: %.3f, %.3f, %.3f\n" -#: src/redshift.c:761 -msgid "Trying other method...\n" +#: src/redshift.c:763 +#, fuzzy +msgid "Trying next method...\n" msgstr "Yritetään toista metodia...\n" -#: src/redshift.c:771 +#: src/redshift.c:768 +#, fuzzy, c-format +msgid "Using method `%s'.\n" +msgstr "Tuntematon metodi `%s'.\n" + +#: src/redshift.c:775 msgid "No more methods to try.\n" msgstr "" -#: src/redshift.c:783 src/redshift.c:904 +#: src/redshift.c:787 src/redshift.c:908 msgid "Unable to read system time.\n" msgstr "" #. TRANSLATORS: Append degree symbol if possible. -#: src/redshift.c:792 +#: src/redshift.c:796 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: src/redshift.c:799 src/redshift.c:971 +#: src/redshift.c:803 src/redshift.c:975 #, c-format msgid "Color temperature: %uK\n" msgstr "Värilämpötila: %uK\n" -#: src/redshift.c:804 src/redshift.c:815 src/redshift.c:979 +#: src/redshift.c:808 src/redshift.c:819 src/redshift.c:983 msgid "Temperature adjustment failed.\n" msgstr "Värilämpötilan säätö epäonnistui.\n" @@ -350,28 +362,28 @@ msgstr "" msgid "Unable to set gamma ramps.\n" msgstr "" -#: src/location-gnome-clock.c:46 -msgid "Cannot list dirs in `/apps/panel/applets'.\n" +#: src/location-gnome-clock.c:47 +msgid "Cannot list GNOME panel applets.\n" msgstr "" -#: src/location-gnome-clock.c:78 +#: src/location-gnome-clock.c:81 msgid "No clock applet was found.\n" msgstr "" -#: src/location-gnome-clock.c:86 +#: src/location-gnome-clock.c:89 #, c-format msgid "Error reading city list: `%s'.\n" msgstr "" -#: src/location-gnome-clock.c:106 +#: src/location-gnome-clock.c:109 msgid "No city selected as current city.\n" msgstr "" -#: src/location-gnome-clock.c:113 +#: src/location-gnome-clock.c:116 msgid "Location not specified for city.\n" msgstr "" -#: src/location-gnome-clock.c:140 +#: src/location-gnome-clock.c:143 msgid "Use the location as set in the GNOME Clock applet.\n" msgstr "" @@ -399,6 +411,10 @@ msgstr "" msgid "Too many arguments.\n" msgstr "" -#: src/gtk-redshift/statusicon.py:61 src/gtk-redshift/rsappindicator.py:70 +#: src/gtk-redshift/statusicon.py:92 msgid "Toggle" msgstr "Kytke" + +#: src/gtk-redshift/statusicon.py:96 +msgid "Autostart" +msgstr "" diff --git a/po/gtk-redshift/cs.po b/po/gtk-redshift/cs.po deleted file mode 100644 index 79806eb..0000000 --- a/po/gtk-redshift/cs.po +++ /dev/null @@ -1,22 +0,0 @@ -# Czech translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-06-01 11:10+0000\n" -"Last-Translator: clever_fox <clever_fox@seznam.cz>\n" -"Language-Team: Czech <cs@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Přepnout" diff --git a/po/gtk-redshift/da.po b/po/gtk-redshift/da.po deleted file mode 100644 index fb8be1a..0000000 --- a/po/gtk-redshift/da.po +++ /dev/null @@ -1,22 +0,0 @@ -# Danish translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-02-02 11:34+0000\n" -"Last-Translator: Jon Lund Steffensen <Unknown>\n" -"Language-Team: Danish <da@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Slå til/fra" diff --git a/po/gtk-redshift/de.po b/po/gtk-redshift/de.po deleted file mode 100644 index 27c7971..0000000 --- a/po/gtk-redshift/de.po +++ /dev/null @@ -1,22 +0,0 @@ -# German translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-06-12 18:07+0000\n" -"Last-Translator: Jan-Christoph Borchardt <inquata@gmail.com>\n" -"Language-Team: German <de@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Umschalten" diff --git a/po/gtk-redshift/es.po b/po/gtk-redshift/es.po deleted file mode 100644 index 71c8a52..0000000 --- a/po/gtk-redshift/es.po +++ /dev/null @@ -1,22 +0,0 @@ -# Spanish translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-06-14 15:32+0000\n" -"Last-Translator: Fernando Ossandon <ferossan@gmail.com>\n" -"Language-Team: Spanish <es@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-15 03:38+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Cambiar" diff --git a/po/gtk-redshift/fi.po b/po/gtk-redshift/fi.po deleted file mode 100644 index 1c491c5..0000000 --- a/po/gtk-redshift/fi.po +++ /dev/null @@ -1,22 +0,0 @@ -# Finnish translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-05-23 20:18+0000\n" -"Last-Translator: Ilari Oras <happo1472583@gmail.com>\n" -"Language-Team: Finnish <fi@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Kytke" diff --git a/po/gtk-redshift/he.po b/po/gtk-redshift/he.po deleted file mode 100644 index f847e8f..0000000 --- a/po/gtk-redshift/he.po +++ /dev/null @@ -1,22 +0,0 @@ -# Hebrew translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-06-14 11:38+0000\n" -"Last-Translator: Ddorda <d.dorda@gmail.com>\n" -"Language-Team: Hebrew <he@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-15 03:38+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "הפיכת מצב" diff --git a/po/gtk-redshift/it.po b/po/gtk-redshift/it.po deleted file mode 100644 index 8a7ef56..0000000 --- a/po/gtk-redshift/it.po +++ /dev/null @@ -1,22 +0,0 @@ -# Italian translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-06-06 13:04+0000\n" -"Last-Translator: Francesco Marella <Unknown>\n" -"Language-Team: Italian <it@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Attiva/Disattiva" diff --git a/po/gtk-redshift/ru.po b/po/gtk-redshift/ru.po deleted file mode 100644 index ebcc0c9..0000000 --- a/po/gtk-redshift/ru.po +++ /dev/null @@ -1,22 +0,0 @@ -# Russian translation for redshift -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the redshift package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: redshift\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2010-02-01 22:16+0100\n" -"PO-Revision-Date: 2010-02-02 09:20+0000\n" -"Last-Translator: Gregory Petrosyan <gregory.petrosyan@gmail.com>\n" -"Language-Team: Russian <ru@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-06-14 03:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#: src/gtk-redshift/gtk-redshift:59 -msgid "Toggle" -msgstr "Включить / Выключить" diff --git a/po/pt_BR.po b/po/pt_BR.po index 3512e4b..84dee7e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: redshift\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/redshift\n" -"POT-Creation-Date: 2010-06-13 22:39+0200\n" +"POT-Creation-Date: 2010-07-28 00:45+0200\n" "PO-Revision-Date: 2010-06-13 20:24+0000\n" "Last-Translator: Jon Lund Steffensen <Unknown>\n" "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" @@ -172,72 +172,82 @@ msgid "Malformed temperature argument.\n" msgstr "" #: src/redshift.c:659 -msgid "Trying other provider...\n" +msgid "Trying next provider...\n" msgstr "" -#: src/redshift.c:671 +#: src/redshift.c:665 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "" + +#: src/redshift.c:673 msgid "No more location providers to try.\n" msgstr "" -#: src/redshift.c:685 +#: src/redshift.c:687 msgid "Unable to get location from provider.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: src/redshift.c:694 +#: src/redshift.c:696 #, c-format msgid "Location: %f, %f\n" msgstr "" -#: src/redshift.c:701 +#: src/redshift.c:703 #, c-format msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:710 +#: src/redshift.c:712 #, c-format msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:719 src/redshift.c:727 +#: src/redshift.c:721 src/redshift.c:729 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: src/redshift.c:737 +#: src/redshift.c:739 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:743 +#: src/redshift.c:745 #, c-format msgid "Gamma: %.3f, %.3f, %.3f\n" msgstr "" -#: src/redshift.c:761 -msgid "Trying other method...\n" +#: src/redshift.c:763 +msgid "Trying next method...\n" +msgstr "" + +#: src/redshift.c:768 +#, c-format +msgid "Using method `%s'.\n" msgstr "" -#: src/redshift.c:771 +#: src/redshift.c:775 msgid "No more methods to try.\n" msgstr "" -#: src/redshift.c:783 src/redshift.c:904 +#: src/redshift.c:787 src/redshift.c:908 msgid "Unable to read system time.\n" msgstr "" #. TRANSLATORS: Append degree symbol if possible. -#: src/redshift.c:792 +#: src/redshift.c:796 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: src/redshift.c:799 src/redshift.c:971 +#: src/redshift.c:803 src/redshift.c:975 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: src/redshift.c:804 src/redshift.c:815 src/redshift.c:979 +#: src/redshift.c:808 src/redshift.c:819 src/redshift.c:983 msgid "Temperature adjustment failed.\n" msgstr "" @@ -344,28 +354,28 @@ msgstr "" msgid "Unable to set gamma ramps.\n" msgstr "" -#: src/location-gnome-clock.c:46 -msgid "Cannot list dirs in `/apps/panel/applets'.\n" +#: src/location-gnome-clock.c:47 +msgid "Cannot list GNOME panel applets.\n" msgstr "" -#: src/location-gnome-clock.c:78 +#: src/location-gnome-clock.c:81 msgid "No clock applet was found.\n" msgstr "" -#: src/location-gnome-clock.c:86 +#: src/location-gnome-clock.c:89 #, c-format msgid "Error reading city list: `%s'.\n" msgstr "" -#: src/location-gnome-clock.c:106 +#: src/location-gnome-clock.c:109 msgid "No city selected as current city.\n" msgstr "" -#: src/location-gnome-clock.c:113 +#: src/location-gnome-clock.c:116 msgid "Location not specified for city.\n" msgstr "" -#: src/location-gnome-clock.c:140 +#: src/location-gnome-clock.c:143 msgid "Use the location as set in the GNOME Clock applet.\n" msgstr "" @@ -393,6 +403,10 @@ msgstr "" msgid "Too many arguments.\n" msgstr "" -#: src/gtk-redshift/statusicon.py:61 src/gtk-redshift/rsappindicator.py:70 +#: src/gtk-redshift/statusicon.py:92 msgid "Toggle" msgstr "" + +#: src/gtk-redshift/statusicon.py:96 +msgid "Autostart" +msgstr "" diff --git a/po/redshift.pot b/po/redshift.pot index 505d425..4b2e294 100644 --- a/po/redshift.pot +++ b/po/redshift.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: redshift 1.3\n" +"Project-Id-Version: redshift 1.4.1\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/redshift\n" -"POT-Creation-Date: 2010-06-13 21:58+0200\n" +"POT-Creation-Date: 2010-07-28 00:45+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -171,72 +171,82 @@ msgid "Malformed temperature argument.\n" msgstr "" #: src/redshift.c:659 -msgid "Trying other provider...\n" +msgid "Trying next provider...\n" msgstr "" -#: src/redshift.c:671 +#: src/redshift.c:665 +#, c-format +msgid "Using provider `%s'.\n" +msgstr "" + +#: src/redshift.c:673 msgid "No more location providers to try.\n" msgstr "" -#: src/redshift.c:685 +#: src/redshift.c:687 msgid "Unable to get location from provider.\n" msgstr "" #. TRANSLATORS: Append degree symbols if possible. -#: src/redshift.c:694 +#: src/redshift.c:696 #, c-format msgid "Location: %f, %f\n" msgstr "" -#: src/redshift.c:701 +#: src/redshift.c:703 #, c-format msgid "Latitude must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:710 +#: src/redshift.c:712 #, c-format msgid "Longitude must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:719 src/redshift.c:727 +#: src/redshift.c:721 src/redshift.c:729 #, c-format msgid "Temperature must be between %uK and %uK.\n" msgstr "" -#: src/redshift.c:737 +#: src/redshift.c:739 #, c-format msgid "Gamma value must be between %.1f and %.1f.\n" msgstr "" -#: src/redshift.c:743 +#: src/redshift.c:745 #, c-format msgid "Gamma: %.3f, %.3f, %.3f\n" msgstr "" -#: src/redshift.c:761 -msgid "Trying other method...\n" +#: src/redshift.c:763 +msgid "Trying next method...\n" +msgstr "" + +#: src/redshift.c:768 +#, c-format +msgid "Using method `%s'.\n" msgstr "" -#: src/redshift.c:771 +#: src/redshift.c:775 msgid "No more methods to try.\n" msgstr "" -#: src/redshift.c:783 src/redshift.c:904 +#: src/redshift.c:787 src/redshift.c:908 msgid "Unable to read system time.\n" msgstr "" #. TRANSLATORS: Append degree symbol if possible. -#: src/redshift.c:792 +#: src/redshift.c:796 #, c-format msgid "Solar elevation: %f\n" msgstr "" -#: src/redshift.c:799 src/redshift.c:971 +#: src/redshift.c:803 src/redshift.c:975 #, c-format msgid "Color temperature: %uK\n" msgstr "" -#: src/redshift.c:804 src/redshift.c:815 src/redshift.c:979 +#: src/redshift.c:808 src/redshift.c:819 src/redshift.c:983 msgid "Temperature adjustment failed.\n" msgstr "" @@ -343,28 +353,28 @@ msgstr "" msgid "Unable to set gamma ramps.\n" msgstr "" -#: src/location-gnome-clock.c:46 -msgid "Cannot list dirs in `/apps/panel/applets'.\n" +#: src/location-gnome-clock.c:47 +msgid "Cannot list GNOME panel applets.\n" msgstr "" -#: src/location-gnome-clock.c:78 +#: src/location-gnome-clock.c:81 msgid "No clock applet was found.\n" msgstr "" -#: src/location-gnome-clock.c:86 +#: src/location-gnome-clock.c:89 #, c-format msgid "Error reading city list: `%s'.\n" msgstr "" -#: src/location-gnome-clock.c:106 +#: src/location-gnome-clock.c:109 msgid "No city selected as current city.\n" msgstr "" -#: src/location-gnome-clock.c:113 +#: src/location-gnome-clock.c:116 msgid "Location not specified for city.\n" msgstr "" -#: src/location-gnome-clock.c:140 +#: src/location-gnome-clock.c:143 msgid "Use the location as set in the GNOME Clock applet.\n" msgstr "" @@ -392,6 +402,10 @@ msgstr "" msgid "Too many arguments.\n" msgstr "" -#: src/gtk-redshift/statusicon.py:61 src/gtk-redshift/rsappindicator.py:70 +#: src/gtk-redshift/statusicon.py:92 msgid "Toggle" msgstr "" + +#: src/gtk-redshift/statusicon.py:96 +msgid "Autostart" +msgstr "" diff --git a/src/Makefile.am b/src/Makefile.am index c07aea3..3d872ed 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,7 +9,7 @@ INCLUDES = -DLOCALEDIR=\"$(localedir)\" bin_PROGRAMS = redshift redshift_SOURCES = \ - redshift.c \ + redshift.c redshift.h \ colorramp.c colorramp.h \ solar.c solar.h \ systemtime.c systemtime.h \ diff --git a/src/colorramp.c b/src/colorramp.c index a154a9e..7241a8d 100644 --- a/src/colorramp.c +++ b/src/colorramp.c @@ -130,7 +130,7 @@ void colorramp_fill(uint16_t *gamma_r, uint16_t *gamma_g, uint16_t *gamma_b, int size, int temp, float gamma[3]) { - /* Calculate white point */ + /* Approximate white point */ float white_point[3]; float alpha = (temp % 100) / 100.0; int temp_index = ((temp - 1000) / 100)*3; diff --git a/src/gamma-randr.c b/src/gamma-randr.c index 66d5c48..be8bdd9 100644 --- a/src/gamma-randr.c +++ b/src/gamma-randr.c @@ -62,9 +62,12 @@ randr_init(randr_state_t *state) xcb_randr_query_version_reply_t *ver_reply = xcb_randr_query_version_reply(state->conn, ver_cookie, &error); - if (error) { + /* TODO What does it mean when both error and ver_reply is NULL? + Apparently, we have to check both to avoid seg faults. */ + if (error || ver_reply == NULL) { + int ec = (error != 0) ? error->error_code : -1; fprintf(stderr, _("`%s' returned error %d\n"), - "RANDR Query Version", error->error_code); + "RANDR Query Version", ec); xcb_disconnect(state->conn); return -1; } diff --git a/src/gtk-redshift/Makefile.am b/src/gtk-redshift/Makefile.am index ddeafd6..bb69459 100644 --- a/src/gtk-redshift/Makefile.am +++ b/src/gtk-redshift/Makefile.am @@ -1,38 +1,19 @@ -if ENABLE_STATUSICON -gui_module=statusicon +if ENABLE_GUI gtk_redshift_PYTHON = \ __init__.py \ + utils.py \ statusicon.py nodist_gtk_redshift_PYTHON = \ defs.py gtk_redshiftdir = $(pythondir)/gtk_redshift -bin_SCRIPTS = gtk-redshift +dist_bin_SCRIPTS = gtk-redshift endif -if ENABLE_APPINDICATOR -gui_module=rsappindicator -gtk_redshift_PYTHON = \ - __init__.py \ - rsappindicator.py -nodist_gtk_redshift_PYTHON = \ - defs.py -gtk_redshiftdir = $(pythondir)/gtk_redshift - -bin_SCRIPTS = gtk-redshift -endif - -EXTRA_DIST = gtk-redshift.in \ - defs.py.in - -CLEANFILES = defs.py \ - gtk-redshift - +EXTRA_DIST = defs.py.in +CLEANFILES = defs.py -# Main GUI script -gtk-redshift: gtk-redshift.in - sed -e "s|\@gui_module\@|$(gui_module)|g" $< > $@ # Local python definitions defs.py: defs.py.in diff --git a/src/gtk-redshift/__init__.py b/src/gtk-redshift/__init__.py index 51ab2ef..0e4f254 100644 --- a/src/gtk-redshift/__init__.py +++ b/src/gtk-redshift/__init__.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # __init__.py -- gtk-redshift package __init__ file # This file is part of Redshift. diff --git a/src/gtk-redshift/defs.py.in b/src/gtk-redshift/defs.py.in index d3ca5ed..026fefd 100644 --- a/src/gtk-redshift/defs.py.in +++ b/src/gtk-redshift/defs.py.in @@ -1,4 +1,3 @@ -#!/usr/bin/env python # defs.py -- GTK+ redshift local definitions # This file is part of Redshift. diff --git a/src/gtk-redshift/gtk-redshift.in b/src/gtk-redshift/gtk-redshift index 120e05c..56d940e 100644 --- a/src/gtk-redshift/gtk-redshift.in +++ b/src/gtk-redshift/gtk-redshift @@ -19,5 +19,5 @@ if __name__ == '__main__': - from gtk_redshift.@gui_module@ import run + from gtk_redshift.statusicon import run run() diff --git a/src/gtk-redshift/rsappindicator.py b/src/gtk-redshift/rsappindicator.py deleted file mode 100644 index 59fa725..0000000 --- a/src/gtk-redshift/rsappindicator.py +++ /dev/null @@ -1,99 +0,0 @@ -#!/usr/bin/env python -# rsappindicator.py -- Application Panel Indicator source -# This file is part of Redshift. - -# Redshift is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# Redshift is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with Redshift. If not, see <http://www.gnu.org/licenses/>. - -# Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> - - -import sys, os -import subprocess, signal -import gettext - -import pygtk -pygtk.require("2.0") - -import gtk, glib -try: - import appindicator -except ImportError as ie: - # No module named appindicator - sys.exit(str(ie)) - -import defs - - -def run(): - # Internationalisation - gettext.bindtextdomain('redshift', defs.LOCALEDIR) - gettext.textdomain('redshift') - _ = gettext.gettext - - # Start redshift with arguments from the command line - args = sys.argv[1:] - args.insert(0, os.path.join(defs.BINDIR, 'redshift')) - process = subprocess.Popen(args) - - try: - # Create status icon - indicator = appindicator.Indicator ("redshift", - "redshift", - appindicator.CATEGORY_APPLICATION_STATUS) - indicator.set_status (appindicator.STATUS_ACTIVE) - - def toggle_cb(widget, data=None): - if indicator.get_icon() == 'redshift': - indicator.set_icon('redshift-idle') - else: - indicator.set_icon('redshift') - process.send_signal(signal.SIGUSR1) - - def destroy_cb(widget, data=None): - gtk.main_quit() - return False - - # Create popup menu - status_menu = gtk.Menu() - - toggle_item = gtk.ImageMenuItem(_('Toggle')) - toggle_item.connect('activate', toggle_cb) - status_menu.append(toggle_item) - - quit_item = gtk.ImageMenuItem(gtk.STOCK_QUIT) - quit_item.connect('activate', destroy_cb) - status_menu.append(quit_item) - - status_menu.show_all() - - # Set the menu - indicator.set_menu(status_menu) - - def child_cb(pid, cond, data=None): - sys.exit(-1) - - # Add watch on child process - glib.child_watch_add(process.pid, child_cb) - - # Run main loop - gtk.main() - - except KeyboardInterrupt: - # Ignore user interruption - pass - - finally: - # Always terminate redshift - process.terminate() - process.wait() diff --git a/src/gtk-redshift/statusicon.py b/src/gtk-redshift/statusicon.py index 2295963..730fdb1 100644 --- a/src/gtk-redshift/statusicon.py +++ b/src/gtk-redshift/statusicon.py @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# statusicon.py -- GTK+ status icon source +# statusicon.py -- GUI status icon source # This file is part of Redshift. # Redshift is free software: you can redistribute it and/or modify @@ -18,6 +17,12 @@ # Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> +'''GUI status icon for Redshift. + +The run method will try to start an appindicator for Redshift. If the +appindicator module isn't present it will fall back to a GTK status icon. +''' + import sys, os import subprocess, signal import gettext @@ -26,8 +31,13 @@ import pygtk pygtk.require("2.0") import gtk, glib +try: + import appindicator +except ImportError: + appindicator = None import defs +import utils def run(): @@ -42,16 +52,36 @@ def run(): process = subprocess.Popen(args) try: - # Create status icon - status_icon = gtk.StatusIcon() - status_icon.set_from_icon_name('redshift') - status_icon.set_tooltip('Redshift') + if appindicator: + # Create indicator + indicator = appindicator.Indicator('redshift', 'redshift', + appindicator.CATEGORY_APPLICATION_STATUS) + indicator.set_status(appindicator.STATUS_ACTIVE) + else: + # Create status icon + status_icon = gtk.StatusIcon() + status_icon.set_from_icon_name('redshift') + status_icon.set_tooltip('Redshift') def toggle_cb(widget, data=None): process.send_signal(signal.SIGUSR1) + if appindicator: + if indicator.get_icon() == 'redshift': + indicator.set_icon('redshift-idle') + else: + indicator.set_icon('redshift') + else: + if status_icon.get_icon_name() == 'redshift': + status_icon.set_from_icon_name('redshift-idle') + else: + status_icon.set_from_icon_name('redshift') + + def autostart_cb(widget, data=None): + utils.set_autostart(widget.get_active()) def destroy_cb(widget, data=None): - status_icon.set_visible(False) + if not appindicator: + status_icon.set_visible(False) gtk.main_quit() return False @@ -62,19 +92,36 @@ def run(): toggle_item.connect('activate', toggle_cb) status_menu.append(toggle_item) + autostart_item = gtk.CheckMenuItem(_('Autostart')) + try: + autostart_item.set_active(utils.get_autostart()) + except IOError as strerror: + print strerror + autostart_item.set_property('sensitive', False) + else: + autostart_item.connect('activate', autostart_cb) + finally: + status_menu.append(autostart_item) + quit_item = gtk.ImageMenuItem(gtk.STOCK_QUIT) quit_item.connect('activate', destroy_cb) status_menu.append(quit_item) - def popup_menu_cb(widget, button, time, data=None): + if appindicator: status_menu.show_all() - status_menu.popup(None, None, gtk.status_icon_position_menu, - button, time, status_icon) - # Connect signals for status icon and show - status_icon.connect('activate', toggle_cb) - status_icon.connect('popup-menu', popup_menu_cb) - status_icon.set_visible(True) + # Set the menu + indicator.set_menu(status_menu) + else: + def popup_menu_cb(widget, button, time, data=None): + status_menu.show_all() + status_menu.popup(None, None, gtk.status_icon_position_menu, + button, time, status_icon) + + # Connect signals for status icon and show + status_icon.connect('activate', toggle_cb) + status_icon.connect('popup-menu', popup_menu_cb) + status_icon.set_visible(True) def child_cb(pid, cond, data=None): sys.exit(-1) diff --git a/src/gtk-redshift/utils.py b/src/gtk-redshift/utils.py new file mode 100644 index 0000000..93e0195 --- /dev/null +++ b/src/gtk-redshift/utils.py @@ -0,0 +1,66 @@ +# utils.py -- utility functions source +# This file is part of Redshift. + +# Redshift is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# Redshift is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with Redshift. If not, see <http://www.gnu.org/licenses/>. + +# Copyright (c) 2010 Francesco Marella <francesco.marella@gmail.com> + +import os +from xdg import BaseDirectory as base +from xdg import DesktopEntry as desktop + +REDSHIFT_DESKTOP = 'gtk-redshift.desktop' + + +def get_autostart(): + AUTOSTART_KEY = "X-GNOME-Autostart-enabled" + autostart_dir = base.save_config_path("autostart") + autostart_file = os.path.join(autostart_dir, REDSHIFT_DESKTOP) + if not os.path.exists(autostart_file): + desktop_files = list(base.load_data_paths("applications", + REDSHIFT_DESKTOP)) + if not desktop_files: + raise IOError("Installed redshift desktop file not found!") + desktop_file_path = desktop_files[0] + # Read installed file and modify it + dfile = desktop.DesktopEntry(desktop_file_path) + dfile.set(AUTOSTART_KEY, "false") + dfile.write(filename=autostart_file) + return False + else: + dfile = desktop.DesktopEntry(autostart_file) + if dfile.get(AUTOSTART_KEY) == 'false': + return False + else: + return True + +def set_autostart(active): + AUTOSTART_KEY = "X-GNOME-Autostart-enabled" + autostart_dir = base.save_config_path("autostart") + autostart_file = os.path.join(autostart_dir, REDSHIFT_DESKTOP) + if not os.path.exists(autostart_file): + desktop_files = list(base.load_data_paths("applications", + REDSHIFT_DESKTOP)) + if not desktop_files: + raise IOError("Installed redshift desktop file not found!") + return + desktop_file_path = desktop_files[0] + # Read installed file and modify it + dfile = desktop.DesktopEntry(desktop_file_path) + else: + dfile = desktop.DesktopEntry(autostart_file) + activestr = str(bool(active)).lower() + # print "Setting autostart to %s" % activestr + dfile.set(AUTOSTART_KEY, activestr) + dfile.write(filename=autostart_file) diff --git a/src/location-gnome-clock.c b/src/location-gnome-clock.c index 10b95eb..4944583 100644 --- a/src/location-gnome-clock.c +++ b/src/location-gnome-clock.c @@ -40,12 +40,13 @@ location_gnome_clock_init(location_gnome_clock_state_t *state) GError *error = NULL; GConfClient *client = gconf_client_get_default(); - GSList *applets = gconf_client_all_dirs(client, "/apps/panel/applets", - &error); + GSList *applets = gconf_client_get_list(client, + "/apps/panel/general/applet_id_list", + GCONF_VALUE_STRING, &error); if (error) { - fputs(_("Cannot list dirs in `/apps/panel/applets'.\n"), - stderr); + fputs(_("Cannot list GNOME panel applets.\n"), stderr); g_object_unref(client); + g_slist_free(applets); return -1; } @@ -54,7 +55,8 @@ location_gnome_clock_init(location_gnome_clock_state_t *state) applet = g_slist_next(applet)) { char *path = applet->data; if (cities_key == NULL) { - char *key = g_strdup_printf("%s/bonobo_iid", path); + char *key = g_strdup_printf("/apps/panel/applets/%s" + "/bonobo_iid", path); char *bonobo_iid = gconf_client_get_string(client, key, &error); @@ -62,7 +64,8 @@ location_gnome_clock_init(location_gnome_clock_state_t *state) if (!strcmp(bonobo_iid, "OAFIID:GNOME_ClockApplet")) { cities_key = g_strdup_printf( - "%s/prefs/cities", path); + "/apps/panel/applets/%s" + "/prefs/cities", path); } g_free(bonobo_iid); } diff --git a/src/redshift.c b/src/redshift.c index 18cc2c5..163a49e 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -656,11 +656,13 @@ main(int argc, char *argv[]) r = provider_try_start(p, &location_state, NULL); if (r < 0) { - fputs(_("Trying other provider...\n"), + fputs(_("Trying next provider...\n"), stderr); continue; } + /* Found provider that works. */ + printf(_("Using provider `%s'.\n"), p->name); provider = p; break; } @@ -758,10 +760,12 @@ main(int argc, char *argv[]) const gamma_method_t *m = &gamma_methods[i]; r = method_try_start(m, &state, NULL); if (r < 0) { - fputs(_("Trying other method...\n"), stderr); + fputs(_("Trying next method...\n"), stderr); continue; } + /* Found method that works. */ + printf(_("Using method `%s'.\n"), m->name); method = m; break; } |