TH - pkgkit1

This commit is contained in:
Carsten Haitzler 2019-02-26 23:25:55 +00:00
parent cebdebc7a5
commit 067b35104c
24 changed files with 1354 additions and 71 deletions

View File

@ -1,64 +1,76 @@
group { name: "e/modules/packagekit/icon/bugfix";
images.image: "icon_spanner.png" COMP;
images.image: "pkg-bug.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_spanner.png";
image.normal: "pkg-bug.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 51 153 255 255;
}
}
}
}
group { name: "e/modules/packagekit/icon/enhancement";
images.image: "icon_arrow_up.png" COMP;
images.image: "pkg-enhance.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_arrow_up.png";
image.normal: "pkg-enhance.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 153 255 51 255;
}
}
}
}
group { name: "e/modules/packagekit/icon/important";
images.image: "icon_warning.png" COMP;
images.image: "pkg-important.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_warning.png";
image.normal: "pkg-important.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 255 153 51 255;
}
}
}
}
group { name: "e/modules/packagekit/icon/low";
images.image: "icon_splat_half.png" COMP;
images.image: "pkg-low.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_splat_half.png";
image.normal: "pkg-low.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 255 255 255 128;
}
}
}
}
group { name: "e/modules/packagekit/icon/normal";
images.image: "icon_splat.png" COMP;
images.image: "pkg-normal.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_splat.png";
image.normal: "pkg-normal.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 255 255 255 128;
}
}
}
}
group { name: "e/modules/packagekit/icon/security";
images.image: "icon_system-lock-screen.png" COMP;
images.image: "pkg-security.png" COMP;
parts {
part { name: "image"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_system-lock-screen.png";
image.normal: "pkg-security.png";
aspect: 1.0 1.0; aspect_preference: BOTH;
color: 255 255 255 255;
}
}
}
@ -66,56 +78,60 @@ group { name: "e/modules/packagekit/icon/security";
group { name: "e/modules/packagekit/main";
max: 160 160;
images.image: "packagekit_base.png" COMP;
images.image: "icon_check_flat.png" COMP;
images.image: "glow_exclam.png" COMP;
images.image: "glow_round_corners_small.png" COMP;
images.image: "knob_round_small_busy.png" COMP;
images.image: "pkg-base.png" COMP;
images.image: "pkg-ok.png" COMP;
images.image: "pkg-err.png" COMP;
images.image: "pkg-busy1.png" COMP;
images.image: "pkg-busy2.png" COMP;
images.image: "pkg-busy3.png" COMP;
images.image: "pkg-busy4.png" COMP;
parts {
part { name: "base";
part { name: "base";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
image.normal: "packagekit_base.png";
}
}
part { name: "status";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
visible: 0;
rel1.relative: (36/160) (60/160);
rel2.relative: ((36+88)/160) ((60+88)/160);
}
description { state: "running" 0.0;
inherit: "default" 0.0;
}
description { state: "updates" 0.0;
inherit: "default" 0.0;
}
description { state: "updated" 0.0;
inherit: "default" 0.0;
visible: 1;
image.normal: "icon_check_flat.png";
color: 64 64 64 255;
max: 16 16;
}
description { state: "error" 0.0;
inherit: "default" 0.0;
visible: 1;
image.normal: "glow_exclam.png";
max: 16 16;
image.normal: "pkg-base.png";
}
}
part { name: "num_updates"; type: TEXT;
scale: 1;
effect: SHADOW BOTTOM;
description { state: "default" 0.0;
rel1.relative: (36/160) (60/160);
rel2.relative: ((36+88)/160) ((60+88)/160);
color: FN_COL_DISABLE;
rel1.relative: (9/40) (21/40);
rel2.relative: (32/40) (37/40);
color: 255 255 255 255;
text { font: FN; size: 10;
}
}
}
part { name: "status";
description { state: "default" 0.0;
fixed: 1 1;
visible: 0;
}
description { state: "running" 0.0;
inherit: "default" 0.0;
visible: 0;
}
description { state: "updates" 0.0;
inherit: "default" 0.0;
visible: 0;
}
description { state: "updated" 0.0;
inherit: "default" 0.0;
visible: 1;
rel1.relative: (16/40) (25/40);
rel2.relative: (28/40) (35/40);
image.normal: "pkg-ok.png";
color: 255 255 255 255;
}
description { state: "error" 0.0;
inherit: "default" 0.0;
visible: 1;
rel1.relative: (15/40) (24/40);
rel2.relative: (25/40) (34/40);
image.normal: "pkg-err.png";
color: 255 255 255 255;
}
}
part { name: "busy_clip"; type: RECT;
description { state: "default" 0.0;
color: 255 255 255 0;
@ -127,46 +143,88 @@ group { name: "e/modules/packagekit/main";
visible: 1;
}
}
part { name: "knob"; mouse_events: 0;
part { name: "busy1"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "knob_round_small_busy.png";
aspect: 1.0 1.0; aspect_preference: VERTICAL;
max: 20 20;
rel1.relative: (36/160) (60/160);
rel2.relative: ((36+88)/160) ((60+88)/160);
}
}
part { name: "knob_spinner"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "knob";
rel2.to: "knob";
image.normal: "glow_round_corners_small.png";
image.normal: "pkg-busy1.png";
rel1.relative: (13/40) (20/40);
rel2.relative: (27/40) (34/40);
map.on: 1;
map.smooth: 1;
map.rotation.center: "knob";
map.rotation.center: "busy1";
}
description { state: "spin" 0.0;
inherit: "default" 0.0;
map.rotation.z: 360;
}
}
part { name: "busy2"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "pkg-busy2.png";
rel1.relative: (13/40) (20/40);
rel2.relative: (27/40) (34/40);
map.on: 1;
map.smooth: 1;
map.rotation.center: "busy1";
}
description { state: "spin" 0.0;
inherit: "default" 0.0;
map.rotation.z: -360;
}
}
part { name: "busy3"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "pkg-busy3.png";
rel1.relative: (13/40) (20/40);
rel2.relative: (27/40) (34/40);
map.on: 1;
map.smooth: 1;
map.rotation.center: "busy1";
}
description { state: "spin" 0.0;
inherit: "default" 0.0;
map.rotation.z: 720;
}
}
part { name: "busy4"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "pkg-busy4.png";
rel1.relative: (13/40) (20/40);
rel2.relative: (27/40) (34/40);
map.on: 1;
map.smooth: 1;
map.rotation.center: "busy1";
}
description { state: "spin" 0.0;
inherit: "default" 0.0;
map.rotation.z: -720;
}
}
}
programs {
program { name: "spin";
signal: "e,state,hung"; source: "e";
action: STATE_SET "spin" 0.0;
transition: LINEAR 1.0;
target: "knob_spinner";
target: "busy1";
target: "busy2";
target: "busy3";
target: "busy4";
after: "spin2";
}
program { name: "spin2";
action: STATE_SET "default" 0.0;
target: "knob_spinner";
target: "busy1";
target: "busy2";
target: "busy3";
target: "busy4";
after: "spin";
}
program { name: "busy-on";
@ -190,9 +248,12 @@ group { name: "e/modules/packagekit/main";
}
program { name: "spin4";
action: STATE_SET "default" 0.0;
target: "knob_spinner";
target: "busy1";
target: "busy2";
target: "busy3";
target: "busy4";
}
program {
signal: "packagekit,state,none"; source: "e";
action: STATE_SET "default" 0.0;

View File

@ -0,0 +1,147 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="40"
height="40"
viewBox="0 0 40 40"
sodipodi:docname="package-error.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="30.675"
inkscape:cx="16.08802"
inkscape:cy="20"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<g
id="g980">
<g
id="g970">
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06834638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842"
cx="30"
cy="12"
r="8" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.40062988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3"
cx="5"
cy="14"
r="3" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6677165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38"
cx="10"
cy="9"
r="5" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.2670866;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-0"
cx="6"
cy="18"
r="2" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.80125982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-5"
cx="25"
cy="8"
r="6" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.53417319;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3-6"
cx="17"
cy="11"
r="4" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.00157475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect961"
width="24"
height="9"
x="6"
y="11" />
</g>
</g>
<g
id="g959">
<g
id="g954">
<path
style="fill:#a0a0a0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 7,38 H 33 V 12 H 7 Z"
id="path824"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path836"
d="m 16,12 v 7 l 2,-3 2,2 2,-3 2,2 v -5"
style="fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15,26 2,-2 3,3 3,-3 2,2 -3,3 3,3 -2,2 -3,-3 -3,3 -2,-2 3,-3 z"
id="path1003"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,147 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="40"
height="40"
viewBox="0 0 40 40"
sodipodi:docname="package-updated.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="30.675"
inkscape:cx="16.08802"
inkscape:cy="20"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<g
id="g980">
<g
id="g970">
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06834638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842"
cx="30"
cy="12"
r="8" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.40062988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3"
cx="5"
cy="14"
r="3" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6677165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38"
cx="10"
cy="9"
r="5" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.2670866;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-0"
cx="6"
cy="18"
r="2" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.80125982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-5"
cx="25"
cy="8"
r="6" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.53417319;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3-6"
cx="17"
cy="11"
r="4" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.00157475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect961"
width="24"
height="9"
x="6"
y="11" />
</g>
</g>
<g
id="g959">
<g
id="g954">
<path
style="fill:#a0a0a0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 7,38 H 33 V 12 H 7 Z"
id="path824"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path836"
d="m 16,12 v 7 l 2,-3 2,2 2,-3 2,2 v -5"
style="fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 20,34 -4,-4 2,-2 2,2 5,-5 2,2 z"
id="path982"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,189 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="40"
height="40"
viewBox="0 0 40 40"
sodipodi:docname="package-working.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="30.675"
inkscape:cx="17.392013"
inkscape:cy="20"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<g
id="g980">
<g
id="g970">
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06834638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842"
cx="30"
cy="12"
r="8" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.40062988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3"
cx="5"
cy="14"
r="3" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6677165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38"
cx="10"
cy="9"
r="5" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.2670866;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-0"
cx="6"
cy="18"
r="2" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.80125982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-5"
cx="25"
cy="8"
r="6" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.53417319;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3-6"
cx="17"
cy="11"
r="4" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.00157475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect961"
width="24"
height="9"
x="6"
y="11" />
</g>
</g>
<g
id="g959">
<g
id="g954">
<path
style="fill:#a0a0a0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 7,38 H 33 V 12 H 7 Z"
id="path824"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path836"
d="m 16,12 v 7 l 2,-3 2,2 2,-3 2,2 v -5"
style="fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
<path
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196081"
id="path1035"
sodipodi:type="arc"
sodipodi:cx="20"
sodipodi:cy="27"
sodipodi:rx="6"
sodipodi:ry="6"
sodipodi:start="0"
sodipodi:end="2.0943951"
sodipodi:open="true"
d="m 26,27 a 6,6 0 0 1 -3,5.196152 6,6 0 0 1 -6,0" />
<path
d="M 14.204445,25.447086 A 6,6 0 0 1 17,21.803848"
sodipodi:open="true"
sodipodi:end="4.1887902"
sodipodi:start="3.403392"
sodipodi:ry="6"
sodipodi:rx="6"
sodipodi:cy="27"
sodipodi:cx="20"
sodipodi:type="arc"
id="path1052"
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
<path
d="M 21.552914,21.204445 A 6,6 0 0 1 23,21.803848"
sodipodi:open="true"
sodipodi:end="5.2359878"
sodipodi:start="4.9741884"
sodipodi:ry="6"
sodipodi:rx="6"
sodipodi:cy="27"
sodipodi:cx="20"
sodipodi:type="arc"
id="path1054"
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
<path
d="m 24.242641,31.242641 a 6,6 0 0 1 -8.485282,0 6,6 0 0 1 0,-8.485282"
sodipodi:open="true"
sodipodi:end="3.9269908"
sodipodi:start="0.78539816"
sodipodi:ry="6"
sodipodi:rx="6"
sodipodi:cy="27"
sodipodi:cx="20"
sodipodi:type="arc"
id="path1056"
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,141 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="40"
height="40"
viewBox="0 0 40 40"
sodipodi:docname="package.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="30.675"
inkscape:cx="18.696007"
inkscape:cy="20"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<g
id="g980">
<g
id="g970">
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06834638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842"
cx="30"
cy="12"
r="8" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.40062988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3"
cx="5"
cy="14"
r="3" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6677165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38"
cx="10"
cy="9"
r="5" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.2670866;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-0"
cx="6"
cy="18"
r="2" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.80125982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-38-5"
cx="25"
cy="8"
r="6" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.53417319;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path842-3-6"
cx="17"
cy="11"
r="4" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.00157475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect961"
width="24"
height="9"
x="6"
y="11" />
</g>
</g>
<g
id="g959">
<g
id="g954">
<path
style="fill:#a0a0a0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 7,38 H 33 V 12 H 7 Z"
id="path824"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path836"
d="m 16,12 v 7 l 2,-3 2,2 2,-3 2,2 v -5"
style="fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,146 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-bug.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="10"
inkscape:cy="10"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path846"
sodipodi:type="arc"
sodipodi:cx="10"
sodipodi:cy="5"
sodipodi:rx="3"
sodipodi:ry="3"
sodipodi:start="0"
sodipodi:end="6.2760857"
sodipodi:open="true"
d="M 13,5 A 3,3 0 0 1 10.005325,7.9999953 3,3 0 0 1 7.0000189,5.0106494 3,3 0 0 1 9.984026,2.0000425 3,3 0 0 1 12.999924,4.9787014" />
<path
d="M 15,12 A 5,5 0 0 1 10.008875,16.999992 5,5 0 0 1 5.0000315,12.017749 5,5 0 0 1 9.9733766,7.0000709 5,5 0 0 1 14.999874,11.964502"
sodipodi:open="true"
sodipodi:end="6.2760857"
sodipodi:start="0"
sodipodi:ry="5"
sodipodi:rx="5"
sodipodi:cy="12"
sodipodi:cx="10"
sodipodi:type="arc"
id="path848"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.33333349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.27617979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
d="M 1.9941406 11 A 1 1 0 0 0 1 12.003906 A 1 1 0 0 0 2 13 A 1 1 0 0 0 2.0019531 13 L 18 13 A 1 1 0 0 1 18.001953 13 A 1 1 0 0 0 19 12 L 19 11.992188 A 1 1 0 0 0 18 11 L 2 11 A 1 1 0 0 0 1.9941406 11 z "
id="rect858" />
<path
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M 8,5 5,2 6,1 9,4 Z"
id="path864"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path874"
d="M 12,5 15,2 14,1 11,4 Z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 7,2 A 1,1 0 0 1 6.0017749,2.9999984 1,1 0 0 1 5.0000063,2.0035498 1,1 0 0 1 5.9946753,1.0000142 1,1 0 0 1 6.9999748,1.9929005"
sodipodi:open="true"
sodipodi:end="6.2760857"
sodipodi:start="0"
sodipodi:ry="1"
sodipodi:rx="1"
sodipodi:cy="2"
sodipodi:cx="6"
sodipodi:type="arc"
id="path884"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.66666669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.66666669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path886"
sodipodi:type="arc"
sodipodi:cx="14"
sodipodi:cy="2"
sodipodi:rx="1"
sodipodi:ry="1"
sodipodi:start="0"
sodipodi:end="6.2760857"
sodipodi:open="true"
d="m 15,2 a 1,1 0 0 1 -0.998225,0.9999984 1,1 0 0 1 -1.001769,-0.9964486 1,1 0 0 1 0.994669,-1.0035356 1,1 0 0 1 1.0053,0.9928863" />
<path
id="path893"
d="m 2.5667228,15.136902 a 1,1 0 0 0 -0.358998,1.366479 1,1 0 0 0 1.3640724,0.362642 1,1 0 0 0 0.00169,-9.76e-4 L 17.428204,8.8660232 a 1,1 0 0 1 0.0017,-9.765e-4 1,1 0 0 0 0.364334,-1.3650489 l -0.0039,-0.00677 a 1,1 0 0 0 -1.362119,-0.35926 L 2.5717972,15.133972 a 1,1 0 0 0 -0.00507,0.0029 z"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.27617979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4.27617979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
d="m 17.433272,15.136902 a 1,1 0 0 1 0.358998,1.366479 1,1 0 0 1 -1.364072,0.362642 1,1 0 0 1 -0.0017,-9.76e-4 L 2.5717913,8.8660232 a 1,1 0 0 0 -0.0017,-9.765e-4 1,1 0 0 1 -0.364334,-1.3650489 l 0.0039,-0.00677 a 1,1 0 0 1 1.362119,-0.35926 L 17.428198,15.133972 a 1,1 0 0 1 0.0051,0.0029 z"
id="path895" />
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 B

View File

@ -0,0 +1,85 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-enhance.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/eth.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="9.3480033"
inkscape:cy="10"
inkscape:window-x="2560"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="m 10,1 -9,9 2,2 7,-7 7,7 2,-2 z"
id="path933"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 8,19 h 4 V 11 L 10,9 8,11 Z"
id="path937"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 845 B

View File

@ -0,0 +1,116 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-important.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/pkg-enhance.png"
inkscape:export-xdpi="384"
inkscape:export-ydpi="384">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="9.3480033"
inkscape:cy="10"
inkscape:window-x="2560"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path958"
sodipodi:type="arc"
sodipodi:cx="10"
sodipodi:cy="4"
sodipodi:rx="3"
sodipodi:ry="3"
sodipodi:start="0"
sodipodi:end="6.2760818"
sodipodi:open="true"
d="M 13,4 A 3,3 0 0 1 10.005328,6.9999953 3,3 0 0 1 7.0000189,4.0106552 3,3 0 0 1 9.9840172,1.0000426 3,3 0 0 1 12.999924,3.9786897" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path960"
sodipodi:type="arc"
sodipodi:cx="10"
sodipodi:cy="17"
sodipodi:rx="2"
sodipodi:ry="2"
sodipodi:start="0"
sodipodi:end="6.2760818"
sodipodi:open="true"
d="M 12,17 A 2,2 0 0 1 10.003552,18.999997 2,2 0 0 1 8.0000126,17.007103 2,2 0 0 1 9.9893448,15.000028 2,2 0 0 1 11.99995,16.985793" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path962"
sodipodi:type="arc"
sodipodi:cx="10"
sodipodi:cy="11"
sodipodi:rx="2"
sodipodi:ry="2"
sodipodi:start="0"
sodipodi:end="6.2760818"
sodipodi:open="true"
d="M 12,11 A 2,2 0 0 1 10.003552,12.999997 2,2 0 0 1 8.0000126,11.007103 2,2 0 0 1 9.9893448,9.0000284 2,2 0 0 1 11.99995,10.985793" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8,11 7,4 h 6 l -1,7 z"
id="path964"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,82 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-low.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/pkg-normal.png"
inkscape:export-xdpi="384"
inkscape:export-ydpi="384">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="8.6960065"
inkscape:cy="10"
inkscape:window-x="2560"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
d="M 10 1 L 10 19 L 11.537109 15.738281 L 14.5 17.794922 L 14.201172 14.201172 L 17.794922 14.5 L 15.738281 11.537109 L 19 10 L 15.738281 8.4628906 L 17.794922 5.5 L 14.201172 5.7988281 L 14.5 2.2050781 L 11.537109 4.2617188 L 10 1 z "
id="path989" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:0.50196081;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
d="M 10 1 L 8.4628906 4.2617188 L 5.5 2.2050781 L 5.7988281 5.7988281 L 2.2050781 5.5 L 4.2617188 8.4628906 L 1 10 L 4.2617188 11.537109 L 2.2050781 14.5 L 5.7988281 14.201172 L 5.5 17.794922 L 8.4628906 15.738281 L 10 19 L 10 1 z "
id="path1010" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,89 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-normal.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/pkg-important.png"
inkscape:export-xdpi="384"
inkscape:export-ydpi="384">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="8.6960065"
inkscape:cy="10"
inkscape:window-x="2560"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
sodipodi:type="star"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
id="path989"
sodipodi:sides="12"
sodipodi:cx="10"
sodipodi:cy="10"
sodipodi:r1="9"
sodipodi:r2="5.9400001"
sodipodi:arg1="1.5707963"
sodipodi:arg2="1.8325957"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 10,19 8.4626149,15.737599 5.5000002,17.794229 5.7997857,14.200214 2.2057715,14.5 4.2624006,11.537385 1,10 4.2624005,8.4626149 2.2057712,5.5000002 5.7997856,5.7997857 5.4999998,2.2057715 8.4626148,4.2624006 9.9999998,1 11.537385,4.2624005 14.5,2.2057712 14.200214,5.7997856 17.794229,5.4999998 15.737599,8.4626148 19,9.9999998 15.737599,11.537385 17.794229,14.5 14.200214,14.200214 14.5,17.794229 11.537385,15.737599 Z" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,80 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
width="20"
height="20"
viewBox="0 0 20 20"
sodipodi:docname="pkg-security.svg"
inkscape:export-filename="/home/raster/C/th-efl/th/img/pkg-low.png"
inkscape:export-xdpi="384"
inkscape:export-ydpi="384">
<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" />
<sodipodi:namedview
pagecolor="#404040"
bordercolor="#000000"
borderopacity="0.47843137"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1377"
id="namedview4"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:zoom="61.35"
inkscape:cx="8.6960065"
inkscape:cy="10"
inkscape:window-x="2560"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid4138"
enabled="true"
visible="true"
empspacing="5" />
</sodipodi:namedview>
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 10,19 C 6,17 1,12 1,2 c 3,2 6.1629992,2 9,-1 3,3 6,3 9,1 0,10 -5,15 -9,17 z"
id="path1037"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB