Rework
@@ -380,7 +380,7 @@ public final class McpTools {
|
||||
.getExtendedLayer()
|
||||
.findModule(AppNames.extModuleName("base"))
|
||||
.orElseThrow(),
|
||||
AppNames.extModuleName("base") + ".script.SimpleScriptStore");
|
||||
AppNames.extModuleName("base") + ".script.ScriptStore");
|
||||
var method = clazz.getDeclaredMethod("assembleScriptChain", ShellControl.class);
|
||||
var command = (String) method.invoke(script.getStore(), shellSession.getControl());
|
||||
var scriptFile = ScriptHelper.createExecScript(shellSession.getControl(), command);
|
||||
|
||||
@@ -20,6 +20,11 @@ import java.util.UUID;
|
||||
|
||||
public class ScriptCollectionSourceStoreProvider implements DataStoreProvider {
|
||||
|
||||
@Override
|
||||
public int getOrderPriority() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getTargetCategory(DataStore store, UUID target) {
|
||||
return DataStorage.SCRIPT_SOURCES_CATEGORY_UUID;
|
||||
|
||||
@@ -212,7 +212,7 @@ public class ScriptStoreProvider implements EnabledParentStoreProvider, DataStor
|
||||
@Override
|
||||
public String getDisplayIconFileName(DataStore store) {
|
||||
if (store == null) {
|
||||
return "proc:shellEnvironment_icon.svg";
|
||||
return "base:script_icon.svg";
|
||||
}
|
||||
|
||||
ScriptStore st = store.asNeeded();
|
||||
|
||||
@@ -108,7 +108,7 @@ public class ScriptStoreSetup {
|
||||
}
|
||||
|
||||
var applicable = refs.stream()
|
||||
.filter(simpleScriptStore -> simpleScriptStore.getStore().isCompatible(sc.getShellDialect()))
|
||||
.filter(ss -> ss.getStore().isCompatible(sc.getShellDialect()))
|
||||
.toList();
|
||||
if (applicable.isEmpty()) {
|
||||
return null;
|
||||
|
||||
|
After Width: | Height: | Size: 545 B |
|
Before Width: | Height: | Size: 527 B After Width: | Height: | Size: 542 B |
|
After Width: | Height: | Size: 814 B |
|
Before Width: | Height: | Size: 796 B After Width: | Height: | Size: 808 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 557 B |
|
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 567 B |
|
Before Width: | Height: | Size: 801 B After Width: | Height: | Size: 884 B |
|
Before Width: | Height: | Size: 788 B After Width: | Height: | Size: 885 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 558 B After Width: | Height: | Size: 624 B |
|
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 636 B |
|
Before Width: | Height: | Size: 752 B After Width: | Height: | Size: 889 B |
|
Before Width: | Height: | Size: 776 B After Width: | Height: | Size: 889 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 601 B |
|
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 602 B |
|
Before Width: | Height: | Size: 732 B After Width: | Height: | Size: 802 B |
|
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 544 B |
|
After Width: | Height: | Size: 564 B |
|
After Width: | Height: | Size: 737 B |
|
After Width: | Height: | Size: 745 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 595 B |
|
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 567 B |
|
After Width: | Height: | Size: 891 B |
|
Before Width: | Height: | Size: 798 B After Width: | Height: | Size: 821 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="localIdentity_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-125.74552"
|
||||
inkscape:cy="18.760421"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#eaeaea;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#c34eff;fill-opacity:1;stroke-width:0.143895" /><rect
|
||||
style="fill:#c34eff;fill-opacity:1;stroke:none;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1"
|
||||
width="108.50542"
|
||||
height="9.3811769"
|
||||
x="50.477894"
|
||||
y="154.79762" /><path
|
||||
d="m 76.754363,147.22222 c -0.01071,-15.52733 12.573664,-28.12037 28.100987,-28.12037 15.52731,0 28.11169,12.59304 28.10098,28.12037 0.0107,15.52733 1.47427,15.60281 -25.92101,15.28274 -32.482074,-0.37951 -30.291669,0.24459 -30.280957,-15.28274 z"
|
||||
id="path1-9"
|
||||
style="fill:#c34eff;fill-opacity:1;stroke-width:0.109769"
|
||||
sodipodi:nodetypes="cscsc" /></svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
@@ -4,38 +4,54 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="localIdentity_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
<style
|
||||
id="style2411">.cls-1{fill:#606161;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">identity</title>
|
||||
<path
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-250.47697"
|
||||
inkscape:cy="136.39333"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#b82cff;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" />
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>identity</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 128.46827,98.407463 a 38.670445,38.670445 0 1 0 -48.402498,0 A 70.895817,70.895817 0 0 0 33.40343,164.9851 v 6.44508 H 175.19505 V 164.9851 A 70.895817,70.895817 0 0 0 128.46827,98.407463 Z M 78.518945,68.308967 A 25.780297,25.780297 0 1 1 104.29923,94.089269 25.780297,25.780297 0 0 1 78.518945,68.308967 Z M 46.680286,158.54002 a 58.005667,58.005667 0 0 1 115.302364,0 z"
|
||||
id="path2417"
|
||||
style="fill:#b82cff;fill-opacity:1;stroke-width:8.06261;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</svg>
|
||||
style="fill:#212121;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#9e00ef;fill-opacity:1;stroke-width:0.143895" /><rect
|
||||
style="fill:#9e00ef;fill-opacity:1;stroke:none;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1"
|
||||
width="108.50542"
|
||||
height="9.3811769"
|
||||
x="50.477894"
|
||||
y="154.79762" /><path
|
||||
d="m 76.754363,147.22222 c -0.01071,-15.52733 12.573664,-28.12037 28.100987,-28.12037 15.52731,0 28.11169,12.59304 28.10098,28.12037 0.0107,15.52733 1.47427,15.60281 -25.92101,15.28274 -32.482074,-0.37951 -30.291669,0.24459 -30.280957,-15.28274 z"
|
||||
id="path1-9"
|
||||
style="fill:#9e00ef;fill-opacity:1;stroke-width:0.109769"
|
||||
sodipodi:nodetypes="cscsc" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -6,59 +6,56 @@
|
||||
version="1.1"
|
||||
sodipodi:docname="passwordManagerIdentity_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="3.9444744"
|
||||
inkscape:cx="102.295"
|
||||
inkscape:cy="102.54852"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-92.280989"
|
||||
inkscape:cy="-28.901189"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:export-bgcolor="#00000000" />
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
<style
|
||||
id="style2411">.cls-1{fill:#606161;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">identity</title>
|
||||
<path
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#0089b8;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" />
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>identity</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 128.46827,98.407463 a 38.670445,38.670445 0 1 0 -48.402498,0 A 70.895817,70.895817 0 0 0 33.40343,164.9851 v 6.44508 H 175.19505 V 164.9851 A 70.895817,70.895817 0 0 0 128.46827,98.407463 Z M 78.518945,68.308967 A 25.780297,25.780297 0 1 1 104.29923,94.089269 25.780297,25.780297 0 0 1 78.518945,68.308967 Z M 46.680286,158.54002 a 58.005667,58.005667 0 0 1 115.302364,0 z"
|
||||
id="path2417"
|
||||
style="fill:#0089b8;fill-opacity:1;stroke-width:8.06261;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</svg>
|
||||
style="fill:#e7e7e7;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#815fff;fill-opacity:1;stroke-width:0.143895" /><g
|
||||
style="fill:#815fff;fill-opacity:1"
|
||||
id="g4"
|
||||
transform="matrix(0.13150071,0,0,0.13150071,74.619926,118.87331)"><g
|
||||
id="g3"
|
||||
style="fill:#815fff;fill-opacity:1">
|
||||
<g
|
||||
id="g2"
|
||||
style="fill:#815fff;fill-opacity:1">
|
||||
<path
|
||||
d="M 472.615,274.117 V 198.4 l -55.335,-9.255 c -4.332,-16.64 -10.929,-32.492 -19.692,-47.458 L 430.178,96 376.615,42.437 330.929,75.028 C 315.963,66.265 300.012,59.668 283.372,55.336 L 274.215,0 H 198.4 l -9.157,55.335 c -16.64,4.332 -32.591,10.929 -47.557,19.692 L 96,42.437 42.437,96 75.028,141.686 c -8.763,14.966 -15.36,30.818 -19.692,47.458 L 0,198.4 v 75.717 l 55.335,9.255 c 4.332,16.64 10.929,32.591 19.692,47.557 L 42.436,376.615 96,430.178 141.686,397.489 c 14.966,8.862 30.917,15.458 47.557,19.791 l 9.157,55.335 h 75.815 l 9.157,-55.335 c 16.64,-4.332 32.591,-10.929 47.557,-19.791 l 45.686,32.689 53.563,-53.563 -32.591,-45.686 c 8.763,-14.966 15.36,-30.917 19.692,-47.557 z m -236.307,60.652 c -54.252,0 -98.462,-44.209 -98.462,-98.462 0,-54.351 44.209,-98.462 98.462,-98.462 54.253,0 98.462,44.111 98.462,98.462 -10e-4,54.253 -44.21,98.462 -98.462,98.462 z"
|
||||
id="path1-5"
|
||||
style="fill:#815fff;fill-opacity:1" />
|
||||
</g>
|
||||
</g></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 4.5 KiB |
@@ -6,14 +6,14 @@
|
||||
version="1.1"
|
||||
sodipodi:docname="passwordManagerIdentity_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
@@ -22,42 +22,40 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="3.9444744"
|
||||
inkscape:cx="102.295"
|
||||
inkscape:cy="102.295"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-92.280989"
|
||||
inkscape:cy="-28.901189"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
<style
|
||||
id="style2411">.cls-1{fill:#606161;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">identity</title>
|
||||
<path
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#1b007e;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" />
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>identity</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 128.46827,98.407463 a 38.670445,38.670445 0 1 0 -48.402498,0 A 70.895817,70.895817 0 0 0 33.40343,164.9851 v 6.44508 H 175.19505 V 164.9851 A 70.895817,70.895817 0 0 0 128.46827,98.407463 Z M 78.518945,68.308967 A 25.780297,25.780297 0 1 1 104.29923,94.089269 25.780297,25.780297 0 0 1 78.518945,68.308967 Z M 46.680286,158.54002 a 58.005667,58.005667 0 0 1 115.302364,0 z"
|
||||
id="path2417"
|
||||
style="fill:#1b007e;fill-opacity:1;stroke-width:8.06261;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</svg>
|
||||
style="fill:#212121;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#2300df;fill-opacity:1;stroke-width:0.143895" /><g
|
||||
style="fill:#2300df;fill-opacity:1"
|
||||
id="g4"
|
||||
transform="matrix(0.13150071,0,0,0.13150071,74.619926,118.87331)"><g
|
||||
id="g3"
|
||||
style="fill:#2300df;fill-opacity:1">
|
||||
<g
|
||||
id="g2"
|
||||
style="fill:#2300df;fill-opacity:1">
|
||||
<path
|
||||
d="M 472.615,274.117 V 198.4 l -55.335,-9.255 c -4.332,-16.64 -10.929,-32.492 -19.692,-47.458 L 430.178,96 376.615,42.437 330.929,75.028 C 315.963,66.265 300.012,59.668 283.372,55.336 L 274.215,0 H 198.4 l -9.157,55.335 c -16.64,4.332 -32.591,10.929 -47.557,19.692 L 96,42.437 42.437,96 75.028,141.686 c -8.763,14.966 -15.36,30.818 -19.692,47.458 L 0,198.4 v 75.717 l 55.335,9.255 c 4.332,16.64 10.929,32.591 19.692,47.557 L 42.436,376.615 96,430.178 141.686,397.489 c 14.966,8.862 30.917,15.458 47.557,19.791 l 9.157,55.335 h 75.815 l 9.157,-55.335 c 16.64,-4.332 32.591,-10.929 47.557,-19.791 l 45.686,32.689 53.563,-53.563 -32.591,-45.686 c 8.763,-14.966 15.36,-30.917 19.692,-47.557 z m -236.307,60.652 c -54.252,0 -98.462,-44.209 -98.462,-98.462 0,-54.351 44.209,-98.462 98.462,-98.462 54.253,0 98.462,44.111 98.462,98.462 -10e-4,54.253 -44.21,98.462 -98.462,98.462 z"
|
||||
id="path1-5"
|
||||
style="fill:#2300df;fill-opacity:1" />
|
||||
</g>
|
||||
</g></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 4.5 KiB |
@@ -4,57 +4,65 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="scriptSource_icon-dark.svg"
|
||||
sodipodi:docname="scriptCollectionSource_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.1406966"
|
||||
inkscape:cx="45.523741"
|
||||
inkscape:cy="67.259214"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="21.252463"
|
||||
inkscape:cy="94.911566"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title6">shell environment v2</title>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M215.09,242.25l0,0a4.28,4.28,0,0,0-6,6.05l23.32,23.34-23.3,23.32a4.28,4.28,0,0,0-.47,6,4.29,4.29,0,0,0,6,.46,4.56,4.56,0,0,0,.44-.44l26.36-26.36a4.29,4.29,0,0,0,0-6Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path8"
|
||||
style="fill:#f5f5f5;fill-opacity:1" /><path
|
||||
style="fill:#e3e3e3;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path10"
|
||||
style="fill:#f5f5f5;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M 366.61,182.47 C 366.602,164.84511 354.88087,149.37302 337.91641,144.59348 320.95195,139.81394 302.87784,146.89161 293.67,161.92 h -108 c -13.13752,0.0165 -23.78347,10.66248 -23.8,23.8 v 140.56 c 0.0165,13.13752 10.66248,23.78347 23.8,23.8 h 140.61 c 13.13752,-0.0165 23.78347,-10.66248 23.8,-23.8 V 214.52 c 10.3743,-7.37675 16.53432,-19.32041 16.53,-32.05 z m -196.13,3.23 c 0.011,-8.41225 6.82775,-15.22898 15.24,-15.24 h 104 c -3.22639,10.13871 -2.22401,21.15049 2.78,30.54 h -122 z m 171,140.56 c -0.011,8.41225 -6.82775,15.22898 -15.24,15.24 H 185.72 c -8.41225,-0.011 -15.22898,-6.82775 -15.24,-15.24 V 209.52 h 128.19 c 10.99401,11.62865 27.93766,15.43652 42.85,9.63 z"
|
||||
id="path12"
|
||||
style="fill:#f1f1f1;fill-opacity:1"
|
||||
sodipodi:nodetypes="csccccccccccccccccccccccc"
|
||||
transform="translate(-161.92,-143.11)" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="m 168.38378,16.364302 c 0,-1.73044 -1.39805,-3.12848 -3.12849,-3.12848 -1.73044,0 -3.12848,1.39804 -3.12848,3.12848 v 20.59912 l -4.04748,-4.04748 c -1.22206,-1.22206 -3.2067,-1.22206 -4.42876,0 -1.22207,1.22207 -1.22207,3.2067 0,4.42876 l 9.38545,9.38546 c 1.22207,1.22206 3.2067,1.22206 4.42876,0 l 9.38546,-9.38546 c 1.22206,-1.22206 1.22206,-3.20669 0,-4.42876 -1.22207,-1.22206 -3.2067,-1.22206 -4.42876,0 l -4.0377,4.04748 z m -18.77091,28.15636 c -3.45111,0 -6.25697,2.80586 -6.25697,6.256973 v 3.128485 c 0,3.451109 2.80586,6.256968 6.25697,6.256968 h 31.28484 c 3.45111,0 6.25697,-2.805859 6.25697,-6.256968 v -3.128485 c 0,-3.451113 -2.80586,-6.256973 -6.25697,-6.256973 h -4.58518 l -5.53351,5.533511 c -3.05027,3.050272 -8.00696,3.050272 -11.05724,0 l -5.52373,-5.533511 z m 29.7206,5.474852 c 3.12848,0 3.12848,4.692727 0,4.692727 -3.12848,0 -3.12848,-4.692727 0,-4.692727 z"
|
||||
style="fill:#e3e3e3;fill-opacity:1" />
|
||||
<metadata
|
||||
id="metadata923">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>shell environment v2</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
d="m 126.64205,98.327241 c 0,-2.840539 -2.29491,-5.135432 -5.13544,-5.135432 -2.84053,0 -5.13542,2.294893 -5.13542,5.135432 v 33.813599 l -6.64398,-6.64397 c -2.00602,-2.00602 -5.26382,-2.00602 -7.26984,0 -2.00603,2.00603 -2.00603,5.26382 0,7.26985 l 15.40629,15.4063 c 2.00604,2.00602 5.26382,2.00602 7.26985,0 l 15.40631,-15.4063 c 2.00602,-2.00603 2.00602,-5.26382 0,-7.26985 -2.00604,-2.00602 -5.26382,-2.00602 -7.26984,0 l -6.62793,6.64397 z M 95.829455,144.54611 c -5.66502,0 -10.27085,4.60584 -10.27085,10.27086 v 5.13543 c 0,5.66502 4.60583,10.27086 10.27085,10.27086 h 51.354315 c 5.66502,0 10.27086,-4.60584 10.27086,-10.27086 v -5.13543 c 0,-5.66502 -4.60584,-10.27086 -10.27086,-10.27086 h -7.52661 l -9.08329,9.0833 c -5.00706,5.00704 -13.1435,5.00704 -18.15057,0 l -9.06724,-9.0833 z m 48.786605,8.98701 c 5.13542,0 5.13542,7.70313 0,7.70313 -5.13542,0 -5.13542,-7.70313 0,-7.70313 z"
|
||||
id="path1"
|
||||
style="fill:#151515;fill-opacity:1;stroke:none;stroke-width:0.0977651;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ssscssccsssccssssssssscsccssss" /></svg>
|
||||
style="fill:#1dbe71;fill-opacity:1;stroke:none;stroke-width:0.160482;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -4,32 +4,65 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="scriptCollectionSource_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="21.252463"
|
||||
inkscape:cy="94.911566"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title6">shell environment v2</title>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M215.09,242.25l0,0a4.28,4.28,0,0,0-6,6.05l23.32,23.34-23.3,23.32a4.28,4.28,0,0,0-.47,6,4.29,4.29,0,0,0,6,.46,4.56,4.56,0,0,0,.44-.44l26.36-26.36a4.29,4.29,0,0,0,0-6Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" /><path
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path10"
|
||||
style="fill:#2e2e2e;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M 366.61,182.47 C 366.602,164.84511 354.88087,149.37302 337.91641,144.59348 320.95195,139.81394 302.87784,146.89161 293.67,161.92 h -108 c -13.13752,0.0165 -23.78347,10.66248 -23.8,23.8 v 140.56 c 0.0165,13.13752 10.66248,23.78347 23.8,23.8 h 140.61 c 13.13752,-0.0165 23.78347,-10.66248 23.8,-23.8 V 214.52 c 10.3743,-7.37675 16.53432,-19.32041 16.53,-32.05 z m -196.13,3.23 c 0.011,-8.41225 6.82775,-15.22898 15.24,-15.24 h 104 c -3.22639,10.13871 -2.22401,21.15049 2.78,30.54 h -122 z m 171,140.56 c -0.011,8.41225 -6.82775,15.22898 -15.24,15.24 H 185.72 c -8.41225,-0.011 -15.22898,-6.82775 -15.24,-15.24 V 209.52 h 128.19 c 10.99401,11.62865 27.93766,15.43652 42.85,9.63 z"
|
||||
id="path12"
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(-161.92,-143.11)" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="m 168.38378,16.364302 c 0,-1.73044 -1.39805,-3.12848 -3.12849,-3.12848 -1.73044,0 -3.12848,1.39804 -3.12848,3.12848 v 20.59912 l -4.04748,-4.04748 c -1.22206,-1.22206 -3.2067,-1.22206 -4.42876,0 -1.22207,1.22207 -1.22207,3.2067 0,4.42876 l 9.38545,9.38546 c 1.22207,1.22206 3.2067,1.22206 4.42876,0 l 9.38546,-9.38546 c 1.22206,-1.22206 1.22206,-3.20669 0,-4.42876 -1.22207,-1.22206 -3.2067,-1.22206 -4.42876,0 l -4.0377,4.04748 z m -18.77091,28.15636 c -3.45111,0 -6.25697,2.80586 -6.25697,6.256973 v 3.128485 c 0,3.451109 2.80586,6.256968 6.25697,6.256968 h 31.28484 c 3.45111,0 6.25697,-2.805859 6.25697,-6.256968 v -3.128485 c 0,-3.451113 -2.80586,-6.256973 -6.25697,-6.256973 h -4.58518 l -5.53351,5.533511 c -3.05027,3.050272 -8.00696,3.050272 -11.05724,0 l -5.52373,-5.533511 z m 29.7206,5.474852 c 3.12848,0 3.12848,4.692727 0,4.692727 -3.12848,0 -3.12848,-4.692727 0,-4.692727 z"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<metadata
|
||||
id="metadata923">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>shell environment v2</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
d="m 126.64205,98.327241 c 0,-2.840539 -2.29491,-5.135432 -5.13544,-5.135432 -2.84053,0 -5.13542,2.294893 -5.13542,5.135432 v 33.813599 l -6.64398,-6.64397 c -2.00602,-2.00602 -5.26382,-2.00602 -7.26984,0 -2.00603,2.00603 -2.00603,5.26382 0,7.26985 l 15.40629,15.4063 c 2.00604,2.00602 5.26382,2.00602 7.26985,0 l 15.40631,-15.4063 c 2.00602,-2.00603 2.00602,-5.26382 0,-7.26985 -2.00604,-2.00602 -5.26382,-2.00602 -7.26984,0 l -6.62793,6.64397 z M 95.829455,144.54611 c -5.66502,0 -10.27085,4.60584 -10.27085,10.27086 v 5.13543 c 0,5.66502 4.60583,10.27086 10.27085,10.27086 h 51.354315 c 5.66502,0 10.27086,-4.60584 10.27086,-10.27086 v -5.13543 c 0,-5.66502 -4.60584,-10.27086 -10.27086,-10.27086 h -7.52661 l -9.08329,9.0833 c -5.00706,5.00704 -13.1435,5.00704 -18.15057,0 l -9.06724,-9.0833 z m 48.786605,8.98701 c 5.13542,0 5.13542,7.70313 0,7.70313 -5.13542,0 -5.13542,-7.70313 0,-7.70313 z"
|
||||
id="path1"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0977651;stroke-opacity:1" /></svg>
|
||||
style="fill:#11b75c;fill-opacity:1;stroke:none;stroke-width:0.160482;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="scriptGroup_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
@@ -23,14 +23,16 @@
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="72.693081"
|
||||
inkscape:cy="84.526838"
|
||||
inkscape:cx="74.86663"
|
||||
inkscape:cy="103.12275"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2" />
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
@@ -38,19 +40,23 @@
|
||||
</defs>
|
||||
<title
|
||||
id="title6">shell environment v2</title>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline">
|
||||
<ellipse
|
||||
style="fill:#2e2e2e;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.333;stroke-linecap:round"
|
||||
id="path1374"
|
||||
cx="165.94623"
|
||||
cy="41.680531"
|
||||
rx="34.19622"
|
||||
ry="22.870531" />
|
||||
</g>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M215.09,242.25l0,0a4.28,4.28,0,0,0-6,6.05l23.32,23.34-23.3,23.32a4.28,4.28,0,0,0-.47,6,4.29,4.29,0,0,0,6,.46,4.56,4.56,0,0,0,.44-.44l26.36-26.36a4.29,4.29,0,0,0,0-6Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path8"
|
||||
style="fill:#e7e7e7;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 145.52308,149.51076 h -54.66 a 4.28,4.28 0 1 0 0,8.56 h 54.66 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10"
|
||||
style="fill:#1dbe71;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path12"
|
||||
style="fill:#e7e7e7;fill-opacity:1" />
|
||||
<metadata
|
||||
id="metadata923">
|
||||
<rdf:RDF>
|
||||
@@ -60,28 +66,14 @@
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="fg"
|
||||
style="display:inline">
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 215.09,242.25 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.36,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path8"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 306.76,294.67 H 252.1 a 4.28,4.28 0 1 0 0,8.56 h 54.66 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path10"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 366.61,182.47 a 39.37,39.37 0 0 0 -72.94,-20.55 h -108 a 23.83,23.83 0 0 0 -23.8,23.8 v 140.56 a 23.83,23.83 0 0 0 23.8,23.8 h 140.61 a 23.83,23.83 0 0 0 23.8,-23.8 V 214.52 a 39.31,39.31 0 0 0 16.53,-32.05 z m -45.39,10.44 8.52,-22.41 a 1.89,1.89 0 0 1 2,-1.46 1.86,1.86 0 0 1 1.85,1.81 3.62,3.62 0 0 1 -0.28,1.18 l -8.52,22.41 a 1.94,1.94 0 0 1 -3.81,-0.36 3.57,3.57 0 0 1 0.24,-1.17 z M 317.88,176 a 1.86,1.86 0 0 1 2,1.92 c 0,0.82 -0.18,1.61 -1.68,2.25 l -11.47,5 11.47,5 c 1.5,0.65 1.68,1.43 1.68,2.25 a 1.86,1.86 0 0 1 -2,1.92 4.19,4.19 0 0 1 -2,-0.5 l -14.5,-6.66 a 2.22,2.22 0 0 1 0,-4.06 l 14.5,-6.66 a 4.19,4.19 0 0 1 2,-0.46 z m -147.4,9.7 a 15.26,15.26 0 0 1 15.24,-15.24 h 104 A 39.48,39.48 0 0 0 292.5,201 h -122 z m 171,140.56 A 15.26,15.26 0 0 1 326.24,341.5 H 185.72 A 15.26,15.26 0 0 1 170.48,326.26 V 209.52 h 128.19 a 39.33,39.33 0 0 0 42.85,9.63 z m 11.56,-139 -14.5,6.66 a 4.21,4.21 0 0 1 -2,0.5 1.86,1.86 0 0 1 -2,-1.92 c 0,-0.82 0.18,-1.6 1.67,-2.25 l 11.47,-5 -11.47,-5 c -1.49,-0.64 -1.67,-1.43 -1.67,-2.25 a 1.86,1.86 0 0 1 2,-1.92 4.21,4.21 0 0 1 2,0.5 l 14.5,6.66 a 2.23,2.23 0 0 1 0,4.06 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path12"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 146.41832,124.37814 H 91.758331 a 4.28,4.28 0 1 0 0,8.56 h 54.659989 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10-9"
|
||||
style="fill:#1dbe71;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 146.14753,98.8228 H 91.487526 a 4.2800025,4.2800025 0 1 0 0,8.56 h 54.660004 a 4.2800025,4.2800025 0 0 0 0,-8.56 z"
|
||||
id="path10-4"
|
||||
style="fill:#1dbe71;fill-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="scriptGroup_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
@@ -23,14 +23,16 @@
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="21.493967"
|
||||
inkscape:cy="104.33027"
|
||||
inkscape:cx="82.111788"
|
||||
inkscape:cy="134.51843"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
@@ -46,10 +48,9 @@
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
d="m 145.52308,149.51076 h -54.66 a 4.28,4.28 0 1 0 0,8.56 h 54.66 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
style="fill:#11b75c;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
@@ -65,4 +66,14 @@
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 146.41832,124.37814 H 91.758331 a 4.28,4.28 0 1 0 0,8.56 h 54.659989 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10-9"
|
||||
style="fill:#11b75c;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 146.14753,98.8228 H 91.487526 a 4.2800025,4.2800025 0 1 0 0,8.56 h 54.660004 a 4.2800025,4.2800025 0 0 0 0,-8.56 z"
|
||||
id="path10-4"
|
||||
style="fill:#11b75c;fill-opacity:1" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="script_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
@@ -23,14 +23,17 @@
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="72.693081"
|
||||
inkscape:cy="84.526838"
|
||||
inkscape:cx="72.934588"
|
||||
inkscape:cy="84.285335"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2" />
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showguides="false" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
@@ -76,7 +79,7 @@
|
||||
d="M 306.76,294.67 H 252.1 a 4.28,4.28 0 1 0 0,8.56 h 54.66 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path10"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#1dbe71;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 366.61,182.47 a 39.37,39.37 0 0 0 -72.94,-20.55 h -108 a 23.83,23.83 0 0 0 -23.8,23.8 v 140.56 a 23.83,23.83 0 0 0 23.8,23.8 h 140.61 a 23.83,23.83 0 0 0 23.8,-23.8 V 214.52 a 39.31,39.31 0 0 0 16.53,-32.05 z m -45.39,10.44 8.52,-22.41 a 1.89,1.89 0 0 1 2,-1.46 1.86,1.86 0 0 1 1.85,1.81 3.62,3.62 0 0 1 -0.28,1.18 l -8.52,22.41 a 1.94,1.94 0 0 1 -3.81,-0.36 3.57,3.57 0 0 1 0.24,-1.17 z M 317.88,176 a 1.86,1.86 0 0 1 2,1.92 c 0,0.82 -0.18,1.61 -1.68,2.25 l -11.47,5 11.47,5 c 1.5,0.65 1.68,1.43 1.68,2.25 a 1.86,1.86 0 0 1 -2,1.92 4.19,4.19 0 0 1 -2,-0.5 l -14.5,-6.66 a 2.22,2.22 0 0 1 0,-4.06 l 14.5,-6.66 a 4.19,4.19 0 0 1 2,-0.46 z m -147.4,9.7 a 15.26,15.26 0 0 1 15.24,-15.24 h 104 A 39.48,39.48 0 0 0 292.5,201 h -122 z m 171,140.56 A 15.26,15.26 0 0 1 326.24,341.5 H 185.72 A 15.26,15.26 0 0 1 170.48,326.26 V 209.52 h 128.19 a 39.33,39.33 0 0 0 42.85,9.63 z m 11.56,-139 -14.5,6.66 a 4.21,4.21 0 0 1 -2,0.5 1.86,1.86 0 0 1 -2,-1.92 c 0,-0.82 0.18,-1.6 1.67,-2.25 l 11.47,-5 -11.47,-5 c -1.49,-0.64 -1.67,-1.43 -1.67,-2.25 a 1.86,1.86 0 0 1 2,-1.92 4.21,4.21 0 0 1 2,0.5 l 14.5,6.66 a 2.23,2.23 0 0 1 0,4.06 z"
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="script_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
@@ -23,14 +23,16 @@
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="21.493967"
|
||||
inkscape:cy="104.33027"
|
||||
inkscape:cx="21.735473"
|
||||
inkscape:cy="104.08877"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
@@ -49,7 +51,7 @@
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path10"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
style="fill:#11b75c;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="syncedIdentity_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-125.74552"
|
||||
inkscape:cy="84.675413"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#e7e7e7;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#1da3e0;fill-opacity:1;stroke-width:0.143895" /><path
|
||||
style="fill:#1da3e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.687719"
|
||||
d="M 135.18604,147.86716 107.5948,120.27799 a 4.0699131,4.0699131 0 0 0 -5.75757,0 l -5.727324,5.73007 7.266434,7.26643 a 4.834655,4.834655 0 0 1 4.9722,1.1581 4.8374059,4.8374059 0 0 1 1.1478,5.00453 l 7.00579,7.0037 a 4.8332798,4.8332798 0 0 1 5.00521,1.14986 4.8415325,4.8415325 0 0 1 0,6.84762 4.8484095,4.8484095 0 0 1 -6.85311,0 4.8442835,4.8442835 0 0 1 -1.05083,-5.26791 l -6.53333,-6.53127 V 159.83 a 4.8415325,4.8415325 0 0 1 1.27915,7.76435 4.8415325,4.8415325 0 0 1 -6.84759,0 4.8415325,4.8415325 0 0 1 0,-6.84833 4.8552865,4.8552865 0 0 1 1.58449,-1.05837 V 142.3386 a 4.8477216,4.8477216 0 0 1 -2.62707,-6.35037 l -7.164658,-7.16602 -18.920482,18.91566 a 4.0747272,4.0747272 0 0 0 0,5.75688 l 27.5926,27.5926 a 4.0747272,4.0747272 0 0 0 5.75622,0 l 27.46331,-27.46332 a 4.0747272,4.0747272 0 0 0 0,-5.75687"
|
||||
id="path2"
|
||||
clip-path="url(#clipPath2)" /></svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -4,38 +4,48 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="syncedIdentity_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
<style
|
||||
id="style2411">.cls-1{fill:#606161;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">identity</title>
|
||||
<path
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-125.74552"
|
||||
inkscape:cy="84.675413"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style><style
|
||||
id="style2411">.cls-1{fill:#606161;}</style></defs><title
|
||||
id="title858">identity</title><path
|
||||
class="cls-1"
|
||||
d="M332.32,153.7H179.68a26,26,0,0,0-26,26V332.32a26,26,0,0,0,26,26H332.32a26,26,0,0,0,26-26V179.68A26,26,0,0,0,332.32,153.7Zm14,178.62a14,14,0,0,1-14,14H179.68a14,14,0,0,1-14-14V179.68a14,14,0,0,1,14-14H332.32a14,14,0,0,1,14,14Z"
|
||||
id="path860"
|
||||
style="fill:#5b2cff;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" />
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>identity</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 128.46827,98.407463 a 38.670445,38.670445 0 1 0 -48.402498,0 A 70.895817,70.895817 0 0 0 33.40343,164.9851 v 6.44508 H 175.19505 V 164.9851 A 70.895817,70.895817 0 0 0 128.46827,98.407463 Z M 78.518945,68.308967 A 25.780297,25.780297 0 1 1 104.29923,94.089269 25.780297,25.780297 0 0 1 78.518945,68.308967 Z M 46.680286,158.54002 a 58.005667,58.005667 0 0 1 115.302364,0 z"
|
||||
id="path2417"
|
||||
style="fill:#5b2cff;fill-opacity:1;stroke-width:8.06261;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</svg>
|
||||
style="fill:#212121;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="M 154.40997,126.10572 A 53.816715,53.816715 0 0 0 142.81203,108.91027 54.051264,54.051264 0 0 0 125.61659,97.312331 c -0.0576,-0.0288 -0.11512,-0.0432 -0.17268,-0.072 8.96466,-6.47527 14.7924,-17.02277 14.7924,-28.92289 0,-19.71361 -15.97234,-35.68595 -35.68595,-35.68595 -19.713613,0 -35.685953,15.97234 -35.685953,35.68595 0,11.90012 5.82775,22.44762 14.79241,28.93728 -0.0576,0.0288 -0.11512,0.0432 -0.17268,0.072 -6.44649,2.719609 -12.23107,6.619159 -17.19545,11.597939 a 54.051264,54.051264 0 0 0 -11.59793,17.19545 53.485756,53.485756 0 0 0 -4.2449,19.87189 1.1511597,1.1511597 0 0 0 1.15116,1.17994 h 8.6337 c 0.63313,0 1.13677,-0.50363 1.15116,-1.12238 0.28779,-11.10869 4.74853,-21.5123 12.63397,-29.39774 8.15885,-8.15884 18.99414,-12.64838 30.534513,-12.64838 11.54038,0 22.37567,4.48954 30.53451,12.64838 7.88545,7.88544 12.34619,18.28905 12.63398,29.39774 0.0144,0.63314 0.51802,1.12238 1.15116,1.12238 h 8.6337 a 1.1511597,1.1511597 0 0 0 1.15116,-1.17994 c -0.1439,-6.87818 -1.56846,-13.56929 -4.2449,-19.88628 z M 104.55036,93.067431 c -6.604773,0 -12.821043,-2.57572 -17.497623,-7.25231 -4.67659,-4.67659 -7.25231,-10.89285 -7.25231,-17.49763 0,-6.60478 2.57572,-12.82104 7.25231,-17.49762 4.67658,-4.67659 10.89285,-7.25231 17.497623,-7.25231 6.60478,0 12.82104,2.57572 17.49763,7.25231 4.67659,4.67658 7.25231,10.89284 7.25231,17.49762 0,6.60478 -2.57572,12.82104 -7.25231,17.49763 -4.67659,4.67659 -10.89285,7.25231 -17.49763,7.25231 z"
|
||||
id="path1"
|
||||
style="fill:#0096d9;fill-opacity:1;stroke-width:0.143895" /><path
|
||||
style="fill:#0096d9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.687719"
|
||||
d="M 135.18604,147.86716 107.5948,120.27799 a 4.0699131,4.0699131 0 0 0 -5.75757,0 l -5.727324,5.73007 7.266434,7.26643 a 4.834655,4.834655 0 0 1 4.9722,1.1581 4.8374059,4.8374059 0 0 1 1.1478,5.00453 l 7.00579,7.0037 a 4.8332798,4.8332798 0 0 1 5.00521,1.14986 4.8415325,4.8415325 0 0 1 0,6.84762 4.8484095,4.8484095 0 0 1 -6.85311,0 4.8442835,4.8442835 0 0 1 -1.05083,-5.26791 l -6.53333,-6.53127 V 159.83 a 4.8415325,4.8415325 0 0 1 1.27915,7.76435 4.8415325,4.8415325 0 0 1 -6.84759,0 4.8415325,4.8415325 0 0 1 0,-6.84833 4.8552865,4.8552865 0 0 1 1.58449,-1.05837 V 142.3386 a 4.8477216,4.8477216 0 0 1 -2.62707,-6.35037 l -7.164658,-7.16602 -18.920482,18.91566 a 4.0747272,4.0747272 0 0 0 0,5.75688 l 27.5926,27.5926 a 4.0747272,4.0747272 0 0 0 5.75622,0 l 27.46331,-27.46332 a 4.0747272,4.0747272 0 0 0 0,-5.75687"
|
||||
id="path2"
|
||||
clip-path="url(#clipPath2)" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -1,75 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 205.60609 122.97245"
|
||||
xml:space="preserve"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="command_icon-dark.svg"
|
||||
width="205.60609"
|
||||
height="122.97245"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
inkscape:export-filename="C:\Projects\xpipe\xpipex\ext\proc\src\main\resources\io\xpipe\ext\proc\resources\img\command_icon-16-dark.png"
|
||||
inkscape:export-xdpi="7.8066268"
|
||||
inkscape:export-ydpi="7.8066268"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs21" /><sodipodi:namedview
|
||||
id="namedview19"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3671504"
|
||||
inkscape:cx="97.796912"
|
||||
inkscape:cy="1.6897955"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
|
||||
<g
|
||||
id="g16"
|
||||
transform="matrix(0.81,0,0,0.81,-104.55448,-145.88493)"
|
||||
style="fill:#f2f2f1;fill-opacity:1">
|
||||
<g
|
||||
id="g8"
|
||||
style="fill:#f2f2f1;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 166.9,196.4 c -3.3,-2.8 -8.2,-2.4 -11,0.8 -2.5,2.9 -2.5,7.2 0,10.1 l 47,47.1 -47,47.1 c -3.3,2.8 -3.6,7.7 -0.8,11 2.8,3.3 7.7,3.6 11,0.8 0.3,-0.3 0.6,-0.5 0.8,-0.8 l 52.6,-52.6 c 3,-3 3,-7.9 0,-11 z"
|
||||
id="path6"
|
||||
style="fill:#f2f2f1;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#f2f2f1;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 350.3,301.2 H 241.2 c -4.3,0 -7.8,3.5 -7.8,7.8 0,4.3 3.5,7.8 7.8,7.8 h 109.1 c 4.3,0 7.8,-3.5 7.8,-7.8 0,-4.3 -3.5,-7.8 -7.8,-7.8 z"
|
||||
id="path10"
|
||||
style="fill:#f2f2f1;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 350.3,317.5 H 241.2 c -4.7,0 -8.5,-3.8 -8.5,-8.5 0,-4.7 3.8,-8.5 8.5,-8.5 h 109.1 c 4.7,0 8.5,3.8 8.5,8.5 0,4.7 -3.8,8.5 -8.5,8.5 z M 241.2,301.9 c -3.9,0 -7,3.2 -7,7 0,3.8 3.2,7 7,7 h 109.1 c 3.9,0 7,-3.2 7,-7 0,-3.8 -3.2,-7 -7,-7 z"
|
||||
id="path12"
|
||||
style="fill:#f2f2f1;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0351742"
|
||||
inkscape:cx="106.26231"
|
||||
inkscape:cy="91.288987"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
class="cls-1"
|
||||
d="m 80.853124,99.14 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.359996,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
id="path8"
|
||||
style="fill:#07abd7;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="m 150.92968,151.56 h -43.59331 a 3.4134538,4.28 0 1 0 0,8.56 h 43.59331 a 3.4134538,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10"
|
||||
style="fill:#07abd7;fill-opacity:1;stroke-width:0.893049" /><path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path12"
|
||||
style="fill:#e4e4e4;fill-opacity:1" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
class="cls-1"
|
||||
d="m 48.143874,99.96657 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.36,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
id="path8-4"
|
||||
style="fill:#e4e4e4;fill-opacity:1" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,75 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 205.60609 122.97245"
|
||||
xml:space="preserve"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="command_icon.svg"
|
||||
width="205.60609"
|
||||
height="122.97245"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
inkscape:export-filename="C:\Projects\xpipe\xpipex\ext\proc\src\main\resources\io\xpipe\ext\proc\resources\img\command_icon-16.png"
|
||||
inkscape:export-xdpi="7.8066268"
|
||||
inkscape:export-ydpi="7.8066268"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs21" /><sodipodi:namedview
|
||||
id="namedview19"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3671504"
|
||||
inkscape:cx="-23.445912"
|
||||
inkscape:cy="2.1122443"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
.st0{fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
|
||||
<g
|
||||
id="g16"
|
||||
transform="matrix(0.81,0,0,0.81,-104.55448,-145.88493)"
|
||||
style="fill:#0c0c0c;fill-opacity:1">
|
||||
<g
|
||||
id="g8"
|
||||
style="fill:#0c0c0c;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 166.9,196.4 c -3.3,-2.8 -8.2,-2.4 -11,0.8 -2.5,2.9 -2.5,7.2 0,10.1 l 47,47.1 -47,47.1 c -3.3,2.8 -3.6,7.7 -0.8,11 2.8,3.3 7.7,3.6 11,0.8 0.3,-0.3 0.6,-0.5 0.8,-0.8 l 52.6,-52.6 c 3,-3 3,-7.9 0,-11 z"
|
||||
id="path6"
|
||||
style="fill:#0c0c0c;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#0c0c0c;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 350.3,301.2 H 241.2 c -4.3,0 -7.8,3.5 -7.8,7.8 0,4.3 3.5,7.8 7.8,7.8 h 109.1 c 4.3,0 7.8,-3.5 7.8,-7.8 0,-4.3 -3.5,-7.8 -7.8,-7.8 z"
|
||||
id="path10"
|
||||
style="fill:#0c0c0c;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 350.3,317.5 H 241.2 c -4.7,0 -8.5,-3.8 -8.5,-8.5 0,-4.7 3.8,-8.5 8.5,-8.5 h 109.1 c 4.7,0 8.5,3.8 8.5,8.5 0,4.7 -3.8,8.5 -8.5,8.5 z M 241.2,301.9 c -3.9,0 -7,3.2 -7,7 0,3.8 3.2,7 7,7 h 109.1 c 3.9,0 7,-3.2 7,-7 0,-3.8 -3.2,-7 -7,-7 z"
|
||||
id="path12"
|
||||
style="fill:#0c0c0c;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.73197866"
|
||||
inkscape:cx="-204.92401"
|
||||
inkscape:cy="-107.24356"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
class="cls-1"
|
||||
d="m 80.853124,99.14 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.359996,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
id="path8"
|
||||
style="fill:#216d82;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="m 150.92968,151.56 h -43.59331 a 3.4134538,4.28 0 1 0 0,8.56 h 43.59331 a 3.4134538,4.28 0 0 0 0,-8.56 z"
|
||||
id="path10"
|
||||
style="fill:#216d82;fill-opacity:1;stroke-width:0.893049" /><path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path12"
|
||||
style="fill:#2e2e2e;fill-opacity:1" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
class="cls-1"
|
||||
d="m 48.143874,99.96657 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.36,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
id="path8-4"
|
||||
style="fill:#2e2e2e;fill-opacity:1" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -4,19 +4,19 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="serial_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="serial_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
inkscape:export-filename="C:\Projects\xpipe\xpipex\ext\proc\src\main\resources\io\xpipe\ext\proc\resources\img\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview873"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -25,39 +25,73 @@
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0472164"
|
||||
inkscape:cx="-14.801144"
|
||||
inkscape:cy="296.02288"
|
||||
inkscape:zoom="2.0944328"
|
||||
inkscape:cx="45.119614"
|
||||
inkscape:cy="112.44094"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">ssh draft</title>
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>ssh draft</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
style="overflow:hidden;fill:#ffffff;fill-opacity:1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title858">ssh draft</title><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>ssh draft</dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
style="overflow:hidden;fill:#ebebeb;fill-opacity:1"
|
||||
id="g838"
|
||||
transform="matrix(0.21313953,0,0,0.21313953,-7.0523126,-5.7693029)">
|
||||
<path
|
||||
d="m 298.66667,128 h 426.66666 v 85.33333 h 85.33334 v 128 h -128 v 256 H 341.33333 v -256 h -128 v -128 h 85.33334 V 128 m 426.66666,256 h 85.33334 V 597.33333 H 725.33333 V 384 m -256,256 h 85.33334 V 938.66667 H 469.33333 V 640 m -256,-256 h 85.33334 v 213.33333 h -85.33334 z"
|
||||
transform="matrix(0.12121855,0,0,0.12121855,325.08963,129.41724)"><path
|
||||
d="m -2050.677,-340.3579 h 426.6667 v 85.33333 h 85.3333 v 128 h -128 v 256 h -341.3333 v -256 h -128 v -128 h 85.3333 v -85.33333 m 426.6667,256.000003 h 85.3333 V 128.97543 h -85.3333 V -84.357897 m -256,255.999997 h 85.3333 v 298.66667 h -85.3333 V 171.6421 m -256,-255.999997 h 85.3333 V 128.97543 h -85.3333 z"
|
||||
fill=""
|
||||
id="path829"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
style="fill:#ebebeb;fill-opacity:1" /></g><path
|
||||
class="cls-1"
|
||||
d="M 178.64,0 H 26 A 26,26 0 0 0 0,26 v 152.62 a 26,26 0 0 0 26,26 h 152.64 a 26,26 0 0 0 26,-26 V 25.98 A 26,26 0 0 0 178.64,0 Z m 14,178.62 a 14,14 0 0 1 -14,14 H 26 a 14,14 0 0 1 -14,-14 V 25.98 a 14,14 0 0 1 14,-14 h 152.64 a 14,14 0 0 1 14,14 z"
|
||||
id="path860"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><g
|
||||
style="fill:#ebebeb;fill-opacity:1"
|
||||
id="g1"
|
||||
transform="matrix(5.8805908,0,0,5.8805908,32.338511,-21.245692)"><path
|
||||
d="m 6.99998,11.5 c 0.41422,0 0.75,-0.3358 0.75,-0.75 0,-0.4142 -0.33578,-0.75 -0.75,-0.75 -0.41421,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.33579,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path1"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 10.25,10.75 c 0,0.4142 -0.3358,0.75 -0.75002,0.75 -0.41421,0 -0.75,-0.3358 -0.75,-0.75 0,-0.4142 0.33579,-0.75 0.75,-0.75 0.41422,0 0.75002,0.3358 0.75002,0.75 z"
|
||||
fill="#212121"
|
||||
id="path2"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 8.24998,14 c 0.41422,0 0.75,-0.3358 0.75,-0.75 0,-0.4142 -0.33578,-0.75 -0.75,-0.75 -0.41421,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.33579,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path3"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 11.5,13.25 c 0,0.4142 -0.3358,0.75 -0.75,0.75 -0.4142,0 -0.75002,-0.3358 -0.75002,-0.75 0,-0.4142 0.33582,-0.75 0.75002,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path4"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="M 13.25,14 C 13.6642,14 14,13.6642 14,13.25 14,12.8358 13.6642,12.5 13.25,12.5 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path5"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="M 16.5,13.25 C 16.5,13.6642 16.1642,14 15.75,14 15.3358,14 15,13.6642 15,13.25 c 0,-0.4142 0.3358,-0.75 0.75,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path6"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 12,11.5 c 0.4142,0 0.75,-0.3358 0.75,-0.75 C 12.75,10.3358 12.4142,10 12,10 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path7"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 15.25,10.75 c 0,0.4142 -0.3358,0.75 -0.75,0.75 -0.4142,0 -0.75,-0.3358 -0.75,-0.75 0,-0.4142 0.3358,-0.75 0.75,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path8"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 17,11.5 c 0.4142,0 0.75,-0.3358 0.75,-0.75 C 17.75,10.3358 17.4142,10 17,10 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path9"
|
||||
style="fill:#ebebeb;fill-opacity:1" /><path
|
||||
d="m 4.90701,6.99933 c -1.77628,0 -3.08659,1.65883 -2.67524,3.38687 l 1.07152,4.5013 c 0.29491,1.2388 1.40178,2.1132 2.67525,2.1132 H 18.0172 c 1.2729,0 2.3794,-0.8736 2.6749,-2.1117 l 1.0743,-4.5013 C 22.1789,8.65932 20.8685,6.99933 19.0915,6.99933 Z M 3.69099,10.0388 C 3.50402,9.25334 4.09961,8.49933 4.90701,8.49933 H 19.0915 c 0.8077,0 1.4034,0.75454 1.2159,1.54017 l -1.0743,4.5013 c -0.1343,0.5628 -0.6373,0.9599 -1.2159,0.9599 H 5.97854 c -0.57885,0 -1.08197,-0.3975 -1.21602,-0.9606 z"
|
||||
fill="#212121"
|
||||
id="path10"
|
||||
style="fill:#ebebeb;fill-opacity:1" /></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 5.5 KiB |
@@ -4,19 +4,19 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="serial_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="serial_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
inkscape:export-filename="C:\Projects\xpipe\xpipex\ext\proc\src\main\resources\io\xpipe\ext\proc\resources\img\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview873"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -25,38 +25,73 @@
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0472164"
|
||||
inkscape:cx="-14.801144"
|
||||
inkscape:cy="296.02288"
|
||||
inkscape:zoom="2.0944328"
|
||||
inkscape:cx="45.119614"
|
||||
inkscape:cy="112.44094"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<defs
|
||||
id="defs856">
|
||||
<style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title858">ssh draft</title>
|
||||
<metadata
|
||||
id="metadata932">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>ssh draft</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
style="overflow:hidden;fill:currentColor"
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title858">ssh draft</title><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>ssh draft</dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
style="overflow:hidden;fill:#2c2828;fill-opacity:1"
|
||||
id="g838"
|
||||
transform="matrix(0.21313953,0,0,0.21313953,-7.0523126,-5.7693029)">
|
||||
<path
|
||||
d="m 298.66667,128 h 426.66666 v 85.33333 h 85.33334 v 128 h -128 v 256 H 341.33333 v -256 h -128 v -128 h 85.33334 V 128 m 426.66666,256 h 85.33334 V 597.33333 H 725.33333 V 384 m -256,256 h 85.33334 V 938.66667 H 469.33333 V 640 m -256,-256 h 85.33334 v 213.33333 h -85.33334 z"
|
||||
transform="matrix(0.12121855,0,0,0.12121855,325.08963,129.41724)"><path
|
||||
d="m -2050.677,-340.3579 h 426.6667 v 85.33333 h 85.3333 v 128 h -128 v 256 h -341.3333 v -256 h -128 v -128 h 85.3333 v -85.33333 m 426.6667,256.000003 h 85.3333 V 128.97543 h -85.3333 V -84.357897 m -256,255.999997 h 85.3333 v 298.66667 h -85.3333 V 171.6421 m -256,-255.999997 h 85.3333 V 128.97543 h -85.3333 z"
|
||||
fill=""
|
||||
id="path829" />
|
||||
</g>
|
||||
</svg>
|
||||
id="path829"
|
||||
style="fill:#2c2828;fill-opacity:1" /></g><path
|
||||
class="cls-1"
|
||||
d="M 178.64,0 H 26 A 26,26 0 0 0 0,26 v 152.62 a 26,26 0 0 0 26,26 h 152.64 a 26,26 0 0 0 26,-26 V 25.98 A 26,26 0 0 0 178.64,0 Z m 14,178.62 a 14,14 0 0 1 -14,14 H 26 a 14,14 0 0 1 -14,-14 V 25.98 a 14,14 0 0 1 14,-14 h 152.64 a 14,14 0 0 1 14,14 z"
|
||||
id="path860"
|
||||
style="fill:#2a2a2a;fill-opacity:1" /><g
|
||||
style="fill:#252323;fill-opacity:1"
|
||||
id="g1"
|
||||
transform="matrix(5.8805908,0,0,5.8805908,32.338511,-21.245692)"><path
|
||||
d="m 6.99998,11.5 c 0.41422,0 0.75,-0.3358 0.75,-0.75 0,-0.4142 -0.33578,-0.75 -0.75,-0.75 -0.41421,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.33579,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path1"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 10.25,10.75 c 0,0.4142 -0.3358,0.75 -0.75002,0.75 -0.41421,0 -0.75,-0.3358 -0.75,-0.75 0,-0.4142 0.33579,-0.75 0.75,-0.75 0.41422,0 0.75002,0.3358 0.75002,0.75 z"
|
||||
fill="#212121"
|
||||
id="path2"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 8.24998,14 c 0.41422,0 0.75,-0.3358 0.75,-0.75 0,-0.4142 -0.33578,-0.75 -0.75,-0.75 -0.41421,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.33579,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path3"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 11.5,13.25 c 0,0.4142 -0.3358,0.75 -0.75,0.75 -0.4142,0 -0.75002,-0.3358 -0.75002,-0.75 0,-0.4142 0.33582,-0.75 0.75002,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path4"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="M 13.25,14 C 13.6642,14 14,13.6642 14,13.25 14,12.8358 13.6642,12.5 13.25,12.5 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path5"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="M 16.5,13.25 C 16.5,13.6642 16.1642,14 15.75,14 15.3358,14 15,13.6642 15,13.25 c 0,-0.4142 0.3358,-0.75 0.75,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path6"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 12,11.5 c 0.4142,0 0.75,-0.3358 0.75,-0.75 C 12.75,10.3358 12.4142,10 12,10 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path7"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 15.25,10.75 c 0,0.4142 -0.3358,0.75 -0.75,0.75 -0.4142,0 -0.75,-0.3358 -0.75,-0.75 0,-0.4142 0.3358,-0.75 0.75,-0.75 0.4142,0 0.75,0.3358 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path8"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 17,11.5 c 0.4142,0 0.75,-0.3358 0.75,-0.75 C 17.75,10.3358 17.4142,10 17,10 c -0.4142,0 -0.75,0.3358 -0.75,0.75 0,0.4142 0.3358,0.75 0.75,0.75 z"
|
||||
fill="#212121"
|
||||
id="path9"
|
||||
style="fill:#252323;fill-opacity:1" /><path
|
||||
d="m 4.90701,6.99933 c -1.77628,0 -3.08659,1.65883 -2.67524,3.38687 l 1.07152,4.5013 c 0.29491,1.2388 1.40178,2.1132 2.67525,2.1132 H 18.0172 c 1.2729,0 2.3794,-0.8736 2.6749,-2.1117 l 1.0743,-4.5013 C 22.1789,8.65932 20.8685,6.99933 19.0915,6.99933 Z M 3.69099,10.0388 C 3.50402,9.25334 4.09961,8.49933 4.90701,8.49933 H 19.0915 c 0.8077,0 1.4034,0.75454 1.2159,1.54017 l -1.0743,4.5013 c -0.1343,0.5628 -0.6373,0.9599 -1.2159,0.9599 H 5.97854 c -0.57885,0 -1.08197,-0.3975 -1.21602,-0.9606 z"
|
||||
fill="#212121"
|
||||
id="path10"
|
||||
style="fill:#252323;fill-opacity:1" /></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 5.5 KiB |
@@ -4,84 +4,67 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="shellEnvironment_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="72.693081"
|
||||
inkscape:cy="84.526838"
|
||||
inkscape:zoom="1.0351742"
|
||||
inkscape:cx="-171.95174"
|
||||
inkscape:cy="173.40078"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title6">shell environment v2</title>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline">
|
||||
<ellipse
|
||||
style="fill:#2e2e2e;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.333;stroke-linecap:round"
|
||||
id="path1374"
|
||||
cx="165.94623"
|
||||
cy="41.680531"
|
||||
rx="34.19622"
|
||||
ry="22.870531" />
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata923">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>shell environment v2</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="fg"
|
||||
style="display:inline">
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 215.09,242.25 v 0 a 4.28,4.28 0 0 0 -6,6.05 l 23.32,23.34 -23.3,23.32 a 4.28,4.28 0 0 0 -0.47,6 4.29,4.29 0 0 0 6,0.46 4.56,4.56 0 0 0 0.44,-0.44 l 26.36,-26.36 a 4.29,4.29 0 0 0 0,-6 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path8"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M 306.76,294.67 H 252.1 a 4.28,4.28 0 1 0 0,8.56 h 54.66 a 4.28,4.28 0 0 0 0,-8.56 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path10"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="m 366.61,182.47 a 39.37,39.37 0 0 0 -72.94,-20.55 h -108 a 23.83,23.83 0 0 0 -23.8,23.8 v 140.56 a 23.83,23.83 0 0 0 23.8,23.8 h 140.61 a 23.83,23.83 0 0 0 23.8,-23.8 V 214.52 a 39.31,39.31 0 0 0 16.53,-32.05 z m -45.39,10.44 8.52,-22.41 a 1.89,1.89 0 0 1 2,-1.46 1.86,1.86 0 0 1 1.85,1.81 3.62,3.62 0 0 1 -0.28,1.18 l -8.52,22.41 a 1.94,1.94 0 0 1 -3.81,-0.36 3.57,3.57 0 0 1 0.24,-1.17 z M 317.88,176 a 1.86,1.86 0 0 1 2,1.92 c 0,0.82 -0.18,1.61 -1.68,2.25 l -11.47,5 11.47,5 c 1.5,0.65 1.68,1.43 1.68,2.25 a 1.86,1.86 0 0 1 -2,1.92 4.19,4.19 0 0 1 -2,-0.5 l -14.5,-6.66 a 2.22,2.22 0 0 1 0,-4.06 l 14.5,-6.66 a 4.19,4.19 0 0 1 2,-0.46 z m -147.4,9.7 a 15.26,15.26 0 0 1 15.24,-15.24 h 104 A 39.48,39.48 0 0 0 292.5,201 h -122 z m 171,140.56 A 15.26,15.26 0 0 1 326.24,341.5 H 185.72 A 15.26,15.26 0 0 1 170.48,326.26 V 209.52 h 128.19 a 39.33,39.33 0 0 0 42.85,9.63 z m 11.56,-139 -14.5,6.66 a 4.21,4.21 0 0 1 -2,0.5 1.86,1.86 0 0 1 -2,-1.92 c 0,-0.82 0.18,-1.6 1.67,-2.25 l 11.47,-5 -11.47,-5 c -1.49,-0.64 -1.67,-1.43 -1.67,-2.25 a 1.86,1.86 0 0 1 2,-1.92 4.21,4.21 0 0 1 2,0.5 l 14.5,6.66 a 2.23,2.23 0 0 1 0,4.06 z"
|
||||
transform="translate(-161.92,-143.11)"
|
||||
id="path12"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
inkscape:current-layer="g3"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
class="cls-1"
|
||||
d="M215.09,242.25l0,0a4.28,4.28,0,0,0-6,6.05l23.32,23.34-23.3,23.32a4.28,4.28,0,0,0-.47,6,4.29,4.29,0,0,0,6,.46,4.56,4.56,0,0,0,.44-.44l26.36-26.36a4.29,4.29,0,0,0,0-6Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path8"
|
||||
style="fill:#e9e9e9;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path10"
|
||||
style="fill:#02b5e9;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path12"
|
||||
style="fill:#ececec;fill-opacity:1" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
style="fill:#216d82;fill-opacity:1"
|
||||
id="g3"
|
||||
transform="matrix(0.09941835,0,0,0.09941835,96.174855,96.863343)"><g
|
||||
id="g2"
|
||||
style="fill:#02b5e9;fill-opacity:1"
|
||||
transform="translate(-7.2875457)">
|
||||
<g
|
||||
id="g1"
|
||||
style="fill:#02b5e9;fill-opacity:1">
|
||||
<path
|
||||
d="M 472.615,274.117 V 198.4 l -55.335,-9.255 c -4.332,-16.64 -10.929,-32.492 -19.692,-47.458 L 430.178,96 376.615,42.437 330.929,75.028 C 315.963,66.265 300.012,59.668 283.372,55.336 L 274.215,0 H 198.4 l -9.157,55.335 c -16.64,4.332 -32.591,10.929 -47.557,19.692 L 96,42.437 42.437,96 75.028,141.686 c -8.763,14.966 -15.36,30.818 -19.692,47.458 L 0,198.4 v 75.717 l 55.335,9.255 c 4.332,16.64 10.929,32.591 19.692,47.557 L 42.436,376.615 96,430.178 141.686,397.489 c 14.966,8.862 30.917,15.458 47.557,19.791 l 9.157,55.335 h 75.815 l 9.157,-55.335 c 16.64,-4.332 32.591,-10.929 47.557,-19.791 l 45.686,32.689 53.563,-53.563 -32.591,-45.686 c 8.763,-14.966 15.36,-30.917 19.692,-47.557 z m -236.307,60.652 c -54.252,0 -98.462,-44.209 -98.462,-98.462 0,-54.351 44.209,-98.462 98.462,-98.462 54.253,0 98.462,44.111 98.462,98.462 -10e-4,54.253 -44.21,98.462 -98.462,98.462 z"
|
||||
id="path1"
|
||||
style="fill:#02b5e9;fill-opacity:1" />
|
||||
</g>
|
||||
</g></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -4,16 +4,16 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="shelEnvironment_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="shellEnvironment_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview15"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -22,47 +22,48 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0703483"
|
||||
inkscape:cx="21.493967"
|
||||
inkscape:cy="104.33027"
|
||||
inkscape:zoom="0.73197866"
|
||||
inkscape:cx="-125.68672"
|
||||
inkscape:cy="103.14508"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title6">shell environment v2</title>
|
||||
<path
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" /><defs
|
||||
id="defs4"><style
|
||||
id="style2">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title6">shell environment v2</title><path
|
||||
class="cls-1"
|
||||
d="M215.09,242.25l0,0a4.28,4.28,0,0,0-6,6.05l23.32,23.34-23.3,23.32a4.28,4.28,0,0,0-.47,6,4.29,4.29,0,0,0,6,.46,4.56,4.56,0,0,0,.44-.44l26.36-26.36a4.29,4.29,0,0,0,0-6Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
style="fill:#2e2e2e;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M306.76,294.67H252.1a4.28,4.28,0,1,0,0,8.56h54.66a4.28,4.28,0,0,0,0-8.56Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path10"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
style="fill:#216d82;fill-opacity:1" /><path
|
||||
class="cls-1"
|
||||
d="M366.61,182.47a39.37,39.37,0,0,0-72.94-20.55h-108a23.83,23.83,0,0,0-23.8,23.8V326.28a23.83,23.83,0,0,0,23.8,23.8H326.28a23.83,23.83,0,0,0,23.8-23.8V214.52A39.31,39.31,0,0,0,366.61,182.47Zm-45.39,10.44,8.52-22.41a1.89,1.89,0,0,1,2-1.46,1.86,1.86,0,0,1,1.85,1.81,3.62,3.62,0,0,1-.28,1.18l-8.52,22.41a1.94,1.94,0,0,1-3.81-.36A3.57,3.57,0,0,1,321.22,192.91ZM317.88,176a1.86,1.86,0,0,1,2,1.92c0,.82-.18,1.61-1.68,2.25l-11.47,5,11.47,5c1.5.65,1.68,1.43,1.68,2.25a1.86,1.86,0,0,1-2,1.92,4.19,4.19,0,0,1-2-.5l-14.5-6.66a2.22,2.22,0,0,1,0-4.06l14.5-6.66A4.19,4.19,0,0,1,317.88,176Zm-147.4,9.7a15.26,15.26,0,0,1,15.24-15.24h104A39.48,39.48,0,0,0,292.5,201h-122Zm171,140.56a15.26,15.26,0,0,1-15.24,15.24H185.72a15.26,15.26,0,0,1-15.24-15.24V209.52H298.67a39.33,39.33,0,0,0,42.85,9.63Zm11.56-139-14.5,6.66a4.21,4.21,0,0,1-2,.5,1.86,1.86,0,0,1-2-1.92c0-.82.18-1.6,1.67-2.25l11.47-5-11.47-5c-1.49-.64-1.67-1.43-1.67-2.25a1.86,1.86,0,0,1,2-1.92,4.21,4.21,0,0,1,2,.5l14.5,6.66a2.23,2.23,0,0,1,0,4.06Z"
|
||||
transform="translate(-161.92 -143.11)"
|
||||
id="path12"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<metadata
|
||||
id="metadata923">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>shell environment v2</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
style="fill:#2e2e2e;fill-opacity:1" /><metadata
|
||||
id="metadata923"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>shell environment v2</dc:title></cc:Work></rdf:RDF></metadata><g
|
||||
style="fill:#216d82;fill-opacity:1"
|
||||
id="g3"
|
||||
transform="matrix(0.09941835,0,0,0.09941835,96.174855,96.863343)"><g
|
||||
id="g2"
|
||||
style="fill:#216d82;fill-opacity:1">
|
||||
<g
|
||||
id="g1"
|
||||
style="fill:#216d82;fill-opacity:1">
|
||||
<path
|
||||
d="M 472.615,274.117 V 198.4 l -55.335,-9.255 c -4.332,-16.64 -10.929,-32.492 -19.692,-47.458 L 430.178,96 376.615,42.437 330.929,75.028 C 315.963,66.265 300.012,59.668 283.372,55.336 L 274.215,0 H 198.4 l -9.157,55.335 c -16.64,4.332 -32.591,10.929 -47.557,19.692 L 96,42.437 42.437,96 75.028,141.686 c -8.763,14.966 -15.36,30.818 -19.692,47.458 L 0,198.4 v 75.717 l 55.335,9.255 c 4.332,16.64 10.929,32.591 19.692,47.557 L 42.436,376.615 96,430.178 141.686,397.489 c 14.966,8.862 30.917,15.458 47.557,19.791 l 9.157,55.335 h 75.815 l 9.157,-55.335 c 16.64,-4.332 32.591,-10.929 47.557,-19.791 l 45.686,32.689 53.563,-53.563 -32.591,-45.686 c 8.763,-14.966 15.36,-30.917 19.692,-47.557 z m -236.307,60.652 c -54.252,0 -98.462,-44.209 -98.462,-98.462 0,-54.351 44.209,-98.462 98.462,-98.462 54.253,0 98.462,44.111 98.462,98.462 -10e-4,54.253 -44.21,98.462 -98.462,98.462 z"
|
||||
id="path1"
|
||||
style="fill:#216d82;fill-opacity:1" />
|
||||
</g>
|
||||
</g></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -674,7 +674,8 @@ shouldElevateDescription=Whether to run this script with elevated permissions
|
||||
script.displayName=Shell script
|
||||
script.displayDescription=Create a reusable shell script
|
||||
scriptGroup.displayName=Script group
|
||||
scriptGroup.displayDescription=Create a group to organize scripts within
|
||||
#force
|
||||
scriptGroup.displayDescription=Group scripts together and organize them within
|
||||
scriptGroup=Group
|
||||
scriptGroupDescription=The group to assign this script to
|
||||
scriptGroupGroupDescription=The group to assign this script group to
|
||||
@@ -1909,7 +1910,7 @@ scriptCollectionSourceType=Source type
|
||||
scriptCollectionSourceTypeDescription=The type of source from where shell scripts should be loaded
|
||||
gitRepository=Git repository
|
||||
scriptCollectionSource.displayName=Script source
|
||||
scriptCollectionSource.displayDescription=Automatically import shell script files from an existing source
|
||||
scriptCollectionSource.displayDescription=Automatically import shell scripts from an existing source
|
||||
directorySource=Directory source
|
||||
gitRepositorySource=Git repository source
|
||||
refreshSource=Refresh source
|
||||
|
||||