first commit

master
Cidoku 3 years ago
commit c68f0b4aeb

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1 @@
../button-assets/button.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

@ -0,0 +1,10 @@
{
"cinnamon-theme": {
"name": "Chicago95",
"author": "EMH-Mark-I",
"version": "1.0",
"type": "custom",
"thumbnail": "thumbnail.png",
"url": ""
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

@ -0,0 +1,53 @@
// Vars missing from original but present upstream
$font-size : 16;
// When color definition differs for dark and light variant,
// it gets @if ed depending on $variant
$base_color: #ffffff;
$bg_color: #c0c0c0;
$fg_color: #000000;
$tooltip_bg_color: #ffffe1;
$dark_fg_color: #ffffff;
$selected_fg_color: #ffffff;
$selected_bg_color: #000080;
$selected_borders_color: darken($selected_bg_color, 20%);
$borders_color: #000000;
$borders_edge: #808080;
$link_color: #000080;
$link_visited_color: darken($link_color,10%);
$top_hilight: $borders_edge;
$panel_bg_color : #c0c0c0;
$panel_solid_bg_color : #c0c0c0;
$panel_fg_color : #000000;
$dash_bg_color : #c0c0c0;
$dash_fg_color : #000000;
$warning_color: #FF8300;
$error_color: #FF0000;
$success_color: darken(#39e4a3,10%);
$destructive_color: darken(#CC0000,10%);
$osd_fg_color: #000000;
$osd_bg_color: #c0c0c0;
$osd_borders_color: #000000;
$osd_outer_borders_color: #808080;
$tooltip_borders_color: $osd_outer_borders_color;
//insensitive state derived colors
$insensitive_fg_color: mix($fg_color, $bg_color, 50%);
$insensitive_bg_color: mix($bg_color, $base_color, 60%);
$insensitive_borders_color: $borders_color;
//colors for the backdrop state, derived from the main colors.
$backdrop_base_color: lighten($base_color,1%);
$backdrop_bg_color: $bg_color;
$backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 80%);
$backdrop_insensitive_color: lighten($backdrop_bg_color,15%);
$backdrop_borders_color: mix($borders_color, $bg_color, 90%);
$backdrop_dark_fill: mix($backdrop_borders_color,$backdrop_bg_color, 35%);

File diff suppressed because it is too large Load Diff

@ -0,0 +1,190 @@
// Drawing mixins
// generic drawing of more complex things
@function _widget_edge($c:$borders_edge) {
// outer highlight "used" on most widgets
@return 0 1px $c;
}
// provide font size in rem, with px fallback
@mixin fontsize($size: 24, $base: 16) {
font-size: round($size) + pt;
//font-size: ($size / $base) * 1rem;
}
@mixin _shadows($shadow1, $shadow2:none, $shadow3:none, $shadow4:none) {
//
// Helper function to stack up to 4 box-shadows;
//
@if $shadow4!=none { box-shadow: $shadow1, $shadow2, $shadow3, $shadow4; }
@else if $shadow3!=none { box-shadow: $shadow1, $shadow2, $shadow3; }
@else if $shadow2!=none { box-shadow: $shadow1, $shadow2; }
@else { box-shadow: $shadow1; }
}
// entries
@mixin entry($t, $fc:$selected_bg_color, $edge: $borders_edge) {
//
// Entries drawing function
//
// $t: entry type
// $fc: focus color
// $edge: set to none to not draw the bottom edge or specify a color to not
// use the default one
//
// possible $t values:
// normal, focus, insensitive
//
@if $t==normal {
background-color: $base_color;
box-shadow: none;
border-image: url('assets/box-inset.png') 3 3 3 3;
}
@if $t==focus {
box-shadow: none;
border-color: if($fc==$selected_bg_color,
$selected_borders_color,
darken($fc,35%));
}
@if $t==hover { }
@if $t==insensitive {
color: $insensitive_fg_color;
border-color: $insensitive_bg_color;
box-shadow: none;
}
}
// buttons
@function _border_color ($c) { @return darken($c,25%); } // colored buttons want
// the border form the
// base color
@function _text_shadow_color ($tc:$fg_color, $bg:$bg_color) {
//
// calculate the color of text shadows
//
// $tc is the text color
// $bg is the background color
//
$_lbg: lightness($bg)/100%;
@if lightness($tc)<50% { @return transparentize(white,1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black,$_lbg*0.8); }
}
@function _button_hilight_color($c) {
//
// calculate the right top hilight color for buttons
//
// $c: base color;
//
@if lightness($c)>90% { @return white; }
@else if lightness($c)>80% { @return transparentize(white, 0.3); }
@else if lightness($c)>50% { @return transparentize(white, 0.5); }
@else if lightness($c)>40% { @return transparentize(white, 0.7); }
@else { @return transparentize(white, 0.9); }
}
@mixin _button_text_shadow ($tc:$fg_color, $bg:$bg_color) {
//
// helper function for the text emboss effect
//
// $tc is the optional text color, not the shadow color
//
// TODO: this functions needs a way to deal with special cases
//
$_shadow: _text_shadow_color($tc, $bg);
text-shadow: none;
icon-shadow: none;
}
@mixin button($t, $c:$osd_bg_color, $tc:$fg_color, $edge: $borders_edge) {
//
// Button drawing function
//
// $t: button type,
// $c: base button color for colored* types
// $tc: optional text color for colored* types
// $edge: set to none to not draw the bottom edge or specify a color to not
// use the default one
//
// possible $t values:
// normal, hover, active, insensitive, insensitive-active,
// backdrop, backdrop-active, backdrop-insensitive, backdrop-insensitive-active,
// osd, osd-hover, osd-active, osd-insensitive, osd-backdrop, undecorated
//
$_hilight_color: _button_hilight_color($c);
$_button_edge: if($edge == none, none, _widget_edge($edge));
$_blank_edge: if($edge == none, none, _widget_edge(transparentize($edge,1)));
@if $t==normal {
$_bg: if($c!=$osd_bg_color, transparentize($c, 0.5),
$osd_bg_color);
border-radius: 0;
border: none;
color: $osd_fg_color;
background-color: transparent;
border-image: url('assets/box.png') 3 3 3 3;
text-shadow: none;
icon-shadow: none;
}
@if $t==focus {
$_bg: if($c!=$osd_bg_color, transparentize($c, 0.3),
lighten($osd_bg_color,3%));
color: $fg_color;
text-shadow: none;
icon-shadow: none;
border: none;
border-image: url('assets/box.png') 3 3 3 3;
box-shadow: 0 0 0 1px black;
}
@else if $t==hover {
$_bg: if($c!=$osd_bg_color, transparentize($c, 0.3),
lighten($osd_bg_color,3%));
border: none;
background-color: transparent;
text-shadow: none;
icon-shadow: none;
border-image: url('assets/box.png') 3 3 3 3;
}
@else if $t==active {
$_bg: if($c!=$bg_color, $c, $osd_borders_color);
border-color: $osd_borders_color;
border: none;
background-color: transparent;
text-shadow: none;
icon-shadow: none;
border-image: url('assets/box-active.png') 3 3 3 3;
}
@else if $t==insensitive {
$_bg: transparentize(mix($insensitive_fg_color,$osd_bg_color,20%),0.3);
color: $insensitive_fg_color;
border: none;
border-color: $osd_borders_color;
background-color: transparent;
box-shadow: none;
text-shadow: none;
icon-shadow: none;
border-image: url('assets/box.png') 3 3 3 3;
}
@else if $t==undecorated {
border-color: transparent;
background-color: transparent;
background-image: none;
text-shadow: none;
icon-shadow: none;
border-image: none;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 736 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,101 @@
<?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"
version="1.1"
id="svg2"
width="21.333332"
height="21.333332"
viewBox="0 0 21.333332 21.333332"
sodipodi:docname="checkbox-checked.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata8">
<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>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient839">
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0"
id="stop835" />
<stop
id="stop845"
offset="0.49901858"
style="stop-color:#808080;stop-opacity:1" />
<stop
style="stop-color:#c0c0c0;stop-opacity:1"
offset="0.50014269"
id="stop847" />
<stop
style="stop-color:#c0c0c0;stop-opacity:1"
offset="1"
id="stop837" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient839"
id="linearGradient841"
x1="4"
y1="4.0013008"
x2="17.331562"
y2="17.337791"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1854"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:measure-start="35.3125,17.875"
inkscape:measure-end="19.4972,1.96249"
inkscape:zoom="16"
inkscape:cx="15.349726"
inkscape:cy="16.658943"
inkscape:window-x="66"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient841);stroke-width:2.66100001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect833"
width="13.331562"
height="13.336492"
x="4"
y="4.0013013" />
<path
style="fill:#000100;fill-opacity:1;stroke-width:1.33333325"
d="m 4,10.921069 0,-6.919768 6.972378,0 6.359184,0 0,1.3294381 -12.0061641,0.00259 0,12.004463 L 4,17.337792 Z m 6.015112,5.083558 -3.355372,-3.36282 -3e-7,-3.8364023 3.337706,3.2349783 6.0110463,-5.86829 0.01585,3.6584033 c -1.949067,2.1110597 -3.979548,4.1415457 -6.00923,6.1741307 z"
id="path817"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

@ -0,0 +1,101 @@
<?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"
version="1.1"
id="svg2"
width="21.333332"
height="21.333332"
viewBox="0 0 21.333332 21.333332"
sodipodi:docname="checkbox-unchecked.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata8">
<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>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient839">
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0"
id="stop835" />
<stop
id="stop845"
offset="0.49901858"
style="stop-color:#808080;stop-opacity:1" />
<stop
style="stop-color:#c0c0c0;stop-opacity:1"
offset="0.50014269"
id="stop847" />
<stop
style="stop-color:#c0c0c0;stop-opacity:1"
offset="1"
id="stop837" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient839"
id="linearGradient841"
x1="4"
y1="4.0013008"
x2="17.331562"
y2="17.337791"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1854"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:measure-start="35.3125,17.875"
inkscape:measure-end="19.4972,1.96249"
inkscape:zoom="45.254834"
inkscape:cx="11.028531"
inkscape:cy="10.841552"
inkscape:window-x="66"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient841);stroke-width:2.66100001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect833"
width="13.331562"
height="13.336492"
x="4"
y="4.0013013" />
<path
style="fill:#000100;fill-opacity:1;stroke-width:1.33333325"
d="M 4,10.921069 V 4.001301 h 6.972378 6.359184 V 5.3307391 L 5.3253979,5.3333291 V 17.337792 L 4,17.337792 Z"
id="path817"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@ -0,0 +1,106 @@
<?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"
version="1.1"
id="svg2"
width="21.333332"
height="21.333332"
viewBox="0 0 21.333332 21.333332"
sodipodi:docname="radio-selected.png.2019_07_18_08_17_22.0.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1854"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="8"
inkscape:cx="10.041885"
inkscape:cy="0.76580776"
inkscape:window-x="66"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
gradientUnits="userSpaceOnUse"
y2="17.337791"
x2="17.331562"
y1="4.0013008"
x1="4"
id="linearGradient841"
xlink:href="#linearGradient839"
inkscape:collect="always"
gradientTransform="matrix(0.91668242,0,0,0.91700607,0.22310063,0.2130784)" />
<linearGradient
id="linearGradient839"
inkscape:collect="always">
<stop
id="stop835"
offset="0"
style="stop-color:#808080;stop-opacity:1" />
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0.49901858"
id="stop845" />
<stop
id="stop847"
offset="0.50014269"
style="stop-color:#c0c0c0;stop-opacity:1" />
<stop
id="stop837"
offset="1"
style="stop-color:#c0c0c0;stop-opacity:1" />
</linearGradient>
</defs>
<rect
ry="6.110404"
y="3.8822958"
x="3.8898304"
height="12.229644"
width="12.220808"
id="rect833"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient841);stroke-width:2.43972254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
sodipodi:nodetypes="sssssscscsss"
inkscape:connector-curvature="0"
id="path817"
d="M 4.7423109,13.151606 C 4.1906358,12.23033 3.4518573,10.209182 4.1411887,8.2062275 4.8261712,6.2159091 6.0219026,4.8517079 7.9099276,4.2168425 8.8539403,3.8994098 9.9538643,3.7749669 11.081653,3.9759732 c 1.127789,0.2010064 2.283444,0.727462 3.104542,1.5555761 0.833238,0.8403581 0.941035,1.0942307 1.23843,1.6263813 0,0 -0.854591,-0.8975134 -1.531539,-1.3010464 C 12.056738,4.6041697 7.9595609,4.0874232 6.1609901,6.5699447 4.5477764,8.7966224 4.479309,9.957996 4.8835965,12.112334 c 0.4290342,1.90139 1.6636629,2.78985 1.9080207,3.085104 0.070859,0.08562 -0.375372,-0.199256 -0.8235374,-0.595389 C 5.5199144,14.205916 5.0698146,13.698524 4.7423109,13.151606 Z"
style="fill:#000000;stroke-width:1.28295684" />
<circle
r="2.7"
cy="10.384497"
cx="10.363969"
id="path846"
style="opacity:1;fill:#000100;fill-opacity:1;stroke:none;stroke-width:2.50696182;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -0,0 +1,101 @@
<?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"
version="1.1"
id="svg2"
width="21.333332"
height="21.333332"
viewBox="0 0 21.333332 21.333332"
sodipodi:docname="radio-unselected.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1854"
inkscape:window-height="1016"
id="namedview4"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="8"
inkscape:cx="-14.145615"
inkscape:cy="0.76580776"
inkscape:window-x="66"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<metadata
id="metadata8">
<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>
<defs
id="defs6">
<linearGradient
gradientUnits="userSpaceOnUse"
y2="17.337791"
x2="17.331562"
y1="4.0013008"
x1="4"
id="linearGradient841"
xlink:href="#linearGradient839"
inkscape:collect="always"
gradientTransform="matrix(0.91668242,0,0,0.91700607,0.22310063,0.2130784)" />
<linearGradient
id="linearGradient839"
inkscape:collect="always">
<stop
id="stop835"
offset="0"
style="stop-color:#808080;stop-opacity:1" />
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0.49901858"
id="stop845" />
<stop
id="stop847"
offset="0.50014269"
style="stop-color:#c0c0c0;stop-opacity:1" />
<stop
id="stop837"
offset="1"
style="stop-color:#c0c0c0;stop-opacity:1" />
</linearGradient>
</defs>
<rect
ry="6.110404"
y="3.8822958"
x="3.8898304"
height="12.229644"
width="12.220808"
id="rect833"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient841);stroke-width:2.43972254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
sodipodi:nodetypes="sssssscscsss"
inkscape:connector-curvature="0"
id="path817"
d="M 4.7423109,13.151606 C 4.1906358,12.23033 3.4518573,10.209182 4.1411887,8.2062275 4.8261712,6.2159091 6.0219026,4.8517079 7.9099276,4.2168425 8.8539403,3.8994098 9.9538643,3.7749669 11.081653,3.9759732 c 1.127789,0.2010064 2.283444,0.727462 3.104542,1.5555761 0.833238,0.8403581 0.941035,1.0942307 1.23843,1.6263813 0,0 -0.854591,-0.8975134 -1.531539,-1.3010464 C 12.056738,4.6041697 7.9595609,4.0874232 6.1609901,6.5699447 4.5477764,8.7966224 4.479309,9.957996 4.8835965,12.112334 c 0.4290342,1.90139 1.6636629,2.78985 1.9080207,3.085104 0.070859,0.08562 -0.375372,-0.199256 -0.8235374,-0.595389 C 5.5199144,14.205916 5.0698146,13.698524 4.7423109,13.151606 Z"
style="fill:#000000;stroke-width:1.28295684" />
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1,32 @@
#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
ASSETS_DIR="assets"
for i in *.svg
do
extension="${i##*.}"
name=${i%".$extension"}
if [ -f $ASSETS_DIR/$name.png ]; then
echo $ASSETS_DIR/$name.png exists.
else
echo
echo Rendering $ASSETS_DIR/$name.png
$INKSCAPE --export-png=$ASSETS_DIR/$name.png $i >/dev/null \
&& $OPTIPNG -o7 --quiet $ASSETS_DIR/$name.png
fi
if [ -f $ASSETS_DIR/$name@2.png ]; then
echo $ASSETS_DIR/$name@2.png exists.
else
echo
echo Rendering $ASSETS_DIR/$name.png
$INKSCAPE --export-dpi=180 \
--export-png=$ASSETS_DIR/$name@2.png $i >/dev/null \
&& $OPTIPNG -o7 --quiet $ASSETS_DIR/$name@2.png
fi
done

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 736 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save