Merge branch 'feature/themes/flat' into devs/hermet/lottie

This commit is contained in:
Hermet Park 2020-11-30 11:55:33 +09:00
commit 7164c9bbe8
33 changed files with 924 additions and 39 deletions

View File

@ -315,14 +315,6 @@ ICO1(CTX, "non-starred", 128) /* */
//// categories /////////////////////////////////////////////////////////////
#define CTX "categories"
ICO2(CTX, "applications-office")
ICO2(CTX, "applications-other")
ICO2(CTX, "applications-science")
ICO2(CTX, "applications-system")
ICO2(CTX, "applications-utilities")
ICO2(CTX, "preferences-desktop")
ICO2(CTX, "preferences-system")
ICO1(CTX, "preferences-other", 128)
// TODO applications-engineering
// TODO preferences-desktop-peripherals
// TODO preferences-desktop-personal

View File

@ -137,12 +137,6 @@ ICON("preferences-desktop-shelf-dock", "i-shelf")
ICON("preferences-desktop-shelf-menu-bar", "i-shelf")
ICON("preferences-desktop-shelf-panel", "i-shelf")
ICON("preferences-desktop-shelf-top-desk", "i-shelf")
ICON("applications-accessories", "i-scissor-rule")
ICON("applications-development", "i-gear-curly-braces")
ICON("applications-games", "i-gamepad")
ICON("applications-graphics", "i-paintbrush")
ICON("applications-internet", "i-globe-cloud")
ICON("applications-multimedia", "i-monitor-speakers")
ICON("enlightenment/wallpaper_stretch", "i-fill-stretch")
ICON("enlightenment/wallpaper_center", "i-fill-center")
@ -469,13 +463,6 @@ ICON("menu/apps", "i-termprompt")
ICON("menu/chat", "i-lang-blank")
ICON("menu/edit", "i-edit")
ICON("preferences-desktop-display", "i-palette")
ICON("preferences-desktop-theme", "i-paint")
ICON("preferences-color", "i-paint")
ICON("preferences-desktop-font", "i-font")
ICON("preferences-desktop-multimedia", "i-speaker")
ICON("preferences-profile", "i-face")
ICON("application-chat", "i-lang-blank")
ICON("application-clock", "i-clock")
@ -507,7 +494,7 @@ ICON("folder-visiting", "i-folder-visiting")
ICON("battery", "i-battery")
ICON("camera", "i-camera")
ICON("camera-photo", "i-camera")
ICON("camera-photo", "i-photo")
ICON("camera-web", "i-webcam")
ICON("camera-video", "i-video-camera")
ICON("drive-harddisk", "i-drive-hdd")
@ -541,20 +528,40 @@ ICON("media-tape", "i-datatape")
ICON("media-memory", "i-memory")
ICON("processor", "i-cpu")
ICON("input-mouse", "i-mouse")
ICON("input-tablet", "i-drawing-tablet")
ICON("input-keyboard", "i-keyboard")
ICON("input-gaming", "i-gamepad")
ICON("video-display", "i-screen")
ICON("network-wired", "i-ethernet")
ICON("network-wireless", "i-wifi")
ICON("modem", "i-modem")
ICON("tablet", "i-tablet")
ICON("input-tablet", "i-drawing-tablet")
ICON("input-gaming", "i-gamepad")
ICON("preferences-desktop-display", "i-palette")
ICON("preferences-desktop-theme", "i-paint")
ICON("preferences-color", "i-paint")
ICON("preferences-desktop-font", "i-font")
ICON("preferences-desktop-multimedia", "i-speaker")
ICON("preferences-profile", "i-face")
ICON("preferences-desktop", "i-desktop-settings")
ICON("preferences-desktop-keyboard", "i-keyboard")
ICON("preferences-desktop-locale", "i-lang")
ICON("preferences-desktop-screensaver", "i-screen")
ICON("preferences-desktop-wallpaper", "i-picture-landscape")
ICON("preferences-system", "i-gear")
ICON("preferences-other", "i-gear-spanner")
ICON("system-file-manager", "i-folder")
ICON("applications-accessories", "i-scissor-rule")
ICON("applications-development", "i-gear-curly-braces")
ICON("applications-games", "i-gamepad")
ICON("applications-graphics", "i-paintbrush")
ICON("applications-internet", "i-globe-cloud")
ICON("applications-multimedia", "i-monitor-speakers")
ICON("applications-office", "i-briefcase")
ICON("applications-other", "i-app-window")
ICON("applications-science", "i-beaker")
ICON("applications-system", "i-gear")
ICON("applications-utilities", "i-utilities")
//ICON("", "")

View File

@ -232,7 +232,11 @@ group { name: "e/widgets/winlist/item";
group { name: "e/widgets/winlist/large/bg";
alias: "e/widgets/winlist/bg";
images.image: "screen_circular_shadow.png" COMP;
// disable blue and the circular shadow - they are pricey - esp blur by far
// on older gpu's.... whilst it looks nice, it just is too costly. keep here
// for information so can turn on maybe with ifdefs and alternate build that
// turnns on costly expensive things like this
// images.image: "screen_circular_shadow.png" COMP;
parts {
part { name: "bg_clip"; type: RECT;
description { state: "default" 0.0;
@ -245,6 +249,7 @@ group { name: "e/widgets/winlist/large/bg";
color: 255 255 255 255;
}
}
/*
snapshot { "bg_blur";
clip_to: "bg_clip";
description { state: "default" 0.0;
@ -257,12 +262,14 @@ group { name: "e/widgets/winlist/large/bg";
visible: 1;
}
}
*/
part { name: "bg_darken"; type: RECT;
clip_to: "bg_clip";
description { state: "default" 0.0;
color: 0 0 0 128;
color: 0 0 0 192;
}
}
/*
part { name: "shadow"; mouse_events: 0;
clip_to: "bg_clip";
description { state: "default" 0.0;
@ -281,25 +288,26 @@ group { name: "e/widgets/winlist/large/bg";
visible: 1;
}
}
*/
}
programs {
program { signal: "e,state,visible,on"; source: "e";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.2;
transition: DECELERATE 0.2 USE_DURATION_FACTOR 1 CURRENT;
target: "bg_clip";
target: "bg_blur";
target: "shadow";
// target: "bg_blur";
// target: "shadow";
after: "show2";
}
program { name: "show2";
action: SIGNAL_EMIT "e,action,show,done" "e";
}
program { signal: "e,state,visible,off"; source: "e";
action: STATE_SET "visible" 0.0;
transition: ACCELERATE 0.2;
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.2 USE_DURATION_FACTOR 1 CURRENT;
target: "bg_clip";
target: "bg_blur";
target: "shadow";
// target: "bg_blur";
// target: "shadow";
after: "hide2";
}
program { name: "hide2";
@ -308,7 +316,7 @@ group { name: "e/widgets/winlist/large/bg";
}
}
group { name: "e/widgets/winlist/fg";
group { name: "e/widgets/winlist/large/fg";
alias: "e/widgets/winlist/fg";
parts {
part { name: "fg_darken"; type: RECT;

View File

@ -155,6 +155,7 @@ I160("i-atom", "atom")
I160("i-folder-open", "folder-open")
I160("i-file-properties", "file-properties")
I160("i-gear", "gear")
I160("i-gear-spanner", "gear-spanner")
I160("i-termprompt", "termprompt")
I160("i-warning", "warning")
I160("i-warning-red", "warning-red")
@ -172,6 +173,7 @@ I160("i-window-lost", "window-lost")
I160("i-window-stacking", "window-stacking")
I160("i-system-run", "system-run")
I160("i-desktop-pc", "desktop-pc")
I160("i-desktop-settings", "desktop-settings")
I160("i-laptop-pc", "laptop-pc")
I160("i-padlock-lock", "padlock-lock")
I160("i-padlock-unlock", "padlock-unlock")
@ -273,6 +275,10 @@ I160("i-gear-curly-braces", "gear-curly-braces")
I160("i-paintbrush", "paintbrush")
I160("i-globe-cloud", "globe-cloud")
I160("i-monitor-speakers", "monitor-speakers")
I160("i-briefcase", "briefcase")
I160("i-app-window", "app-window")
I160("i-beaker", "beaker")
I160("i-utilities", "utilities")
///////////////////////////////////////////////////////////////////////////////
// larger mono icons (mostly efm or settings)

View File

@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="app-window.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/app-window-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter5854"
x="-0.13591628"
width="1.2718326"
y="-0.13591628"
height="1.2718326">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="3.397907"
id="feGaussianBlur5856" />
</filter>
<filter
height="1.5211429"
y="-0.26057143"
width="1.304"
x="-0.152"
id="filter23242"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur23244"
stdDeviation="1.52"
inkscape:collect="always" />
</filter>
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4"
showgrid="true"
inkscape:zoom="10.4125"
inkscape:cx="40"
inkscape:cy="40.192077"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g10"
inkscape:snap-bbox="true"
inkscape:snap-nodes="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
y="12"
x="10"
height="60"
width="60"
id="rect5728"
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5854)" />
<rect
style="opacity:1;fill:#404040;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5726"
width="60"
height="60"
x="10"
y="10" />
<rect
style="opacity:1;fill:#202020;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6682"
width="60"
height="12"
x="10"
y="10" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 68,14 -2,-2 -2,2 -2,-2 -2,2 2,2 -2,2 2,2 2,-2 2,2 2,-2 -2,-2 z"
id="path2880" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 46,15 -4,4 -4,-4 2,-2 2,2 2,-2 z"
id="path2882" />
<path
id="path2884"
d="m 56,17 -4,-4 -4,4 2,2 2,-2 2,2 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2886"
sodipodi:type="arc"
sodipodi:cx="16"
sodipodi:cy="16"
sodipodi:rx="4"
sodipodi:ry="4"
sodipodi:start="0"
sodipodi:end="6.2760818"
sodipodi:arc-type="slice"
d="m 20,16 a 4,4 0 0 1 -3.992896,3.999994 4,4 0 0 1 -4.007079,-3.985787 4,4 0 0 1 3.978665,-4.01415 4,4 0 0 1 4.021209,3.971529 L 16,16 Z" />
<rect
y="52"
x="28"
height="14"
width="24"
id="rect22840"
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.22202;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter23242)" />
<rect
style="opacity:1;fill:#606060;fill-opacity:1;stroke:none;stroke-width:1.22202;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect22836"
width="24"
height="14"
x="28"
y="52" />
<rect
style="fill:#a0a0a0;fill-opacity:1;stroke-width:3.77953"
id="rect2681"
width="48"
height="4"
x="16"
y="28" />
<rect
style="fill:#a0a0a0;fill-opacity:1;stroke-width:3.08597"
id="rect2683"
width="32"
height="4"
x="24"
y="40" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="beaker.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/beaker-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4"
showgrid="true"
inkscape:zoom="10.45"
inkscape:cx="40"
inkscape:cy="40.047847"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g10"
inkscape:snap-bbox="true"
inkscape:snap-nodes="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
style="fill:#ffffff;fill-opacity:0.40000001;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32,8 c -2,0 -4,2 -4,4 0,2 2,4 4,4 v 16 c 0,2 -2,6 -4,8 L 12,60 c -8,8 0,12 4,12 h 48 c 4,0 12,-4 4,-12 L 52,40 C 50,38 48,34 48,32 V 16 c 2,0 4,-2 4,-4 0,-2 -2,-4 -4,-4 z"
id="path2703"
sodipodi:nodetypes="czcccccccccczcc" />
<path
id="path2705"
style="fill:#8abc34;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 23.599609 48 L 14 60 C 6 68 14 70 18 70 L 62 70 C 66 70 74 68 66 60 L 56.400391 48 L 23.599609 48 z " />
<path
id="path2717"
style="fill:#ffffff;fill-opacity:0.4;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 34,16 v 16 c 0,2 -1,6 -3,8 L 16,60 c -8,8 -2,10 2,10 h 2 C 16,70 10,68 18,60 L 33,40 c 2,-2 3,-6 3,-8 V 16 Z"
sodipodi:nodetypes="csccscccscc" />
<circle
style="fill:#ffffff;fill-opacity:0.40000001;stroke:none;stroke-width:3.77953"
id="path2711"
cx="34"
cy="66"
r="2" />
<circle
style="fill:#ffffff;fill-opacity:0.40000001;stroke:none;stroke-width:7.55906"
id="circle2713"
cx="44"
cy="58"
r="4" />
<circle
style="fill:#ffffff;fill-opacity:0.40000001;stroke:none;stroke-width:11.3386"
id="circle2715"
cx="30"
cy="56"
r="6" />
<circle
style="fill:#ffffff;fill-opacity:0.4;stroke:none;stroke-width:7.55907"
id="path2726"
cx="32"
cy="12"
r="2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="briefcase.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/briefcase-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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="linearGradient6208">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6204" />
<stop
style="stop-color:#a0a0a0;stop-opacity:1"
offset="1"
id="stop6206" />
</linearGradient>
<mask
maskUnits="userSpaceOnUse"
id="mask947">
<rect
style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:3.96122;stroke-linecap:round;stroke-linejoin:round"
id="rect949"
width="60"
height="40"
x="10"
y="5" />
</mask>
<mask
id="mask3567"
maskUnits="userSpaceOnUse">
<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 40,10 C 19,10 20,17.832395 20,30 20,42.167605 19,70 40,70 61,70 60,42.167605 60,30 60,17.832395 61,10 40,10 Z"
id="path3569"
sodipodi:nodetypes="zzzzz" />
</mask>
<clipPath
id="clipPath922"
clipPathUnits="userSpaceOnUse">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path924"
d="m 1.3229166,295.4125 h 7.9375003 v -6.08542 c 0,-0.52917 0,-0.52917 -0.529167,-0.52917 H 1.8520833 c -0.5291666,0 -0.5291666,0 -0.5291667,0.52917 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</clipPath>
<clipPath
id="clipPath922-6"
clipPathUnits="userSpaceOnUse">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path924-7"
d="m 1.3229166,295.4125 h 7.9375003 v -6.08542 c 0,-0.52917 0,-0.52917 -0.529167,-0.52917 H 1.8520833 c -0.5291666,0 -0.5291666,0 -0.5291667,0.52917 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath876">
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 5.2916667,287.73958 a 3.96875,3.96875 0 0 0 -3.9687501,3.96875 3.96875,3.96875 0 0 0 3.9687501,3.96875 3.96875,3.96875 0 0 0 3.96875,-3.96875 3.96875,3.96875 0 0 0 -3.96875,-3.96875 z m 0,2.38125 a 1.5875001,1.5875044 0 0 1 1.5875,1.5875 1.5875001,1.5875044 0 0 1 -1.5875,1.5875 1.5875001,1.5875044 0 0 1 -1.5875,-1.5875 1.5875001,1.5875044 0 0 1 1.5875,-1.5875 z"
id="path878" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6208"
id="linearGradient6210"
x1="20"
y1="20"
x2="20"
y2="28"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-4,-10)" />
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.1625"
inkscape:cx="40"
inkscape:cy="33.922127"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="true"
inkscape:snap-nodes="true"
inkscape:bbox-paths="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4"
enabled="true"
snapvisiblegridlinesonly="false" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
style="fill:url(#linearGradient6210);fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 12,18 4,-8 24,8 z"
id="path6202" />
<rect
style="fill:#202020;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect6188"
width="64"
height="44"
x="8"
y="18" />
<path
style="fill:#dcdcdc;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 28,18 2,-8 h 2 v 8 z"
id="path6190" />
<path
style="fill:#dcdcdc;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="m 52,18 -2,-8 h -2 v 8 z"
id="path6192" />
<rect
style="fill:#202020;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect6194"
width="16"
height="4"
x="32"
y="10" />
<rect
style="fill:#dcdcdc;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect6196"
width="8"
height="1"
x="16"
y="62" />
<rect
style="fill:#dcdcdc;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect6198"
width="8"
height="1"
x="56"
y="62" />
<rect
style="fill:#ffffff;fill-opacity:0.2;stroke-width:1.96748;stroke-linecap:round;stroke-linejoin:round"
id="rect6200"
width="60"
height="1"
x="10"
y="20" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1,184 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="desktop-settings.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/desktop-settings-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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">
<mask
maskUnits="userSpaceOnUse"
id="mask947">
<rect
style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:3.96122;stroke-linecap:round;stroke-linejoin:round"
id="rect949"
width="60"
height="40"
x="10"
y="5" />
</mask>
<linearGradient
gradientTransform="matrix(1.6666666,0,0,1,-26.666666,0)"
gradientUnits="userSpaceOnUse"
y2="54"
x2="40"
y1="50"
x1="40"
id="linearGradient856"
xlink:href="#linearGradient854"
inkscape:collect="always" />
<linearGradient
id="linearGradient854"
inkscape:collect="always">
<stop
id="stop850"
offset="0"
style="stop-color:#000000;stop-opacity:0.25" />
<stop
id="stop852"
offset="1"
style="stop-color:#040404;stop-opacity:0" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1.6666666,0,0,0.25,-26.666666,-72.5)"
y2="54"
x2="40"
y1="50"
x1="40"
gradientUnits="userSpaceOnUse"
id="linearGradient860"
xlink:href="#linearGradient854"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1012"
id="namedview4"
showgrid="true"
inkscape:zoom="10.4"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="false">
<inkscape:grid
type="xygrid"
id="grid837" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
style="opacity:1;fill:#202020;fill-opacity:1;stroke-width:3.80615;stroke-linecap:round;stroke-linejoin:round"
id="rect838-3"
width="60"
height="36.929558"
x="10"
y="8" />
<rect
y="50"
x="35"
height="10"
width="10"
id="rect840"
style="fill:#a0a0a0;fill-opacity:1;stroke-width:4.92367;stroke-linecap:round;stroke-linejoin:round" />
<rect
y="60"
x="28"
height="2"
width="25"
id="rect842-6"
style="fill:#a0a0a0;fill-opacity:1;stroke-width:4.47215;stroke-linecap:round;stroke-linejoin:round" />
<rect
y="50"
x="35"
height="4"
width="10"
id="rect848"
style="fill:url(#linearGradient856);fill-opacity:1;stroke-width:5.16398;stroke-linecap:round;stroke-linejoin:round" />
<rect
transform="scale(1,-1)"
style="fill:url(#linearGradient860);fill-opacity:1;stroke-width:2.58199;stroke-linecap:round;stroke-linejoin:round"
id="rect858"
width="10"
height="1"
x="35"
y="-60" />
<g
id="g963">
<path
sodipodi:nodetypes="ccccc"
id="path844"
d="m 16,64 -4,4 h 56 l -4,-4 z"
style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round" />
<rect
y="68"
x="12"
height="2"
width="56"
id="rect846"
style="opacity:1;fill:#808080;fill-opacity:1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round" />
<path
id="path862"
d="m 17,65 -2,2 h 40 l -2,-2 z"
style="opacity:1;fill:#000000;fill-opacity:0.25;stroke-width:4;stroke-linecap:round;stroke-linejoin:round" />
<path
id="path864"
d="m 65,67 -2,-2 h -7 l 2,2 z"
style="opacity:1;fill:#000000;fill-opacity:0.25;stroke-width:4;stroke-linecap:round;stroke-linejoin:round" />
</g>
<rect
style="fill:#a0a0a0;fill-opacity:1;stroke-width:11.0314;stroke-linecap:round;stroke-linejoin:round"
id="rect847"
width="60"
height="5.0704441"
x="10"
y="44.929558" />
<path
d="m 39.942376,11.985336 a 15.000022,15.000022 0 0 0 -2.8252,0.283204 l -0.818361,5.730477 -4.632819,-3.474614 a 15.000022,15.000022 0 0 0 -4.097662,4.090826 l 3.482427,4.643561 -5.751962,0.821291 a 15.000022,15.000022 0 0 0 -0.28418,2.905277 15.000022,15.000022 0 0 0 0.279297,2.880864 l 5.765634,0.823243 -3.495122,4.660163 a 15.000022,15.000022 0 0 0 4.088873,4.088873 l 4.666999,-3.500005 0.82422,5.76954 a 15.000022,15.000022 0 0 0 2.870121,0.277344 15.000022,15.000022 0 0 0 2.912114,-0.286133 l 0.82422,-5.770516 4.653326,3.490239 a 15.000022,15.000022 0 0 0 4.083014,-4.101569 l -3.48731,-4.64942 5.73829,-0.819338 A 15.000022,15.000022 0 0 0 55.014663,26.985358 15.000022,15.000022 0 0 0 54.7256,24.056643 l -5.73536,-0.819337 3.468755,-4.625007 A 15.000022,15.000022 0 0 0 48.355473,14.51952 L 43.72949,17.989251 42.912106,12.26854 a 15.000022,15.000022 0 0 0 -2.897465,-0.283204 15.000022,15.000022 0 0 0 -0.07226,0 z m 0.06934,10.000015 a 5.0000073,5.0000073 0 0 1 0.0059,0 5.0000073,5.0000073 0 0 1 4.997076,5.000007 h -5.000007 l 5.000007,0.0127 a 5.0000073,5.0000073 0 0 1 -5.008796,4.987312 5.0000073,5.0000073 0 0 1 -4.991218,-5.005866 5.0000073,5.0000073 0 0 1 4.997078,-4.994148 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="path2833" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="gear-spanner.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/gear-spanner-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1918"
inkscape:window-height="1012"
id="namedview4"
showgrid="true"
inkscape:zoom="10.3875"
inkscape:cx="40"
inkscape:cy="40.048135"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="false">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
style="fill:#375362;fill-opacity:1;stroke-width:3.77953"
id="rect8905"
width="23.680737"
height="23.986691"
x="28.384541"
y="28.080614" />
<path
d="M 39.855469 10 A 30 30 0 0 0 34.205078 10.566406 L 32.568359 22.027344 L 23.302734 15.078125 A 30 30 0 0 0 15.107422 23.259766 L 22.072266 32.546875 L 10.568359 34.189453 A 30 30 0 0 0 10 40 A 30 30 0 0 0 10.558594 45.761719 L 22.089844 47.408203 L 15.099609 56.728516 A 30 30 0 0 0 23.277344 64.90625 L 32.611328 57.90625 L 34.259766 69.445312 A 30 30 0 0 0 40 70 A 30 30 0 0 0 45.824219 69.427734 L 47.472656 57.886719 L 56.779297 64.867188 A 30 30 0 0 0 64.945312 56.664062 L 57.970703 47.365234 L 69.447266 45.726562 A 30 30 0 0 0 70 40 A 30 30 0 0 0 69.421875 34.142578 L 57.951172 32.503906 L 64.888672 23.253906 A 30 30 0 0 0 56.681641 15.068359 L 47.429688 22.007812 L 45.794922 10.566406 A 30 30 0 0 0 40 10 A 30 30 0 0 0 39.855469 10 z M 39.994141 30 A 10 10 0 0 1 40.005859 30 A 10 10 0 0 1 50 40 L 40 40 L 50 40.025391 A 10 10 0 0 1 39.982422 50 A 10 10 0 0 1 30 39.988281 A 10 10 0 0 1 39.994141 30 z "
style="fill:#a0a0a0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;fill-opacity:1"
id="path2833" />
<path
sodipodi:nodetypes="cccccscccccccccscsscss"
d="m 49.84389,24.495694 c -2.760576,-0.739694 -5.706076,0.04946 -7.727076,2.070221 -2.020762,2.021 -2.809915,4.966501 -2.070221,7.727075 l -7.495056,7.495056 c -1.70491,-0.09501 -3.36954,0.540904 -4.576859,1.748432 -2.343145,2.343145 -2.343146,6.142135 0,8.485281 2.343146,2.343146 6.142136,2.343146 8.485282,0 1.207091,-1.207275 1.842734,-2.871598 1.747741,-4.576168 l 7.495747,-7.495747 c 2.760574,0.739695 5.706075,-0.04946 7.727075,-2.07022 2.020762,-2.021 2.809915,-4.9665 2.070221,-7.727076 L 51.309202,34.34409 H 45.652348 V 28.687236 Z M 33.610126,46.343499 c 0.0072,0.0071 0.01432,0.01422 0.02141,0.0214 0.781048,0.781049 0.781048,2.047379 0,2.828427 -0.781049,0.781048 -2.047379,0.781049 -2.828428,0 -0.781048,-0.781048 -0.781048,-2.047379 0,-2.828427 0.772677,-0.772853 2.022648,-0.782385 2.807021,-0.02141 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.66667;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.2"
id="path1652"
inkscape:transform-center-x="-0.99881209"
inkscape:transform-center-y="-0.99401396" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -10,7 +10,7 @@
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="48"
inkscape:export-xdpi="48"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/warning-red-040.png"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/photo-040.png"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="photo.svg"
viewBox="0 0 80 80"
@ -69,11 +69,11 @@
inkscape:window-x="0"
inkscape:cy="40"
inkscape:cx="40"
inkscape:zoom="15.1875"
inkscape:zoom="10.4625"
showgrid="true"
id="namedview4"
inkscape:window-height="1377"
inkscape:window-width="2560"
inkscape:window-height="1017"
inkscape:window-width="1920"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="utilities.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/utilities-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<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">
<rect
id="rect1822"
height="39.245391"
width="107.861"
y="8"
x="16" />
<rect
id="rect12368"
height="44.666695"
width="53.882812"
y="8"
x="16" />
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4"
showgrid="true"
inkscape:zoom="10.4625"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g10">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2878"
width="64"
height="64"
x="8"
y="8" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 70,12 -2,-2 -2,2 -2,-2 -2,2 2,2 -2,2 2,2 2,-2 2,2 2,-2 -2,-2 z"
id="path2880" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 48,13 -4,4 -4,-4 2,-2 2,2 2,-2 z"
id="path2882" />
<path
id="path2884"
d="m 58,15 -4,-4 -4,4 2,2 2,-2 2,2 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2886"
sodipodi:type="arc"
sodipodi:cx="14"
sodipodi:cy="14"
sodipodi:rx="4"
sodipodi:ry="4"
sodipodi:start="0"
sodipodi:end="6.2760818"
sodipodi:arc-type="slice"
d="m 18,14 a 4,4 0 0 1 -3.992896,3.999994 4,4 0 0 1 -4.007079,-3.985787 4,4 0 0 1 3.978665,-4.01415 4,4 0 0 1 4.021209,3.971529 L 14,14 Z" />
<path
style="fill:#659961;fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8,72 V 64 L 24,56 36,60 48,40 60,48 72,28 V 72 Z"
id="path4559"
sodipodi:nodetypes="ccccccccc" />
<path
sodipodi:nodetypes="cccccscccccccccscsscss"
d="m 48.030274,29.072265 c -2.475064,1.428979 -3.999832,4.069778 -4,6.927735 1.68e-4,2.857957 1.524936,5.498756 4,6.927734 v 10.59961 c -1.272737,1.13837 -2.000148,2.7651 -2,4.472656 0,3.313708 2.686291,6 6,6 3.313709,0 6,-2.686292 6,-6 -1.3e-4,-1.707215 -0.727517,-3.333536 -2,-4.47168 V 42.927734 c 2.475063,-1.428978 3.999832,-4.069777 4,-6.927734 -1.68e-4,-2.857957 -1.524937,-5.498756 -4,-6.927735 V 35 l -4,4 -4,-4 z M 52,56 c 0.01009,-7.7e-5 0.02019,-7.7e-5 0.03027,0 1.10457,0 2,0.89543 2,2 0,1.104569 -0.89543,2 -2,2 -1.104569,0 -2,-0.895431 -2,-2 -1.25e-4,-1.092854 0.876998,-1.983458 1.969727,-2 z"
style="fill:#ffffff;fill-opacity:0.5;stroke:none;stroke-width:0.66667;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.2"
id="path1652" />
<path
id="path1675"
style="fill:#ffffff;fill-opacity:0.5;stroke:none;stroke-width:0.501279;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.2"
d="m 26.801758,27.814453 -1.003906,4.009766 1.003906,2.005859 v 14.035156 h -2.005859 v 2.00586 h 1.001953 V 51.875 c -0.501279,0 -1.001953,0.502627 -1.001953,1.003906 v 10.025391 c 0,0.09042 0.02306,0.161915 0.05273,0.222656 0.119225,0.415455 0.523979,0.779297 0.949219,0.779297 h 4.011719 c 0.375959,0 0.751533,-0.282304 0.916016,-0.634766 0.05483,-0.117487 0.08594,-0.241867 0.08594,-0.367187 V 52.878906 c 10e-7,-0.425961 -0.364904,-0.832786 -0.781249,-0.951172 -0.06099,-0.03008 -0.129632,-0.05273 -0.220703,-0.05273 v -2.00391 h 1.001953 v -2.00586 H 28.805665 V 33.830078 l 1.003906,-2.005859 -1.003906,-4.009766 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -38,7 +38,7 @@
image.border_scale_by: _scale; \
rel1.offset: (-_l) (-_t); \
rel2.offset: (_r-1) (_b-1); \
fill.smooth: 0; \
fill.smooth: 1; \
offscale; \
}
#define SHAD_CLIP(_to, _clip, _l, _r, _t, _b, _scale) \