Rework
@@ -99,9 +99,7 @@ public class IntegratedTextAreaComp extends RegionStructureBuilder<AnchorPane, I
|
||||
var count = (int) val.lines().count() + (val.endsWith("\n") ? 1 : 0);
|
||||
// Somehow the handling of trailing newlines is weird
|
||||
// This makes the handling better for JavaFX text areas
|
||||
if (val.contains("\n")) {
|
||||
count++;
|
||||
}
|
||||
count++;
|
||||
return Math.max(1, count);
|
||||
}, value));
|
||||
});
|
||||
|
||||
@@ -16,6 +16,7 @@ import javafx.beans.binding.Bindings;
|
||||
import javafx.beans.property.Property;
|
||||
import javafx.beans.property.SimpleBooleanProperty;
|
||||
import javafx.beans.property.SimpleDoubleProperty;
|
||||
import javafx.beans.property.SimpleObjectProperty;
|
||||
import javafx.beans.value.ObservableDoubleValue;
|
||||
import javafx.geometry.Pos;
|
||||
import javafx.scene.control.Button;
|
||||
@@ -188,10 +189,10 @@ public class ModalOverlayComp extends RegionBuilder<Region> {
|
||||
|
||||
if (newValue.getTitle() != null) {
|
||||
var l = new LabelComp(
|
||||
newValue.getTitle().getValue(),
|
||||
newValue.getGraphic() != null
|
||||
newValue.getTitle(),
|
||||
new SimpleObjectProperty<>(newValue.getGraphic() != null
|
||||
? newValue.getGraphic()
|
||||
: new LabelGraphic.IconGraphic("mdi2i-information-outline"));
|
||||
: new LabelGraphic.IconGraphic("mdi2i-information-outline")));
|
||||
l.apply(struc -> {
|
||||
struc.setGraphicTextGap(8);
|
||||
AppFontSizes.xl(struc);
|
||||
|
||||
@@ -31,34 +31,10 @@ public class ShellDialectChoiceComp extends SimpleRegionBuilder {
|
||||
NULL_DISABLED
|
||||
}
|
||||
|
||||
public static final Map<ShellDialect, String> ICONS = new LinkedHashMap<>();
|
||||
|
||||
static {
|
||||
ICONS.put(ShellDialects.CMD, "cmd_icon.svg");
|
||||
ICONS.put(ShellDialects.POWERSHELL, "powershell_logo.svg");
|
||||
ICONS.put(ShellDialects.POWERSHELL_CORE, "pwsh_logo.png");
|
||||
ICONS.put(ShellDialects.SH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.ASH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.DASH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.BASH, "bash_icon.svg");
|
||||
ICONS.put(ShellDialects.FISH, "fish_icon.svg");
|
||||
ICONS.put(ShellDialects.ZSH, "zsh_icon.svg");
|
||||
ICONS.put(ShellDialects.NUSHELL, "nushell_icon.svg");
|
||||
ICONS.put(ShellDialects.XONSH, "xonsh_icon.png");
|
||||
}
|
||||
|
||||
private final List<ShellDialect> available;
|
||||
private final Property<ShellDialect> selected;
|
||||
private final NullHandling nullHandling;
|
||||
|
||||
public static String getImageName(ShellDialect t) {
|
||||
if (t == null) {
|
||||
return "proc:defaultShell_icon.svg";
|
||||
}
|
||||
|
||||
return "proc:" + ICONS.get(t);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Region createSimple() {
|
||||
Supplier<ListCell<ShellDialect>> supplier = () -> new ListCell<>() {
|
||||
@@ -71,12 +47,7 @@ public class ShellDialectChoiceComp extends SimpleRegionBuilder {
|
||||
: nullHandling == NullHandling.NULL_IS_ALL
|
||||
? AppI18n.get("all")
|
||||
: AppI18n.get("default"));
|
||||
setGraphic(
|
||||
item != null
|
||||
? PrettyImageHelper.ofFixedSizeSquare("proc:" + ICONS.get(item), 16)
|
||||
.build()
|
||||
: PrettyImageHelper.ofFixedSizeSquare("proc:defaultShell_icon.svg", 16)
|
||||
.build());
|
||||
setGraphic(PrettyImageHelper.ofFixedSizeSquare(ShellDialectIcons.getImageName(item), 16).build());
|
||||
}
|
||||
};
|
||||
var cb = new ComboBox<ShellDialect>();
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
package io.xpipe.app.ext;
|
||||
|
||||
|
||||
import io.xpipe.app.comp.SimpleRegionBuilder;
|
||||
import io.xpipe.app.comp.base.PrettyImageHelper;
|
||||
import io.xpipe.app.core.AppI18n;
|
||||
import io.xpipe.app.platform.MenuHelper;
|
||||
import io.xpipe.app.process.ShellDialect;
|
||||
import io.xpipe.app.process.ShellDialects;
|
||||
import javafx.beans.property.Property;
|
||||
import javafx.scene.control.ComboBox;
|
||||
import javafx.scene.control.ListCell;
|
||||
import javafx.scene.control.skin.ComboBoxListViewSkin;
|
||||
import javafx.scene.input.KeyCode;
|
||||
import javafx.scene.layout.Region;
|
||||
import lombok.AllArgsConstructor;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
public class ShellDialectIcons {
|
||||
|
||||
private static final Map<ShellDialect, String> ICONS = new LinkedHashMap<>();
|
||||
|
||||
static {
|
||||
ICONS.put(ShellDialects.CMD, "cmd_icon.svg");
|
||||
ICONS.put(ShellDialects.POWERSHELL, "powershell_icon.svg");
|
||||
ICONS.put(ShellDialects.POWERSHELL_CORE, "pwsh_icon.svg");
|
||||
ICONS.put(ShellDialects.SH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.ASH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.DASH, "sh_icon.svg");
|
||||
ICONS.put(ShellDialects.BASH, "bash_icon.svg");
|
||||
ICONS.put(ShellDialects.FISH, "fish_icon.svg");
|
||||
ICONS.put(ShellDialects.ZSH, "zsh_icon.svg");
|
||||
ICONS.put(ShellDialects.NUSHELL, "nushell_icon.svg");
|
||||
ICONS.put(ShellDialects.XONSH, "xonsh_icon.svg");
|
||||
}
|
||||
|
||||
public static String getImageName(ShellDialect t) {
|
||||
if (t == null) {
|
||||
return "proc:defaultShell_icon.svg";
|
||||
}
|
||||
|
||||
return "proc:" + ICONS.get(t);
|
||||
}
|
||||
}
|
||||
@@ -2,10 +2,13 @@ package io.xpipe.app.pwman;
|
||||
|
||||
import io.xpipe.app.core.AppI18n;
|
||||
import io.xpipe.app.ext.ProcessControlProvider;
|
||||
import io.xpipe.app.issue.ErrorEvent;
|
||||
import io.xpipe.app.issue.ErrorEventFactory;
|
||||
import io.xpipe.app.process.CommandBuilder;
|
||||
import io.xpipe.app.process.CommandSupport;
|
||||
import io.xpipe.app.process.ProcessOutputException;
|
||||
import io.xpipe.app.process.ShellControl;
|
||||
import io.xpipe.app.util.DocumentationLink;
|
||||
import io.xpipe.core.InPlaceSecretValue;
|
||||
import io.xpipe.core.JacksonMapper;
|
||||
|
||||
@@ -70,7 +73,11 @@ public class OnePasswordManager implements PasswordManager {
|
||||
username != null ? username.asText() : null,
|
||||
password != null ? InPlaceSecretValue.of(password.asText()) : null);
|
||||
} catch (Exception e) {
|
||||
ErrorEventFactory.fromThrowable(e).handle();
|
||||
var event = ErrorEventFactory.fromThrowable(e);
|
||||
if (!key.startsWith("op://") && e instanceof ProcessOutputException pex && pex.getOutput().contains("Specify the item")) {
|
||||
event.documentationLink(DocumentationLink.ONE_PASSWORD_KEYS).expected();
|
||||
}
|
||||
event.handle();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,6 +97,7 @@ public enum DocumentationLink {
|
||||
SHELL_ENVIRONMENTS_SCRIPTS("guide/environments#scripts"),
|
||||
SERIAL("guide/serial"),
|
||||
ICONS("guide/hub#icons"),
|
||||
ONE_PASSWORD_KEYS("guide/password-manager#key-format"),
|
||||
GNOME_WAYLAND_SCALING("troubleshoot/wayland-blur"),
|
||||
BEACON_PORT_BIND("troubleshoot/beacon-port"),
|
||||
SERIAL_IMPLEMENTATION("guide/serial#serial-implementations"),
|
||||
|
||||
@@ -103,6 +103,11 @@ public class DesktopApplicationStoreProvider implements DataStoreProvider {
|
||||
return "base:desktopApplication_icon.svg";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getOrderPriority() {
|
||||
return 2;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DataStore defaultStore(DataStoreCategory category) {
|
||||
return DesktopApplicationStore.builder().build();
|
||||
|
||||
@@ -3,11 +3,13 @@ package io.xpipe.ext.base.script;
|
||||
import io.xpipe.app.comp.base.*;
|
||||
import io.xpipe.app.core.AppI18n;
|
||||
import io.xpipe.app.ext.ShellDialectChoiceComp;
|
||||
import io.xpipe.app.ext.ShellDialectIcons;
|
||||
import io.xpipe.app.issue.ErrorEventFactory;
|
||||
import io.xpipe.app.platform.DerivedObservableList;
|
||||
import io.xpipe.app.platform.LabelGraphic;
|
||||
import io.xpipe.app.prefs.AppPrefs;
|
||||
import io.xpipe.app.util.BooleanScope;
|
||||
import io.xpipe.app.util.ThreadHelper;
|
||||
import javafx.application.Platform;
|
||||
import javafx.beans.binding.Bindings;
|
||||
import javafx.beans.property.*;
|
||||
@@ -23,7 +25,7 @@ public class ScriptCollectionSourceImportDialog {
|
||||
|
||||
private final ScriptCollectionSource source;
|
||||
private final ObservableList<ScriptCollectionSourceEntry> available = FXCollections.observableArrayList();
|
||||
private final DerivedObservableList<ScriptCollectionSourceEntry> shown = DerivedObservableList.arrayList(true);
|
||||
private final ObservableList<ScriptCollectionSourceEntry> shown = FXCollections.observableArrayList();
|
||||
private final ObservableList<ScriptCollectionSourceEntry> selected = FXCollections.observableArrayList();
|
||||
private final StringProperty filter = new SimpleStringProperty();
|
||||
private final BooleanProperty busy = new SimpleBooleanProperty();
|
||||
@@ -55,24 +57,26 @@ public class ScriptCollectionSourceImportDialog {
|
||||
});
|
||||
|
||||
var refresh = new ButtonComp(null, new FontIcon("mdmz-refresh"), () -> {
|
||||
try (var ignored = new BooleanScope(busy).exclusive().start()) {
|
||||
source.prepare();
|
||||
var all = source.listScripts();
|
||||
available.setAll(all);
|
||||
update();
|
||||
} catch (Exception e) {
|
||||
ErrorEventFactory.fromThrowable(e).handle();
|
||||
}
|
||||
ThreadHelper.runAsync(() -> {
|
||||
try (var ignored = new BooleanScope(busy).exclusive().start()) {
|
||||
source.prepare();
|
||||
var all = source.listScripts();
|
||||
available.setAll(all);
|
||||
update();
|
||||
} catch (Exception e) {
|
||||
ErrorEventFactory.fromThrowable(e).handle();
|
||||
}
|
||||
});
|
||||
}).maxHeight(100);
|
||||
|
||||
var notFound = new LabelComp(AppI18n.observable("noScriptsFound"));
|
||||
notFound.show(Bindings.isEmpty(shown.getList()).and(busy.not()));
|
||||
notFound.show(Bindings.isEmpty(shown).and(busy.not()));
|
||||
|
||||
var selector = new ListSelectorComp<>(shown.getList(),
|
||||
var selector = new ListSelectorComp<>(shown,
|
||||
e -> e.getName()+ " [" + e.getDialect().getDisplayName() + "]",
|
||||
e -> new LabelGraphic.ImageGraphic(ShellDialectChoiceComp.getImageName(e.getDialect()), 16),
|
||||
e -> new LabelGraphic.ImageGraphic(ShellDialectIcons.getImageName(e.getDialect()), 16),
|
||||
selected, e -> false,
|
||||
() -> shown.getList().size() > 0);
|
||||
() -> shown.size() > 0);
|
||||
selector.disable(busy);
|
||||
|
||||
var stack = new StackComp(List.of(notFound, selector));
|
||||
@@ -96,7 +100,7 @@ public class ScriptCollectionSourceImportDialog {
|
||||
|
||||
private void update() {
|
||||
if (filter.get() == null) {
|
||||
shown.setContent(available);
|
||||
shown.setAll(available);
|
||||
count.set(available.size());
|
||||
return;
|
||||
}
|
||||
@@ -106,7 +110,7 @@ public class ScriptCollectionSourceImportDialog {
|
||||
var newList = new ArrayList<ScriptCollectionSourceEntry>();
|
||||
newList.addAll(selected);
|
||||
newList.addAll(filtered);
|
||||
shown.setContent(newList);
|
||||
shown.setAll(newList);
|
||||
count.set(newList.size());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ public class ScriptCollectionSourceImportHubProvider implements HubLeafProvider<
|
||||
|
||||
@Override
|
||||
public LabelGraphic getIcon(DataStoreEntryRef<ScriptCollectionSourceStore> store) {
|
||||
return new LabelGraphic.IconGraphic("mdi2e-export");
|
||||
return new LabelGraphic.IconGraphic("mdi2f-file-undo-outline");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -217,7 +217,7 @@ public class ScriptStoreProvider implements EnabledParentStoreProvider, DataStor
|
||||
}
|
||||
|
||||
ScriptStore st = store.asNeeded();
|
||||
return ShellDialectChoiceComp.getImageName(st.getMinimumDialect());
|
||||
return ShellDialectIcons.getImageName(st.getMinimumDialect());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
|
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 442 B |
|
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 451 B |
|
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 562 B |
|
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 576 B |
|
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 772 B |
|
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 783 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 451 B |
|
Before Width: | Height: | Size: 451 B |
|
Before Width: | Height: | Size: 595 B |
|
Before Width: | Height: | Size: 595 B |
|
Before Width: | Height: | Size: 810 B |
|
Before Width: | Height: | Size: 810 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 728 B |
|
Before Width: | Height: | Size: 728 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1,97 +1,48 @@
|
||||
<?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 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="desktopApplication_icon-dark.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs29" /><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095684"
|
||||
inkscape:cy="93.796968"
|
||||
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{display:none;fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
<rect
|
||||
class="st0"
|
||||
width="512"
|
||||
height="512"
|
||||
id="rect4"
|
||||
x="-161.89999"
|
||||
y="-161.89999" />
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-161.9,-161.9)"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
id="path6"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 211.9,302.5 c -1.2,0 -2.4,-0.5 -3.3,-1.5 -0.7,-0.9 -1.1,-2 -1,-3.1 0.1,-1.1 0.6,-2.2 1.5,-2.9 l 23.3,-23.3 -23.3,-23.3 c -1.4,-1.6 -1.4,-4 0,-5.6 1.5,-1.8 4.2,-2 6,-0.5 v 0 l 26.4,26.4 c 1.7,1.7 1.7,4.4 0,6 L 215.1,301 c -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.9,0.7 -1.8,1.1 -2.8,1.1 z m 0.4,-60.6 c -1,0 -2,0.4 -2.7,1.2 -1.1,1.3 -1.1,3.3 0,4.6 l 23.8,23.8 -23.8,23.9 c -0.7,0.6 -1.2,1.5 -1.2,2.4 -0.1,0.9 0.2,1.9 0.8,2.6 1.3,1.5 3.5,1.7 5,0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 L 241,274 c 1.4,-1.4 1.4,-3.6 0,-5 l -26.3,-26.3 c -0.8,-0.5 -1.6,-0.8 -2.4,-0.8 z"
|
||||
id="path8"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path18"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path20"
|
||||
style="fill:#ba6600;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="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="-94.309143"
|
||||
inkscape:cy="129.29479"
|
||||
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><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><rect
|
||||
style="fill:#11b011;fill-opacity:1;stroke:none;stroke-width:4.74555"
|
||||
id="rect1"
|
||||
width="121.50683"
|
||||
height="21.030029"
|
||||
x="14.080875"
|
||||
y="94.474846" /><path
|
||||
d="M 177.95845,49.696965 H 60.617329 c 0,-11.767445 9.567305,-21.33475 21.33475,-21.33475 h 96.006371 c 11.76745,0 21.33475,9.567305 21.33475,21.33475 v 64.004265 c 0,11.76745 -9.5673,21.33475 -21.33475,21.33475 h -16.00106 v -21.33475 h 16.00106 z M 7.2804476,92.366468 c 0,-11.767448 9.5673054,-21.334741 21.3347504,-21.334741 h 96.006372 c 11.76746,0 21.33475,9.567293 21.33475,21.334741 v 64.004262 c 0,11.76744 -9.56729,21.33475 -21.33475,21.33475 H 28.615198 c -11.767445,0 -21.3347504,-9.56731 -21.3347504,-21.33475 z M 28.615198,105.70069 c 0,4.43363 3.566908,8.00054 8.00053,8.00054 h 80.005312 c 4.43363,0 8.00053,-3.56691 8.00053,-8.00054 0,-4.43362 -3.5669,-8.000531 -8.00053,-8.000531 H 36.615728 c -4.433622,0 -8.00053,3.566911 -8.00053,8.000531 z"
|
||||
id="path1"
|
||||
style="fill:#f38626;fill-opacity:1;stroke-width:0.333356" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,97 +1,48 @@
|
||||
<?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 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="desktopApplication_icon.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs29" /><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095684"
|
||||
inkscape:cy="93.796968"
|
||||
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{display:none;fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
<rect
|
||||
class="st0"
|
||||
width="512"
|
||||
height="512"
|
||||
id="rect4"
|
||||
x="-161.89999"
|
||||
y="-161.89999" />
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-161.9,-161.9)"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
id="path6"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 211.9,302.5 c -1.2,0 -2.4,-0.5 -3.3,-1.5 -0.7,-0.9 -1.1,-2 -1,-3.1 0.1,-1.1 0.6,-2.2 1.5,-2.9 l 23.3,-23.3 -23.3,-23.3 c -1.4,-1.6 -1.4,-4 0,-5.6 1.5,-1.8 4.2,-2 6,-0.5 v 0 l 26.4,26.4 c 1.7,1.7 1.7,4.4 0,6 L 215.1,301 c -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.9,0.7 -1.8,1.1 -2.8,1.1 z m 0.4,-60.6 c -1,0 -2,0.4 -2.7,1.2 -1.1,1.3 -1.1,3.3 0,4.6 l 23.8,23.8 -23.8,23.9 c -0.7,0.6 -1.2,1.5 -1.2,2.4 -0.1,0.9 0.2,1.9 0.8,2.6 1.3,1.5 3.5,1.7 5,0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 L 241,274 c 1.4,-1.4 1.4,-3.6 0,-5 l -26.3,-26.3 c -0.8,-0.5 -1.6,-0.8 -2.4,-0.8 z"
|
||||
id="path8"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#ba6600;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path18"
|
||||
style="fill:#ba6600;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path20"
|
||||
style="fill:#ba6600;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="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.3945823"
|
||||
inkscape:cx="-15.775333"
|
||||
inkscape:cy="89.991103"
|
||||
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><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>identity</dc:title></cc:Work></rdf:RDF></metadata><rect
|
||||
style="fill:#18ce16;fill-opacity:1;stroke:none;stroke-width:4.74555"
|
||||
id="rect1"
|
||||
width="121.50683"
|
||||
height="21.030029"
|
||||
x="14.080875"
|
||||
y="94.474846" /><path
|
||||
d="M 177.95845,49.696965 H 60.617329 c 0,-11.767445 9.567305,-21.33475 21.33475,-21.33475 h 96.006371 c 11.76745,0 21.33475,9.567305 21.33475,21.33475 v 64.004265 c 0,11.76745 -9.5673,21.33475 -21.33475,21.33475 h -16.00106 v -21.33475 h 16.00106 z M 7.2804476,92.366468 c 0,-11.767448 9.5673054,-21.334741 21.3347504,-21.334741 h 96.006372 c 11.76746,0 21.33475,9.567293 21.33475,21.334741 v 64.004262 c 0,11.76744 -9.56729,21.33475 -21.33475,21.33475 H 28.615198 c -11.767445,0 -21.3347504,-9.56731 -21.3347504,-21.33475 z M 28.615198,105.70069 c 0,4.43363 3.566908,8.00054 8.00053,8.00054 h 80.005312 c 4.43363,0 8.00053,-3.56691 8.00053,-8.00054 0,-4.43362 -3.5669,-8.000531 -8.00053,-8.000531 H 36.615728 c -4.433622,0 -8.00053,3.566911 -8.00053,8.000531 z"
|
||||
id="path1"
|
||||
style="fill:#e1710c;fill-opacity:1;stroke-width:0.333356" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,75 +0,0 @@
|
||||
<?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"
|
||||
sodipodi:docname="desktopCommand_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.png"
|
||||
inkscape:export-xdpi="7.8066268"
|
||||
inkscape:export-ydpi="7.8066268"
|
||||
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="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:#ba6600;fill-opacity:1">
|
||||
<g
|
||||
id="g8"
|
||||
style="fill:#ba6600;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:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#ba6600;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:#ba6600;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:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,75 +0,0 @@
|
||||
<?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"
|
||||
sodipodi:docname="desktopCommand_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"
|
||||
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="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:#ba6600;fill-opacity:1">
|
||||
<g
|
||||
id="g8"
|
||||
style="fill:#ba6600;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:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#ba6600;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:#ba6600;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:#ba6600;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="desktopEnvironment_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="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.493968"
|
||||
inkscape:cy="104.33027"
|
||||
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" />
|
||||
<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:#ba6600;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:#ba6600;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:#ba6600;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>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.68 206.97"
|
||||
version="1.1"
|
||||
sodipodi:docname="desktopEnvironment_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="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.493968"
|
||||
inkscape:cy="104.33027"
|
||||
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" />
|
||||
<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:#ba6600;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:#ba6600;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:#ba6600;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>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,57 +0,0 @@
|
||||
<?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="actionMacro_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
|
||||
id="namedview873"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.52360818"
|
||||
inkscape:cx="-338.99394"
|
||||
inkscape:cy="20.053163"
|
||||
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="defs856"><style
|
||||
id="style854">.cls-1{fill:#ac55ff;}</style></defs><title
|
||||
id="title858">ssh draft</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:#ff2e71;fill-opacity:1"
|
||||
transform="translate(-153.7 -153.7)" /><path
|
||||
class="cls-1"
|
||||
d="M 31.917287,42.631446 53.774576,55.018138 31.917287,67.404826 V 79.693419 L 67.249228,59.664258 V 50.363095 L 31.917287,30.342852 Z"
|
||||
id="path870"
|
||||
style="fill:#ff2e71;fill-opacity:1;stroke-width:0.891772" /><metadata
|
||||
id="metadata932"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>ssh draft</dc:title></cc:Work></rdf:RDF></metadata><path
|
||||
d="m 106.06273,62.271703 v 12.144306 c -4.97404,1.191853 -9.731877,3.157258 -14.097321,5.825282 l -8.576622,-8.576626 -16.119588,16.120719 8.591258,8.591258 c -2.671282,4.360038 -4.641473,9.112588 -5.838799,14.083818 H 57.876237 v 22.79723 h 12.144306 c 1.191338,4.97584 3.157027,9.73356 5.825279,14.09901 l -8.576623,8.57662 16.119588,16.12072 8.592386,-8.59239 c 4.360027,2.67128 9.112587,4.64147 14.083817,5.8388 v 12.14542 h 22.79723 v -12.14431 c 4.97545,-1.19145 9.73301,-3.15714 14.09788,-5.82528 l 8.57775,8.57776 16.11959,-16.12072 -8.59126,-8.59126 c 2.6714,-4.36037 4.64159,-9.11314 5.83879,-14.08494 h 12.14543 v -22.79723 h -12.1443 c -1.19146,-4.97545 -3.15715,-9.73301 -5.82528,-14.097883 l 8.58562,-8.569863 -16.12409,-16.120719 -8.59125,8.59126 c -4.36037,-2.671396 -9.11315,-4.641589 -14.08495,-5.838801 V 62.278463 h -22.79723 z m 11.39889,32.392884 a 27.194204,27.194204 0 0 1 27.19253,27.194763 27.194204,27.194204 0 0 1 -27.19253,27.19252 27.194204,27.194204 0 0 1 -27.194202,-27.19252 27.194204,27.194204 0 0 1 27.194202,-27.194763 z"
|
||||
fill-rule="evenodd"
|
||||
fill="#72a7cf"
|
||||
id="path1-0"
|
||||
style="stroke-width:0.562993;fill:#ff2e71;fill-opacity:1" /></svg>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 707 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 43 KiB |
@@ -8,32 +8,39 @@
|
||||
y="0px"
|
||||
viewBox="0 0 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="cmd_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="cmd_icon-dark.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
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="defs19" /><sodipodi:namedview
|
||||
id="defs19"><rect
|
||||
x="47.794633"
|
||||
y="65.120188"
|
||||
width="151.15053"
|
||||
height="122.47375"
|
||||
id="rect1" /></defs><sodipodi:namedview
|
||||
id="namedview17"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.3476562"
|
||||
inkscape:cx="63.775963"
|
||||
inkscape:cy="80.952159"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="51.379231"
|
||||
inkscape:cy="115.60327"
|
||||
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" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
@@ -45,40 +52,37 @@
|
||||
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#f6f6f6;fill-opacity:1"
|
||||
style="fill:#e2e2e2;fill-opacity:1"
|
||||
transform="translate(-161.9,-161.9)">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
style="fill:#e2e2e2;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path6"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e2e2e2;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path8"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e2e2e2;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
aria-label="C:\_"
|
||||
id="text14"
|
||||
style="font-size:66.6667px;font-family:HelveticaRounded-Bold;fill:#f6f6f6;fill-opacity:1"
|
||||
class="st1 st2 st3"
|
||||
transform="translate(3.8833139,-0.59743291)"><path
|
||||
d="m 62.622283,132.74942 q -1.790366,0.78125 -3.25521,1.46484 -1.432293,0.6836 -3.776044,1.4323 -1.985678,0.61849 -4.32943,1.04166 -2.311199,0.45573 -5.110679,0.45573 -5.273441,0 -9.60287,-1.46484 -4.296877,-1.4974 -7.486983,-4.65495 -3.125002,-3.09245 -4.882815,-7.84506 -1.757814,-4.78516 -1.757814,-11.10027 0,-5.98958 1.692709,-10.70964 1.69271,-4.720051 4.882816,-7.975261 3.092449,-3.157554 7.454431,-4.817711 4.394533,-1.660158 9.733078,-1.660158 3.906252,0 7.779952,0.944011 3.906252,0.944011 8.658859,3.320315 v 7.649743 h -0.488282 q -4.003908,-3.352866 -7.942712,-4.882815 -3.938805,-1.529949 -8.430995,-1.529949 -3.678387,0 -6.640628,1.204428 -2.929689,1.171876 -5.240888,3.678388 -2.246095,2.441407 -3.515627,6.184899 -1.23698,3.71094 -1.23698,8.59375 0,5.11068 1.367188,8.78907 1.399741,3.67839 3.580731,5.98959 2.278647,2.40885 5.305993,3.58073 3.059897,1.13932 6.445316,1.13932 4.65495,0 8.723963,-1.59505 4.069012,-1.59505 7.617191,-4.78516 h 0.45573 z"
|
||||
id="path7330"
|
||||
style="fill:#f6f6f6;fill-opacity:1" /><path
|
||||
d="m 84.269429,109.1817 h -7.779952 v -9.277351 h 7.779952 z m 0,27.08335 h -7.779952 v -9.27735 h 7.779952 z"
|
||||
id="path7332"
|
||||
style="fill:#f6f6f6;fill-opacity:1" /><path
|
||||
d="M 126.74992,146.16088 H 121.1184 L 97.778546,85.613976 h 5.729174 z"
|
||||
id="path7334"
|
||||
style="fill:#f6f6f6;fill-opacity:1" /><path
|
||||
d="m 161.41539,145.956 h -32.18765 v -3.90626 H 161.521 Z"
|
||||
id="path7336"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#f6f6f6;fill-opacity:1" /></g>
|
||||
</svg>
|
||||
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:85.3333px;font-family:Inter;-inkscape-font-specification:'Inter Bold';text-align:start;letter-spacing:-4.38px;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect1);display:inline;fill:#e2e2e2;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="translate(-27.861904,-3.3371327)"><tspan
|
||||
x="47.794922"
|
||||
y="144.10949"
|
||||
id="tspan4"><tspan
|
||||
style="font-size:74.6667px"
|
||||
id="tspan1">C:\</tspan></tspan></text><rect
|
||||
style="fill:#02b5e9;fill-opacity:1;stroke:none;stroke-width:1.32245;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect2"
|
||||
width="42.833527"
|
||||
height="7.2541118"
|
||||
x="124.0312"
|
||||
y="141.19421" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -8,15 +8,20 @@
|
||||
y="0px"
|
||||
viewBox="0 0 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="cmd_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="cmd_icon.svg"
|
||||
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
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="defs19" /><sodipodi:namedview
|
||||
id="defs19"><rect
|
||||
x="47.794633"
|
||||
y="65.120188"
|
||||
width="151.15053"
|
||||
height="122.47375"
|
||||
id="rect1" /></defs><sodipodi:namedview
|
||||
id="namedview17"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -25,15 +30,17 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.3476562"
|
||||
inkscape:cx="63.775963"
|
||||
inkscape:cy="80.952159"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="50.781798"
|
||||
inkscape:cy="115.60327"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-height="1057"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
inkscape:current-layer="Layer_1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
@@ -62,19 +69,20 @@
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
aria-label="C:\_"
|
||||
id="text14"
|
||||
style="font-size:66.6667px;font-family:HelveticaRounded-Bold;fill:#2e2e2e"
|
||||
class="st1 st2 st3"
|
||||
transform="translate(3.8833139,-0.59743291)"><path
|
||||
d="m 62.622283,132.74942 q -1.790366,0.78125 -3.25521,1.46484 -1.432293,0.6836 -3.776044,1.4323 -1.985678,0.61849 -4.32943,1.04166 -2.311199,0.45573 -5.110679,0.45573 -5.273441,0 -9.60287,-1.46484 -4.296877,-1.4974 -7.486983,-4.65495 -3.125002,-3.09245 -4.882815,-7.84506 -1.757814,-4.78516 -1.757814,-11.10027 0,-5.98958 1.692709,-10.70964 1.69271,-4.720051 4.882816,-7.975261 3.092449,-3.157554 7.454431,-4.817711 4.394533,-1.660158 9.733078,-1.660158 3.906252,0 7.779952,0.944011 3.906252,0.944011 8.658859,3.320315 v 7.649743 h -0.488282 q -4.003908,-3.352866 -7.942712,-4.882815 -3.938805,-1.529949 -8.430995,-1.529949 -3.678387,0 -6.640628,1.204428 -2.929689,1.171876 -5.240888,3.678388 -2.246095,2.441407 -3.515627,6.184899 -1.23698,3.71094 -1.23698,8.59375 0,5.11068 1.367188,8.78907 1.399741,3.67839 3.580731,5.98959 2.278647,2.40885 5.305993,3.58073 3.059897,1.13932 6.445316,1.13932 4.65495,0 8.723963,-1.59505 4.069012,-1.59505 7.617191,-4.78516 h 0.45573 z"
|
||||
id="path7330" /><path
|
||||
d="m 84.269429,109.1817 h -7.779952 v -9.277351 h 7.779952 z m 0,27.08335 h -7.779952 v -9.27735 h 7.779952 z"
|
||||
id="path7332" /><path
|
||||
d="M 126.74992,146.16088 H 121.1184 L 97.778546,85.613976 h 5.729174 z"
|
||||
id="path7334" /><path
|
||||
d="m 161.41539,145.956 h -32.18765 v -3.90626 H 161.521 Z"
|
||||
id="path7336"
|
||||
sodipodi:nodetypes="ccccc" /></g>
|
||||
</svg>
|
||||
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:85.3333px;font-family:Inter;-inkscape-font-specification:'Inter Bold';text-align:start;letter-spacing:-4.38px;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect1);fill:#2e2e2e;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="translate(-27.861904,-3.3371327)"><tspan
|
||||
x="47.794922"
|
||||
y="144.10949"
|
||||
id="tspan4"><tspan
|
||||
style="font-size:74.6667px"
|
||||
id="tspan1">C:\</tspan></tspan></text><rect
|
||||
style="fill:#216d82;fill-opacity:1;stroke:none;stroke-width:1.32245;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect2"
|
||||
width="42.833527"
|
||||
height="7.2541118"
|
||||
x="124.0312"
|
||||
y="141.19421" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -8,32 +8,39 @@
|
||||
y="0px"
|
||||
viewBox="0 0 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="shellCommand_icon-dark.svg"
|
||||
sodipodi:docname="defaultShell_icon-dark.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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"><defs
|
||||
id="defs29" /><sodipodi:namedview
|
||||
id="defs29"><rect
|
||||
x="59.145859"
|
||||
y="53.768962"
|
||||
width="141.59161"
|
||||
height="130.8378"
|
||||
id="rect1" /></defs><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095683"
|
||||
inkscape:cy="93.796966"
|
||||
inkscape:zoom="1.1835752"
|
||||
inkscape:cx="17.742852"
|
||||
inkscape:cy="41.822438"
|
||||
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="g24"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
@@ -50,48 +57,43 @@
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-161.9,-161.9)"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
style="fill:#e6e6e6;fill-opacity:1"
|
||||
transform="translate(-9.293875,0.84489773)">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
id="path6"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e6e6e6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 211.9,302.5 c -1.2,0 -2.4,-0.5 -3.3,-1.5 -0.7,-0.9 -1.1,-2 -1,-3.1 0.1,-1.1 0.6,-2.2 1.5,-2.9 l 23.3,-23.3 -23.3,-23.3 c -1.4,-1.6 -1.4,-4 0,-5.6 1.5,-1.8 4.2,-2 6,-0.5 v 0 l 26.4,26.4 c 1.7,1.7 1.7,4.4 0,6 L 215.1,301 c -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.9,0.7 -1.8,1.1 -2.8,1.1 z m 0.4,-60.6 c -1,0 -2,0.4 -2.7,1.2 -1.1,1.3 -1.1,3.3 0,4.6 l 23.8,23.8 -23.8,23.9 c -0.7,0.6 -1.2,1.5 -1.2,2.4 -0.1,0.9 0.2,1.9 0.8,2.6 1.3,1.5 3.5,1.7 5,0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 L 241,274 c 1.4,-1.4 1.4,-3.6 0,-5 l -26.3,-26.3 c -0.8,-0.5 -1.6,-0.8 -2.4,-0.8 z"
|
||||
id="path8"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e6e6e6;fill-opacity:1" />
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
style="fill:#e6e6e6;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path18"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e6e6e6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path20"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
style="fill:#e6e6e6;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
transform="translate(175.82624,224.35736)"
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:74.6667px;line-height:0;font-family:Inter;-inkscape-font-specification:'Inter Bold';text-align:start;letter-spacing:-4.38px;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect1);display:inline;fill:#02b5e9;stroke-width:1.302"><tspan
|
||||
x="59.146484"
|
||||
y="76.217753"
|
||||
id="tspan1">*?</tspan></text></g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -8,15 +8,20 @@
|
||||
y="0px"
|
||||
viewBox="0 0 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="shellCommand_icon.svg"
|
||||
sodipodi:docname="defaultShell_icon.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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"><defs
|
||||
id="defs29" /><sodipodi:namedview
|
||||
id="defs29"><rect
|
||||
x="59.145859"
|
||||
y="53.768962"
|
||||
width="141.59161"
|
||||
height="130.8378"
|
||||
id="rect1" /></defs><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
@@ -25,15 +30,17 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095683"
|
||||
inkscape:cy="93.796966"
|
||||
inkscape:zoom="1.1835752"
|
||||
inkscape:cx="17.742852"
|
||||
inkscape:cy="41.822438"
|
||||
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="g24"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
@@ -53,7 +60,8 @@
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(-9.293875,0.84489773)">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
@@ -65,20 +73,7 @@
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
@@ -93,5 +88,12 @@
|
||||
id="path20"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
transform="translate(175.82624,224.35736)"
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:74.6667px;line-height:0;font-family:Inter;-inkscape-font-specification:'Inter Bold';text-align:start;letter-spacing:-4.38px;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect1);display:inline;fill:#216d82;stroke-width:1.302;fill-opacity:1"><tspan
|
||||
x="59.146484"
|
||||
y="76.217753"
|
||||
id="tspan1">*?</tspan></text></g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
id="PowerShell"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="204.691px"
|
||||
height="154.521px"
|
||||
viewBox="0 0 204.691 154.521"
|
||||
style="enable-background:new 0 0 204.691 154.521;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="pwsh_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"><defs
|
||||
id="defs5"><linearGradient
|
||||
id="b"
|
||||
x1="25.336"
|
||||
x2="94.569"
|
||||
y1="98.330002"
|
||||
y2="36.847"
|
||||
gradientTransform="matrix(1.6376614,0,0,-1.6376614,-2.354688,182.05989)"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
offset="0"
|
||||
stop-color="#2d4664"
|
||||
id="stop3" /><stop
|
||||
offset=".169"
|
||||
stop-color="#29405b"
|
||||
id="stop4" /><stop
|
||||
offset=".445"
|
||||
stop-color="#1e2f43"
|
||||
id="stop5" /><stop
|
||||
offset=".79"
|
||||
stop-color="#0c131b"
|
||||
id="stop6" /><stop
|
||||
offset="1"
|
||||
id="stop7" /></linearGradient><linearGradient
|
||||
id="a"
|
||||
x1="96.306"
|
||||
x2="25.454"
|
||||
y1="35.144001"
|
||||
y2="98.431"
|
||||
gradientTransform="matrix(1.6376614,0,0,-1.6376614,-2.354688,182.05989)"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
offset="0"
|
||||
stop-color="#a9c8ff"
|
||||
id="stop1" /><stop
|
||||
offset="1"
|
||||
stop-color="#c7e6ff"
|
||||
id="stop2" /></linearGradient></defs><sodipodi:namedview
|
||||
id="namedview5"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="2.6112956"
|
||||
inkscape:cx="21.828245"
|
||||
inkscape:cy="77.16476"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1009"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="PowerShell" />
|
||||
|
||||
<path
|
||||
fill="url(#a)"
|
||||
fill-rule="evenodd"
|
||||
d="m 9.4364741,153.40081 c -2.7840244,0 -5.0767503,-1.14637 -6.7144117,-3.11156 -1.6376614,-1.96519 -2.12895981,-4.74921 -1.4738953,-7.53324 L 31.708671,10.924265 C 33.0188,5.3562164 38.259317,1.0982969 43.827366,1.0982969 H 195.4748 c 2.78402,0 5.07675,1.1463629 6.71441,3.1115565 1.63766,1.9651937 2.12897,4.7492185 1.47389,7.5332416 L 173.20261,143.57484 c -1.31014,5.56805 -6.55065,9.82597 -12.11869,9.82597 z"
|
||||
clip-rule="evenodd"
|
||||
opacity="0.8"
|
||||
id="path2-0"
|
||||
style="fill:url(#a);stroke-width:1.63766" /><path
|
||||
fill="url(#b)"
|
||||
fill-rule="evenodd"
|
||||
d="M 194.65597,2.7359583 H 44.318664 c -4.749218,0 -9.33467,3.7666211 -10.481033,8.5158387 L 3.7046592,143.24731 c -1.146363,4.74922 1.8014276,8.51584 6.5506458,8.51584 H 160.59262 c 4.74921,0 9.33467,-3.76662 10.48102,-8.51584 L 201.20662,11.415563 c 1.14636,-4.7492175 -1.80143,-8.6796047 -6.55065,-8.6796047 z"
|
||||
clip-rule="evenodd"
|
||||
id="path7"
|
||||
style="fill:url(#b);stroke-width:1.63766" /><path
|
||||
fill="#2c5591"
|
||||
fill-rule="evenodd"
|
||||
d="m 102.78317,117.04472 h 36.51986 c 4.25791,0 7.697,3.60286 7.697,8.02454 0,4.42169 -3.43909,8.02454 -7.697,8.02454 h -36.51986 c -4.257914,0 -7.697003,-3.60285 -7.697003,-8.02454 0,-4.42168 3.439089,-8.02454 7.697003,-8.02454 z m 23.7461,-35.701013 c -0.65507,1.310129 -1.9652,2.620259 -4.25793,4.25792 L 54.308399,134.40394 c -3.766622,2.62025 -9.007139,1.63766 -11.954929,-2.29272 -2.784024,-3.93039 -2.128959,-9.33468 1.473896,-11.95493 L 105.0759,75.775658 V 74.793061 L 66.590859,33.851523 c -3.111557,-3.275322 -2.784025,-8.679605 0.655064,-12.118693 3.602856,-3.275323 9.007138,-3.275323 12.118694,0 l 46.182053,49.129844 c 2.78402,3.111557 2.94779,7.369476 0.9826,10.481033 z"
|
||||
clip-rule="evenodd"
|
||||
id="path8"
|
||||
style="stroke-width:1.63766" /><path
|
||||
fill="#ffffff"
|
||||
fill-rule="evenodd"
|
||||
d="m 124.72784,79.706046 c -0.65507,1.310128 -1.9652,2.620258 -4.25793,4.25792 L 52.670737,132.76628 c -3.766622,2.62026 -9.007138,1.63766 -11.954928,-2.29273 -2.784024,-3.93038 -2.12896,-9.33467 1.473895,-11.95492 L 103.43824,74.137996 V 73.1554 L 64.953198,32.213863 c -3.111557,-3.275323 -2.784025,-8.679606 0.655064,-12.118695 3.602855,-3.275323 9.007138,-3.275323 12.118694,0 L 123.90901,69.22501 c 2.78403,2.947793 2.94778,7.205713 0.81883,10.481036 z M 101.63681,116.2259 h 36.51985 c 4.25792,0 7.69701,3.43908 7.69701,7.53324 0,4.25792 -3.43909,7.53324 -7.69701,7.53324 h -36.51985 c -4.257917,0 -7.697006,-3.43909 -7.697006,-7.53324 0,-4.25792 3.439089,-7.53324 7.697006,-7.53324 z"
|
||||
clip-rule="evenodd"
|
||||
id="path9"
|
||||
style="stroke-width:1.63766" /></svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 21 KiB |
@@ -5,80 +5,56 @@
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="rdpFile_icon-dark.svg"
|
||||
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\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
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="namedview873"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.9619752"
|
||||
inkscape:cx="72.080279"
|
||||
inkscape:cy="73.599536"
|
||||
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="1.9722372"
|
||||
inkscape:cx="-26.365997"
|
||||
inkscape:cy="6.33798"
|
||||
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>
|
||||
<circle
|
||||
style="fill:none;fill-rule:evenodd;stroke:#0095e3;stroke-width:12;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
id="path848"
|
||||
cx="102.4654"
|
||||
cy="102.29661"
|
||||
r="94.123512" />
|
||||
<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="m 165.20331,118.54708 -34.82477,-30.500056 35.0253,-35.157002 -12.96942,-14.183478 -43.98836,41.77806 v 15.139354 l 43.47202,38.474302 z"
|
||||
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:#dfdfdf;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 179.76617,121.41843 138.41742,85.204571 180.00427,43.461349 164.60519,26.620777 112.37616,76.225427 v 17.975514 l 51.61596,45.681989 z"
|
||||
id="path870-3"
|
||||
style="fill:#47c943;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:#f38523;fill-opacity:1;stroke-width:1.72337;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 58.835483,92.948177 34.824761,30.500043 -35.02529,35.157 12.96941,14.18348 43.988366,-41.77807 V 115.87128 L 72.120712,77.397005 Z"
|
||||
d="M 52.585065,85.718254 93.933786,121.9321 52.346968,163.67532 67.746021,180.51589 119.97505,130.91123 V 112.93571 L 68.359102,67.253767 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#47c943;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<circle
|
||||
style="fill:#0095e3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.21292;stroke-linecap:round"
|
||||
id="path851"
|
||||
cx="42.488632"
|
||||
cy="42.464645"
|
||||
r="41.92424" />
|
||||
<path
|
||||
style="line-height:normal;-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-transform:none;fill:#f6f6f6;fill-opacity:1;stroke:#f6f6f6;stroke-width:1.9231;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.084404,15.930638 v 1.04961 46.182822 1.04961 h 1.0496 35.68674 1.0496 V 63.16307 29.575563 29.149159 l -0.2952,-0.328003 -12.59531,-12.595315 -0.32801,-0.295203 h -0.4264 -23.09142 z m 2.09922,2.099219 h 20.99219 v 11.545706 1.04961 h 1.04961 11.5457 v 31.488288 h -33.5875 z m 23.09141,1.508814 8.98728,8.987283 h -8.98728 z"
|
||||
style="fill:#3cbb39;fill-opacity:1;stroke-width:1.72345"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
style="line-height:normal;-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-transform:none;fill:#f6f6f6;fill-opacity:1;stroke:#f6f6f6;stroke-width:1.43198;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.251456,25.339187 v 0.781564 34.3888 0.781564 h 0.781557 26.573174 0.781557 v -0.781564 -25.010037 -0.31751 l -0.219813,-0.244239 -9.37876,-9.378763 -0.244244,-0.219815 H 43.22742 26.033013 Z m 1.563128,1.563127 h 15.631272 v 8.5972 0.781564 h 0.781564 8.597196 V 59.727987 H 26.814584 Z m 17.1944,1.123498 6.692137,6.692139 h -6.692137 z"
|
||||
overflow="visible"
|
||||
enable-background="accumulate"
|
||||
font-family="'Bitstream Vera Sans'"
|
||||
id="path975" />
|
||||
</svg>
|
||||
id="path975" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -5,80 +5,56 @@
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="rdpFile_icon.svg"
|
||||
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\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
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="namedview873"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0472164"
|
||||
inkscape:cx="-166.63223"
|
||||
inkscape:cy="71.618437"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="2.7891646"
|
||||
inkscape:cx="44.099226"
|
||||
inkscape:cy="125.66487"
|
||||
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>
|
||||
<circle
|
||||
style="fill:none;fill-rule:evenodd;stroke:#0066e3;stroke-width:12;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
id="path848"
|
||||
cx="102.4654"
|
||||
cy="102.29661"
|
||||
r="94.123512" />
|
||||
<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="m 165.20331,118.54708 -34.82477,-30.500056 35.0253,-35.157002 -12.96942,-14.183478 -43.98836,41.77806 v 15.139354 l 43.47202,38.474302 z"
|
||||
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:#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
|
||||
class="cls-1"
|
||||
d="M 179.76617,121.41843 138.41742,85.204571 180.00427,43.461349 164.60519,26.620777 112.37616,76.225427 v 17.975514 l 51.61596,45.681989 z"
|
||||
id="path870-3"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:#f27b10;fill-opacity:1;stroke-width:1.72337;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 58.835483,92.948177 34.824761,30.500043 -35.02529,35.157 12.96941,14.18348 43.988366,-41.77807 V 115.87128 L 72.120712,77.397005 Z"
|
||||
d="M 52.585065,85.718254 93.933786,121.9321 52.346968,163.67532 67.746021,180.51589 119.97505,130.91123 V 112.93571 L 68.359102,67.253767 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<circle
|
||||
style="fill:#0066e3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.21292;stroke-linecap:round"
|
||||
id="path851"
|
||||
cx="42.488632"
|
||||
cy="42.464645"
|
||||
r="41.92424" />
|
||||
<path
|
||||
style="line-height:normal;-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-transform:none;fill:#f6f6f6;fill-opacity:1;stroke:#f6f6f6;stroke-width:1.9231;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.084404,15.930638 v 1.04961 46.182822 1.04961 h 1.0496 35.68674 1.0496 V 63.16307 29.575563 29.149159 l -0.2952,-0.328003 -12.59531,-12.595315 -0.32801,-0.295203 h -0.4264 -23.09142 z m 2.09922,2.099219 h 20.99219 v 11.545706 1.04961 h 1.04961 11.5457 v 31.488288 h -33.5875 z m 23.09141,1.508814 8.98728,8.987283 h -8.98728 z"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.72345"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
style="line-height:normal;-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-transform:none;fill:#272727;fill-opacity:1;stroke:#1d1d1d;stroke-width:4.24389;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 27.704557,25.865436 v 0.765461 33.680281 0.765461 h 0.765454 26.025681 0.765455 V 60.311178 35.816428 35.505459 L 55.045863,35.266253 45.860335,26.080721 45.621123,25.865436 H 45.310158 28.470011 Z m 1.530922,1.530922 h 15.309217 v 8.42007 0.765462 h 0.765462 8.420066 V 59.545718 H 29.235479 Z m 16.84014,1.10035 6.554258,6.55426 h -6.554258 z"
|
||||
overflow="visible"
|
||||
enable-background="accumulate"
|
||||
font-family="'Bitstream Vera Sans'"
|
||||
id="path975" />
|
||||
</svg>
|
||||
id="path975" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,59 @@
|
||||
<?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="rdpTunnel_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="-55.774224"
|
||||
inkscape:cy="32.957496"
|
||||
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:#dfdfdf;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 179.76617,121.41843 138.41742,85.204571 180.00427,43.461349 164.60519,26.620777 112.37616,76.225427 v 17.975514 l 51.61596,45.681989 z"
|
||||
id="path870-3"
|
||||
style="fill:#f38523;fill-opacity:1;stroke-width:1.72337;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="M 52.585065,85.718254 93.933786,121.9321 52.346968,163.67532 67.746021,180.51589 119.97505,130.91123 V 112.93571 L 68.359102,67.253767 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#3cbb39;fill-opacity:1;stroke-width:1.72345"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 25.123985,100.45634 26.275187,23.01221 -26.426487,26.52587 9.785382,10.7014 33.189115,-31.52145 V 117.75176 L 35.147651,88.723015 Z"
|
||||
id="path870-3-2-2"
|
||||
style="fill:#147dff;fill-opacity:1;stroke-width:1.09517"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,59 @@
|
||||
<?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="rdpTunnel_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
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.3945823"
|
||||
inkscape:cx="-12.907091"
|
||||
inkscape:cy="1.7926515"
|
||||
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:#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
|
||||
class="cls-1"
|
||||
d="M 179.76617,121.41843 138.41742,85.204571 180.00427,43.461349 164.60519,26.620777 112.37616,76.225427 v 17.975514 l 51.61596,45.681989 z"
|
||||
id="path870-3"
|
||||
style="fill:#f27b10;fill-opacity:1;stroke-width:1.72337;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="M 52.585065,85.718254 93.933786,121.9321 52.346968,163.67532 67.746021,180.51589 119.97505,130.91123 V 112.93571 L 68.359102,67.253767 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.72345"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 25.123985,100.45634 26.275187,23.01221 -26.426487,26.52587 9.785382,10.7014 33.189115,-31.52145 V 117.75176 L 35.147651,88.723015 Z"
|
||||
id="path870-3-2-2"
|
||||
style="fill:#0066e3;fill-opacity:1;stroke-width:1.09517"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -5,67 +5,50 @@
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="rdp_icon-dark.svg"
|
||||
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\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
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="namedview873"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0944327"
|
||||
inkscape:cx="37.00286"
|
||||
inkscape:cy="136.55249"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.3945823"
|
||||
inkscape:cx="-22.945939"
|
||||
inkscape:cy="41.948044"
|
||||
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>
|
||||
<circle
|
||||
style="fill:none;fill-rule:evenodd;stroke:#0095e3;stroke-width:12;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
id="path848"
|
||||
cx="102.4654"
|
||||
cy="102.29661"
|
||||
r="94.123512" />
|
||||
<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="M 158.04147,118.54708 123.2167,88.047024 158.242,52.890022 145.27258,38.706544 101.28422,80.484604 v 15.139354 l 43.47202,38.474302 z"
|
||||
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:#dadada;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 166.1585,120.5645 127.6738,86.859005 166.38011,48.007151 152.04766,32.33305 103.4363,78.501807 v 16.730436 l 48.04075,42.517797 z"
|
||||
id="path870-3"
|
||||
style="fill:#47c943;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:#ee780d;fill-opacity:1;stroke-width:1.604;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 48.331446,89.128527 34.824761,30.500043 -35.02529,35.157 12.96941,14.18348 43.988363,-41.77807 V 112.05163 L 61.616675,73.577355 Z"
|
||||
d="M 44.918433,88.054169 83.403116,121.75965 44.696828,160.6115 59.029257,176.2856 107.64061,130.11683 V 113.3864 L 59.599873,70.868635 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#47c943;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</svg>
|
||||
style="fill:#35c233;fill-opacity:1;stroke-width:1.60407"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -5,67 +5,50 @@
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
sodipodi:docname="rdp_icon.svg"
|
||||
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\ssh_icon-16.png"
|
||||
inkscape:export-xdpi="7.5076985"
|
||||
inkscape:export-ydpi="7.5076985"
|
||||
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="namedview873"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0944327"
|
||||
inkscape:cx="16.472241"
|
||||
inkscape:cy="132.25538"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.69729115"
|
||||
inkscape:cx="-252.40533"
|
||||
inkscape:cy="138.39269"
|
||||
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" />
|
||||
<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>
|
||||
<circle
|
||||
style="fill:none;fill-rule:evenodd;stroke:#0066e3;stroke-width:12;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
id="path848"
|
||||
cx="102.4654"
|
||||
cy="102.29661"
|
||||
r="94.123512" />
|
||||
<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="M 158.04147,118.54708 123.2167,88.047024 158.242,52.890022 145.27258,38.706544 101.28422,80.484604 v 15.139354 l 43.47202,38.474302 z"
|
||||
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:#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
|
||||
class="cls-1"
|
||||
d="M 166.1585,120.5645 127.6738,86.859005 166.38011,48.007151 152.04766,32.33305 103.4363,78.501807 v 16.730436 l 48.04075,42.517797 z"
|
||||
id="path870-3"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:#f27b10;fill-opacity:1;stroke-width:1.604;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccccc" /><path
|
||||
class="cls-1"
|
||||
d="m 48.331446,89.128527 34.824761,30.500043 -35.02529,35.157 12.96941,14.18348 43.988363,-41.77807 V 112.05163 L 61.616675,73.577355 Z"
|
||||
d="M 44.918433,88.054169 83.403116,121.75965 44.696828,160.6115 59.029257,176.2856 107.64061,130.11683 V 113.3864 L 59.599873,70.868635 Z"
|
||||
id="path870-3-2"
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.45152"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</svg>
|
||||
style="fill:#30962e;fill-opacity:1;stroke-width:1.60407"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -5,7 +5,7 @@
|
||||
viewBox="0 0 188.16 188.16"
|
||||
version="1.1"
|
||||
sodipodi:docname="sh_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="3.2206128"
|
||||
inkscape:cx="55.424235"
|
||||
inkscape:cy="92.218475"
|
||||
inkscape:cx="55.579485"
|
||||
inkscape:cy="92.684225"
|
||||
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
|
||||
@@ -61,7 +63,7 @@
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#f6f6f6;fill-opacity:1">></tspan></text>
|
||||
style="fill:#02b5e9;fill-opacity:1">></tspan></text>
|
||||
<metadata
|
||||
id="metadata836">
|
||||
<rdf:RDF>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -5,7 +5,7 @@
|
||||
viewBox="0 0 188.16 188.16"
|
||||
version="1.1"
|
||||
sodipodi:docname="sh_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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"
|
||||
@@ -22,15 +22,17 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.2206128"
|
||||
inkscape:cx="55.424235"
|
||||
inkscape:cy="92.218475"
|
||||
inkscape:zoom="2.2773172"
|
||||
inkscape:cx="29.420583"
|
||||
inkscape:cy="137.66198"
|
||||
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
|
||||
@@ -41,9 +43,9 @@
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M326.28,162.29H185.72a23.43,23.43,0,0,0-23.43,23.43V326.28a23.43,23.43,0,0,0,23.43,23.43H326.28a23.43,23.43,0,0,0,23.43-23.43V185.72A23.43,23.43,0,0,0,326.28,162.29ZM185.72,170.1H326.28a15.63,15.63,0,0,1,15.62,15.62v15.62H170.1V185.72A15.63,15.63,0,0,1,185.72,170.1ZM326.28,341.9H185.72a15.63,15.63,0,0,1-15.62-15.62V209.15H341.9V326.28A15.63,15.63,0,0,1,326.28,341.9Z"
|
||||
transform="translate(-161.92 -161.92)"
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(-161.92 -161.92)" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M326.28,350.08H185.72a23.83,23.83,0,0,1-23.8-23.8V185.72a23.83,23.83,0,0,1,23.8-23.8H326.28a23.83,23.83,0,0,1,23.8,23.8V326.28A23.83,23.83,0,0,1,326.28,350.08ZM185.72,162.67a23.08,23.08,0,0,0-23.05,23.05V326.28a23.08,23.08,0,0,0,23.05,23.05H326.28a23.08,23.08,0,0,0,23.05-23.05V185.72a23.08,23.08,0,0,0-23.05-23.05Zm140.56,179.6H185.72a16,16,0,0,1-16-16V208.77H342.27V326.28A16,16,0,0,1,326.28,342.27ZM170.48,209.52V326.28a15.26,15.26,0,0,0,15.24,15.24H326.28a15.26,15.26,0,0,0,15.24-15.24V209.52Zm171.79-7.81H169.73v-16a16,16,0,0,1,16-16H326.28a16,16,0,0,1,16,16ZM170.48,201h171V185.72a15.26,15.26,0,0,0-15.24-15.24H185.72a15.26,15.26,0,0,0-15.24,15.24Z"
|
||||
@@ -52,16 +54,13 @@
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<text
|
||||
class="cls-2"
|
||||
transform="translate(28.34 147.71)"
|
||||
id="text16"
|
||||
style="fill:#2e2e2e;fill-opacity:1"><tspan
|
||||
class="cls-3"
|
||||
id="tspan12"
|
||||
style="fill:#2e2e2e;fill-opacity:1">$</tspan><tspan
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#2e2e2e;fill-opacity:1">></tspan></text>
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(28.34,147.71)">$<tspan
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#216d82;fill-opacity:1">></tspan></text>
|
||||
<metadata
|
||||
id="metadata836">
|
||||
<rdf:RDF>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,97 +0,0 @@
|
||||
<?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 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="shellCommand_icon-dark.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs29" /><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095683"
|
||||
inkscape:cy="93.796966"
|
||||
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{display:none;fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
<rect
|
||||
class="st0"
|
||||
width="512"
|
||||
height="512"
|
||||
id="rect4"
|
||||
x="-161.89999"
|
||||
y="-161.89999" />
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-161.9,-161.9)"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
id="path6"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 211.9,302.5 c -1.2,0 -2.4,-0.5 -3.3,-1.5 -0.7,-0.9 -1.1,-2 -1,-3.1 0.1,-1.1 0.6,-2.2 1.5,-2.9 l 23.3,-23.3 -23.3,-23.3 c -1.4,-1.6 -1.4,-4 0,-5.6 1.5,-1.8 4.2,-2 6,-0.5 v 0 l 26.4,26.4 c 1.7,1.7 1.7,4.4 0,6 L 215.1,301 c -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.9,0.7 -1.8,1.1 -2.8,1.1 z m 0.4,-60.6 c -1,0 -2,0.4 -2.7,1.2 -1.1,1.3 -1.1,3.3 0,4.6 l 23.8,23.8 -23.8,23.9 c -0.7,0.6 -1.2,1.5 -1.2,2.4 -0.1,0.9 0.2,1.9 0.8,2.6 1.3,1.5 3.5,1.7 5,0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 L 241,274 c 1.4,-1.4 1.4,-3.6 0,-5 l -26.3,-26.3 c -0.8,-0.5 -1.6,-0.8 -2.4,-0.8 z"
|
||||
id="path8"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#f6f6f6;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path18"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path20"
|
||||
style="fill:#f6f6f6;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,97 +0,0 @@
|
||||
<?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 188.2 188.2"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="shellCommand_icon.svg"
|
||||
width="188.2"
|
||||
height="188.2"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs29" /><sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6738281"
|
||||
inkscape:cx="94.095683"
|
||||
inkscape:cy="93.796966"
|
||||
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{display:none;fill:#0C0C0C;}
|
||||
.st1{fill:#AC55FF;}
|
||||
</style>
|
||||
<rect
|
||||
class="st0"
|
||||
width="512"
|
||||
height="512"
|
||||
id="rect4"
|
||||
x="-161.89999"
|
||||
y="-161.89999" />
|
||||
<g
|
||||
id="g24"
|
||||
transform="translate(-161.9,-161.9)"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 214.8,242.5 c -1.6,-1.4 -4.1,-1.2 -5.5,0.4 -1.3,1.5 -1.3,3.6 0,5.1 l 23.6,23.6 -23.6,23.6 c -1.6,1.4 -1.8,3.9 -0.4,5.5 1.4,1.6 3.9,1.8 5.5,0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 l 26.4,-26.4 c 1.5,-1.5 1.5,-4 0,-5.5 z"
|
||||
id="path6"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 211.9,302.5 c -1.2,0 -2.4,-0.5 -3.3,-1.5 -0.7,-0.9 -1.1,-2 -1,-3.1 0.1,-1.1 0.6,-2.2 1.5,-2.9 l 23.3,-23.3 -23.3,-23.3 c -1.4,-1.6 -1.4,-4 0,-5.6 1.5,-1.8 4.2,-2 6,-0.5 v 0 l 26.4,26.4 c 1.7,1.7 1.7,4.4 0,6 L 215.1,301 c -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.9,0.7 -1.8,1.1 -2.8,1.1 z m 0.4,-60.6 c -1,0 -2,0.4 -2.7,1.2 -1.1,1.3 -1.1,3.3 0,4.6 l 23.8,23.8 -23.8,23.9 c -0.7,0.6 -1.2,1.5 -1.2,2.4 -0.1,0.9 0.2,1.9 0.8,2.6 1.3,1.5 3.5,1.7 5,0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 L 241,274 c 1.4,-1.4 1.4,-3.6 0,-5 l -26.3,-26.3 c -0.8,-0.5 -1.6,-0.8 -2.4,-0.8 z"
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,295 h -54.7 c -2.2,0 -3.9,1.7 -3.9,3.9 0,2.2 1.7,3.9 3.9,3.9 h 54.7 c 2.2,0 3.9,-1.7 3.9,-3.9 0,-2.1 -1.8,-3.9 -3.9,-3.9 z"
|
||||
id="path12"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="m 306.8,303.2 h -54.7 c -2.4,0 -4.3,-1.9 -4.3,-4.3 0,-2.4 1.9,-4.3 4.3,-4.3 h 54.7 c 2.4,0 4.3,1.9 4.3,4.3 0,2.4 -2,4.3 -4.3,4.3 z m -54.7,-7.8 c -1.9,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 h 54.7 c 1.9,0 3.5,-1.6 3.5,-3.5 0,-1.9 -1.6,-3.5 -3.5,-3.5 z"
|
||||
id="path14"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#2e2e2e;fill-opacity:1">
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,162.3 H 185.7 c -12.9,0 -23.4,10.5 -23.4,23.4 v 140.6 c 0,12.9 10.5,23.4 23.4,23.4 h 140.6 c 12.9,0 23.4,-10.5 23.4,-23.4 V 185.7 c 0,-12.9 -10.5,-23.4 -23.4,-23.4 z m -140.6,7.8 h 140.6 c 8.6,0 15.6,7 15.6,15.6 v 15.6 H 170.1 v -15.6 c 0,-8.6 7,-15.6 15.6,-15.6 z M 326.3,341.9 H 185.7 c -8.6,0 -15.6,-7 -15.6,-15.6 V 209.1 h 171.8 v 117.1 c 0,8.7 -7,15.7 -15.6,15.7 z"
|
||||
id="path18"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<path
|
||||
class="st1"
|
||||
d="M 326.3,350.1 H 185.7 c -13.1,0 -23.8,-10.7 -23.8,-23.8 V 185.7 c 0,-13.1 10.7,-23.8 23.8,-23.8 h 140.6 c 13.1,0 23.8,10.7 23.8,23.8 v 140.6 c 0,13.1 -10.7,23.8 -23.8,23.8 z M 185.7,162.7 c -12.7,0 -23.1,10.3 -23.1,23.1 v 140.6 c 0,12.7 10.3,23.1 23.1,23.1 h 140.6 c 12.7,0 23.1,-10.3 23.1,-23.1 V 185.7 c 0,-12.7 -10.3,-23.1 -23.1,-23.1 H 185.7 Z M 326.3,342.3 H 185.7 c -8.8,0 -16,-7.2 -16,-16 V 208.8 h 172.5 v 117.5 c 0.1,8.8 -7.1,16 -15.9,16 z M 170.5,209.5 v 116.8 c 0,8.4 6.8,15.2 15.2,15.2 h 140.6 c 8.4,0 15.2,-6.8 15.2,-15.2 V 209.5 Z m 171.8,-7.8 H 169.7 v -16 c 0,-8.8 7.2,-16 16,-16 h 140.6 c 8.8,0 16,7.2 16,16 z M 170.5,201 h 171 v -15.2 c 0,-8.4 -6.8,-15.2 -15.2,-15.2 H 185.7 c -8.4,0 -15.2,6.8 -15.2,15.2 z"
|
||||
id="path20"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 188.16 188.16"
|
||||
version="1.1"
|
||||
sodipodi:docname="sh_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="sudo_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"
|
||||
@@ -15,7 +15,7 @@
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview19"
|
||||
pagecolor="#ffffff"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
@@ -23,14 +23,16 @@
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.2206128"
|
||||
inkscape:cx="55.424235"
|
||||
inkscape:cy="92.218475"
|
||||
inkscape:cx="87.250476"
|
||||
inkscape:cy="133.98071"
|
||||
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
|
||||
@@ -61,7 +63,7 @@
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#f6f6f6;fill-opacity:1">></tspan></text>
|
||||
style="fill:#be251d;fill-opacity:1">></tspan></text>
|
||||
<metadata
|
||||
id="metadata836">
|
||||
<rdf:RDF>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -4,8 +4,8 @@
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 188.16 188.16"
|
||||
version="1.1"
|
||||
sodipodi:docname="sh_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
sodipodi:docname="sudo_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"
|
||||
@@ -22,15 +22,17 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.2206128"
|
||||
inkscape:cx="55.424235"
|
||||
inkscape:cy="92.218475"
|
||||
inkscape:zoom="2.2773172"
|
||||
inkscape:cx="29.420583"
|
||||
inkscape:cy="137.66198"
|
||||
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
|
||||
@@ -41,9 +43,9 @@
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M326.28,162.29H185.72a23.43,23.43,0,0,0-23.43,23.43V326.28a23.43,23.43,0,0,0,23.43,23.43H326.28a23.43,23.43,0,0,0,23.43-23.43V185.72A23.43,23.43,0,0,0,326.28,162.29ZM185.72,170.1H326.28a15.63,15.63,0,0,1,15.62,15.62v15.62H170.1V185.72A15.63,15.63,0,0,1,185.72,170.1ZM326.28,341.9H185.72a15.63,15.63,0,0,1-15.62-15.62V209.15H341.9V326.28A15.63,15.63,0,0,1,326.28,341.9Z"
|
||||
transform="translate(-161.92 -161.92)"
|
||||
id="path8"
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(-161.92 -161.92)" />
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M326.28,350.08H185.72a23.83,23.83,0,0,1-23.8-23.8V185.72a23.83,23.83,0,0,1,23.8-23.8H326.28a23.83,23.83,0,0,1,23.8,23.8V326.28A23.83,23.83,0,0,1,326.28,350.08ZM185.72,162.67a23.08,23.08,0,0,0-23.05,23.05V326.28a23.08,23.08,0,0,0,23.05,23.05H326.28a23.08,23.08,0,0,0,23.05-23.05V185.72a23.08,23.08,0,0,0-23.05-23.05Zm140.56,179.6H185.72a16,16,0,0,1-16-16V208.77H342.27V326.28A16,16,0,0,1,326.28,342.27ZM170.48,209.52V326.28a15.26,15.26,0,0,0,15.24,15.24H326.28a15.26,15.26,0,0,0,15.24-15.24V209.52Zm171.79-7.81H169.73v-16a16,16,0,0,1,16-16H326.28a16,16,0,0,1,16,16ZM170.48,201h171V185.72a15.26,15.26,0,0,0-15.24-15.24H185.72a15.26,15.26,0,0,0-15.24,15.24Z"
|
||||
@@ -52,16 +54,13 @@
|
||||
style="fill:#2e2e2e;fill-opacity:1" />
|
||||
<text
|
||||
class="cls-2"
|
||||
transform="translate(28.34 147.71)"
|
||||
id="text16"
|
||||
style="fill:#2e2e2e;fill-opacity:1"><tspan
|
||||
class="cls-3"
|
||||
id="tspan12"
|
||||
style="fill:#2e2e2e;fill-opacity:1">$</tspan><tspan
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#2e2e2e;fill-opacity:1">></tspan></text>
|
||||
style="fill:#2e2e2e;fill-opacity:1"
|
||||
transform="translate(28.34,147.71)">$<tspan
|
||||
x="54.75"
|
||||
y="0"
|
||||
id="tspan14"
|
||||
style="fill:#e45959;fill-opacity:1">></tspan></text>
|
||||
<metadata
|
||||
id="metadata836">
|
||||
<rdf:RDF>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,77 @@
|
||||
<?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="vncTunnel_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="1.3945823"
|
||||
inkscape:cx="13.624151"
|
||||
inkscape:cy="71.347528"
|
||||
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:#f0f0f0;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
|
||||
fill="#ff0707"
|
||||
d="M 7.1790278,21.08735 H 7.507032 c -0.079999,0.07997 -0.2480031,0.248004 -0.3280042,0.328003 z"
|
||||
id="path2"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 15.106033,38.647324 c 20.33626,-0.280011 40.696523,-0.272004 61.032784,0 -0.008,1.32001 -0.008,2.64003 -0.008,3.960049 -4.112053,0.295996 -8.448109,-0.264008 -12.344159,1.384015 -3.104039,1.024014 -1.632021,5.064072 -2.024026,7.512105 C 51.034494,55.463542 42.802388,64.975664 39.81835,75.9518 l -0.224003,0.600008 c -4.344057,-9.488121 -7.7841,-19.440253 -13.072169,-28.472361 -2.248027,-4.00806 -7.06409,-4.904063 -11.184143,-5.720078 -0.08,-1.24002 -0.160002,-2.472034 -0.232003,-3.712045 z"
|
||||
id="path4"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 108.71524,38.647324 c 13.96017,-0.264007 27.95236,-0.304012 41.91253,0.01597 0.60001,2.656033 -0.89601,4.432056 -3.47203,4.848065 -5.43207,1.712018 -9.47213,6.096083 -12.05616,11.01614 -4.52806,6.856089 -7.32009,14.632183 -10.84814,22.00829 -3.04004,7.040088 -6.67209,13.848166 -9.09612,21.144274 -0.57601,1.71203 -1.51201,3.272037 -2.56003,4.736057 -3.35204,4.29605 -4.92007,9.57612 -7.2241,14.43219 -2.41602,5.59207 -5.472066,10.92814 -7.120088,16.82421 -4.472058,11.44814 -9.928128,22.52828 -14.944192,33.75243 -0.704009,2.40003 -4.272056,2.37603 -4.808062,-0.104 -5.352069,-12.27216 -10.544136,-24.62432 -15.872204,-36.89647 0.096,-15.3922 -0.04,-30.792397 0.032,-46.184599 -0.160001,-4.856063 3.024039,-8.944112 6.92809,-11.456151 6.648084,14.176189 12.312158,28.78437 19.072245,42.91256 1.136015,3.74405 2.240028,7.5841 4.400057,10.88813 1.904024,0.29601 2.048026,-2.24001 2.872036,-3.43203 5.224078,-12.74416 11.536148,-25.032317 16.416218,-37.912496 4.67206,-10.776153 11.17614,-21.176292 12.89616,-32.952448 -0.464,-8.240104 -9.78412,-10.040128 -16.44821,-9.760116 -0.0319,-1.296019 -0.064,-2.584041 -0.08,-3.88005 z"
|
||||
id="path6"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 61.762632,51.503493 c 8.088105,-2.912044 17.144221,-3.592051 25.368327,-0.77602 14.648191,4.632059 25.184331,19.168249 25.216331,34.512446 -4.88007,12.880174 -11.19214,25.168331 -16.416219,37.912491 -0.82401,1.19202 -0.968011,3.72805 -2.872036,3.43204 -2.160028,-3.30403 -3.264042,-7.14409 -4.400056,-10.88814 0.392005,-8.88811 0.072,-17.784227 0.256003,-26.672345 0.04,-4.800054 -0.208002,-10.232133 -3.79205,-13.864179 -3.880048,-4.24005 -10.528135,-4.880053 -15.536199,-2.376031 -3.904051,2.512039 -7.08809,6.600088 -6.928089,11.45615 -0.072,15.392198 0.06401,30.792395 -0.032,46.184605 -0.112002,1.11201 -0.256003,2.21603 -0.416005,3.32004 -7.888101,0.184 -15.784203,0.152 -23.672305,0 -0.280003,-14.63219 0.112002,-29.27239 -0.192003,-43.90457 -0.112,-4.672064 0.800011,-9.288119 1.47202,-13.88818 2.98404,-10.976136 11.216146,-20.488258 21.944284,-24.448307 z"
|
||||
id="path8"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 135.09958,54.527524 c 16.2322,-5.600075 33.60044,-3.936048 50.44065,-3.760046 0.248,7.920098 0.176,15.856209 0.0319,23.784303 -11.42414,0.248004 -22.85629,-0.01597 -34.28044,0.07997 -5.01606,0.168005 -10.52013,2.616038 -12.49616,7.520092 -3.07203,7.856112 -3.04803,17.896237 3.00804,24.352327 4.09605,4.32804 10.49613,3.13603 15.8402,3.23204 9.29612,0.13599 18.60824,-0.32001 27.89636,0.232 0.24801,7.92009 0.17601,15.85621 0.0319,23.77631 -9.56013,0.27999 -19.12824,-0.0879 -28.69637,0.184 -10.69614,0.216 -22.04828,-2.54403 -29.87239,-10.24814 -7.28808,-6.60008 -11.46414,-16.21621 -11.84815,-26.000327 2.42404,-7.296103 6.05608,-14.104181 9.09613,-21.144268 3.52804,-7.376098 6.32007,-15.152202 10.84813,-22.00829 z"
|
||||
id="path10"
|
||||
style="fill:#f0f0f0;fill-opacity:1;stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 104.86415,120.90464 c 2.30403,-4.85607 3.87206,-10.13614 7.2241,-14.43218 0.64,10.40812 0.49601,20.88026 0.128,31.29639 -4.81606,0.25601 -9.65612,0.24001 -14.472186,-0.04 1.648022,-5.89607 4.704066,-11.23214 7.120086,-16.82421 z"
|
||||
id="path12"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#404080"
|
||||
d="m 100.60713,155.80628 c 28.28962,-0.0964 56.58738,-0.0964 84.86884,0 0.20365,3.40048 0.20365,6.80578 0,10.20628 -28.28146,0.10112 -56.57922,0.10598 -84.8607,0 -0.20364,-3.4005 -0.20364,-6.8058 -0.008,-10.20628 z"
|
||||
id="path14"
|
||||
style="fill:#147dff;fill-opacity:1;stroke-width:0.626367" /><path
|
||||
class="cls-1"
|
||||
d="m 26.964934,147.28016 21.164113,13.55486 -21.285978,15.6245 7.881915,6.30343 26.733127,-18.56704 v -6.72825 L 35.038795,140.3689 Z"
|
||||
id="path870-3-2-2"
|
||||
style="fill:#147dff;fill-opacity:1;stroke-width:0.754357"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 6.5 KiB |
@@ -0,0 +1,77 @@
|
||||
<?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="vncTunnel_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
|
||||
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.69729115"
|
||||
inkscape:cx="91.783755"
|
||||
inkscape:cy="-157.03627"
|
||||
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:#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
|
||||
fill="#ff0707"
|
||||
d="m 7.5375581,24.672653 h 0.3280042 c -0.079999,0.07997 -0.2480031,0.248004 -0.3280042,0.328003 z"
|
||||
id="path2"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 14.450487,40.178993 c 20.33626,-0.280011 40.696523,-0.272004 61.032784,0 -0.008,1.32001 -0.008,2.64003 -0.008,3.960049 -4.112053,0.295996 -8.448109,-0.264008 -12.344159,1.384015 -3.104039,1.024014 -1.632021,5.064072 -2.024026,7.512105 -10.728138,3.960049 -18.960244,13.472171 -21.944282,24.448307 l -0.224003,0.600008 c -4.344057,-9.488121 -7.7841,-19.440253 -13.072169,-28.472361 -2.248027,-4.00806 -7.06409,-4.904063 -11.184143,-5.720078 -0.08,-1.24002 -0.160002,-2.472034 -0.232003,-3.712045 z"
|
||||
id="path4"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 108.05969,40.178993 c 13.96017,-0.264007 27.95236,-0.304012 41.91253,0.01597 0.60001,2.656033 -0.89601,4.432056 -3.47203,4.848065 -5.43207,1.712018 -9.47213,6.096083 -12.05616,11.01614 -4.52806,6.856089 -7.32009,14.632183 -10.84814,22.00829 -3.04004,7.040088 -6.67209,13.848166 -9.09612,21.144274 -0.57601,1.712028 -1.51201,3.272038 -2.56003,4.736058 -3.35204,4.29605 -4.92007,9.57612 -7.2241,14.43219 -2.41602,5.59207 -5.472062,10.92814 -7.120084,16.82421 -4.472058,11.44814 -9.928128,22.52828 -14.944192,33.75243 -0.704009,2.40003 -4.272056,2.37603 -4.808062,-0.104 -5.352069,-12.27216 -10.544136,-24.62432 -15.872204,-36.89647 0.096,-15.3922 -0.04,-30.7924 0.032,-46.1846 -0.160001,-4.856063 3.024039,-8.944112 6.92809,-11.456151 6.648084,14.176189 12.312158,28.784371 19.072245,42.912561 1.136015,3.74405 2.240028,7.5841 4.400057,10.88813 1.904024,0.29601 2.048026,-2.24001 2.872036,-3.43203 C 100.4996,111.9399 106.81167,99.651742 111.69174,86.771563 116.3638,75.99541 122.86788,65.595271 124.5879,53.819115 c -0.464,-8.240104 -9.78412,-10.040128 -16.44821,-9.760116 -0.0319,-1.296019 -0.064,-2.584041 -0.08,-3.88005 z"
|
||||
id="path6"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 61.107086,53.035162 c 8.088105,-2.912044 17.144221,-3.592051 25.368327,-0.77602 14.648187,4.632059 25.184327,19.168249 25.216327,34.512446 -4.88007,12.880174 -11.19214,25.168332 -16.416215,37.912492 -0.82401,1.19202 -0.968011,3.72805 -2.872036,3.43204 -2.160028,-3.30403 -3.264042,-7.14409 -4.400056,-10.88814 0.392005,-8.88811 0.072,-17.784228 0.256003,-26.672346 0.04,-4.800054 -0.208002,-10.232133 -3.79205,-13.864179 -3.880048,-4.24005 -10.528135,-4.880053 -15.536199,-2.376031 -3.904051,2.512039 -7.08809,6.600088 -6.928089,11.45615 -0.072,15.392196 0.06401,30.792396 -0.032,46.184606 -0.112002,1.11201 -0.256003,2.21603 -0.416005,3.32004 -7.888101,0.184 -15.784203,0.152 -23.672305,0 -0.280003,-14.63219 0.112002,-29.27239 -0.192003,-43.904571 -0.112,-4.672064 0.800011,-9.288119 1.47202,-13.88818 2.98404,-10.976136 11.216146,-20.488258 21.944284,-24.448307 z"
|
||||
id="path8"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 134.44403,56.059193 c 16.2322,-5.600075 33.60044,-3.936048 50.44065,-3.760046 0.248,7.920098 0.176,15.856209 0.0319,23.784303 -11.42414,0.248004 -22.85629,-0.01597 -34.28044,0.07997 -5.01606,0.168005 -10.52013,2.616038 -12.49616,7.520092 -3.07203,7.856112 -3.04803,17.896238 3.00804,24.352328 4.09605,4.32804 10.49613,3.13603 15.8402,3.23204 9.29612,0.13599 18.60824,-0.32001 27.89636,0.232 0.24801,7.92009 0.17601,15.85621 0.0319,23.77631 -9.56013,0.27999 -19.12824,-0.0879 -28.69637,0.184 -10.69614,0.216 -22.04828,-2.54403 -29.87239,-10.24814 -7.28808,-6.60008 -11.46414,-16.21621 -11.84815,-26.000328 2.42404,-7.296103 6.05608,-14.104181 9.09613,-21.144268 3.52804,-7.376098 6.32007,-15.152202 10.84813,-22.00829 z"
|
||||
id="path10"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 105.22268,126.99965 c 2.30403,-4.85607 3.87206,-10.13614 7.2241,-14.43218 0.64,10.40812 0.49601,20.88026 0.128,31.29639 -4.81606,0.25601 -9.65612,0.24001 -14.472186,-0.04 1.648022,-5.89607 4.704066,-11.23214 7.120086,-16.82421 z"
|
||||
id="path12"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#404080"
|
||||
d="m 97.821445,152.34074 c 28.879095,-0.10195 57.766495,-0.10195 86.637265,0 0.20789,3.59798 0.20789,7.20108 0,10.79907 -28.87077,0.10706 -57.75817,0.11217 -86.628949,0 -0.20788,-3.59799 -0.20788,-7.20109 -0.0083,-10.79907 z"
|
||||
id="path14"
|
||||
style="fill:#0066e3;fill-opacity:1;stroke-width:0.650979" /><path
|
||||
class="cls-1"
|
||||
d="m 21.823542,142.74447 25.069523,15.06506 -25.213881,17.36529 9.336371,7.00574 31.666202,-20.63568 v -7.47787 L 31.387258,135.06319 Z"
|
||||
id="path870-3-2-2"
|
||||
style="fill:#0066e3;fill-opacity:1;stroke-width:0.865542"
|
||||
sodipodi:nodetypes="cccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
@@ -1,66 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="213.4675pt"
|
||||
height="163.45676pt"
|
||||
viewBox="0 0 213.4675 163.45676"
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
id="svg16"
|
||||
sodipodi:docname="vnc_icon-dark.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs20" />
|
||||
<sodipodi:namedview
|
||||
id="namedview18"
|
||||
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="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="pt"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.1642518"
|
||||
inkscape:cx="114.35823"
|
||||
inkscape:cy="94.258902"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.3945823"
|
||||
inkscape:cx="81.027846"
|
||||
inkscape:cy="125.84413"
|
||||
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="svg16" />
|
||||
<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:#f0f0f0;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
|
||||
fill="#ff0707"
|
||||
d="m -11.81,-26.756135 h 0.41 c -0.1,0.1 -0.31,0.31 -0.41,0.41 z"
|
||||
id="path2" />
|
||||
<path
|
||||
d="M 7.1790278,21.08735 H 7.507032 c -0.079999,0.07997 -0.2480031,0.248004 -0.3280042,0.328003 z"
|
||||
id="path2"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 0,0.2638654 c 25.42,-0.35 50.87,-0.34 76.29,0 -0.01,1.65 -0.01,3.3 -0.01,4.95 -5.14,0.37 -10.56,-0.33 -15.43,1.73 -3.88,1.28 -2.04,6.3299996 -2.53,9.3899996 -13.41,4.95 -23.7,16.84 -27.43,30.56 l -0.28,0.75 c -5.43,-11.86 -9.73,-24.3 -16.34,-35.59 C 11.46,7.0438654 5.44,5.9238654 0.29,4.9038654 c -0.1,-1.55 -0.2,-3.09 -0.29,-4.64 z"
|
||||
id="path4" />
|
||||
<path
|
||||
d="m 14.598995,42.703631 c 20.33626,-0.280011 40.696523,-0.272004 61.032784,0 -0.008,1.32001 -0.008,2.64003 -0.008,3.960049 C 71.511726,46.959676 67.17567,46.399672 63.27962,48.047695 60.175581,49.071709 61.647599,53.111767 61.255594,55.5598 50.527456,59.519849 42.29535,69.031971 39.311312,80.008107 l -0.224003,0.600008 c -4.344057,-9.488121 -7.7841,-19.440253 -13.072169,-28.472361 -2.248027,-4.00806 -7.06409,-4.904063 -11.184143,-5.720078 -0.08,-1.24002 -0.160002,-2.472034 -0.232003,-3.712045 z"
|
||||
id="path4"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 117.01,0.2638654 c 17.45,-0.33 34.94,-0.38 52.39,0.02 0.75,3.32 -1.12,5.54 -4.34,6.06 -6.79,2.14 -11.84,7.6199996 -15.07,13.7699996 -5.66,8.57 -9.15,18.29 -13.56,27.51 -3.8,8.8 -8.34,17.31 -11.37,26.43 -0.72,2.14 -1.89,4.09 -3.2,5.92 -4.19,5.37 -6.15,11.97 -9.03,18.04 -3.02,6.990005 -6.84,13.660005 -8.9,21.030005 -5.59,14.31 -12.41,28.16 -18.68,42.19 -0.88,3 -5.34,2.97 -6.01,-0.13 -6.69,-15.34 -13.18,-30.78 -19.84,-46.12 0.12,-19.240005 -0.05,-38.490005 0.04,-57.730005 -0.2,-6.07 3.78,-11.18 8.66,-14.32 8.31,17.72 15.39,35.98 23.84,53.64 1.42,4.680005 2.8,9.480005 5.5,13.610005 2.38,0.37 2.56,-2.8 3.59,-4.29 6.53,-15.930005 14.42,-31.290005 20.52,-47.390005 5.84,-13.47 13.97,-26.47 16.12,-41.19 C 137.09,7.0138654 125.44,4.7638654 117.11,5.1138654 c -0.04,-1.62 -0.08,-3.23 -0.1,-4.85 z"
|
||||
id="path6" />
|
||||
<path
|
||||
d="m 108.2082,42.703631 c 13.96017,-0.264007 27.95236,-0.304012 41.91253,0.01597 0.60001,2.656033 -0.89601,4.432056 -3.47203,4.848065 -5.43207,1.712018 -9.47213,6.096083 -12.05616,11.01614 -4.52806,6.856089 -7.32009,14.632183 -10.84814,22.00829 -3.04004,7.040088 -6.67209,13.848166 -9.09612,21.144274 -0.57601,1.71203 -1.51201,3.27204 -2.56003,4.73606 -3.35204,4.29605 -4.92007,9.57612 -7.2241,14.43219 -2.41602,5.59207 -5.472064,10.92814 -7.120086,16.82421 -4.472058,11.44814 -9.928128,22.52828 -14.944192,33.75243 -0.704009,2.40003 -4.272056,2.37603 -4.808062,-0.104 -5.352069,-12.27216 -10.544136,-24.62432 -15.872204,-36.89647 0.096,-15.3922 -0.04,-30.7924 0.032,-46.184602 -0.160001,-4.856063 3.024039,-8.944112 6.92809,-11.456151 6.648084,14.176189 12.312158,28.784373 19.072245,42.912563 1.136015,3.74405 2.240028,7.5841 4.400057,10.88813 1.904024,0.29601 2.048026,-2.24001 2.872036,-3.43203 5.224076,-12.74416 11.536146,-25.03232 16.416216,-37.912499 4.67206,-10.776153 11.17614,-21.176292 12.89616,-32.952448 -0.464,-8.240104 -9.78412,-10.040128 -16.44821,-9.760116 -0.0319,-1.296019 -0.064,-2.584041 -0.08,-3.88005 z"
|
||||
id="path6"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 58.32,16.333865 c 10.11,-3.64 21.43,-4.49 31.71,-0.97 18.31,5.79 31.48,23.96 31.52,43.14 -6.1,16.1 -13.99,31.46 -20.52,47.390005 -1.03,1.49 -1.21,4.66 -3.59,4.29 -2.7,-4.13 -4.08,-8.93 -5.5,-13.610005 0.49,-11.11 0.09,-22.23 0.32,-33.34 0.05,-6 -0.26,-12.79 -4.74,-17.33 -4.85,-5.3 -13.16,-6.1 -19.42,-2.97 -4.88,3.14 -8.86,8.25 -8.66,14.32 -0.09,19.24 0.08,38.49 -0.04,57.730005 -0.14,1.39 -0.32,2.77 -0.52,4.15 -9.86,0.23 -19.73,0.19 -29.59,0 -0.35,-18.29 0.14,-36.590005 -0.24,-54.880005 -0.14,-5.84 1,-11.61 1.84,-17.36 3.73,-13.72 14.02,-25.61 27.43,-30.56 z"
|
||||
d="m 61.255594,55.5598 c 8.088105,-2.912044 17.144221,-3.592051 25.368327,-0.77602 14.648189,4.632059 25.184329,19.168249 25.216329,34.512446 -4.88007,12.880174 -11.19214,25.168334 -16.416217,37.912494 -0.82401,1.19202 -0.968011,3.72805 -2.872036,3.43204 -2.160028,-3.30403 -3.264042,-7.14409 -4.400056,-10.88814 0.392005,-8.88811 0.072,-17.78423 0.256003,-26.672348 0.04,-4.800054 -0.208002,-10.232133 -3.79205,-13.864179 -3.880048,-4.24005 -10.528135,-4.880053 -15.536199,-2.376031 -3.904051,2.512039 -7.08809,6.600088 -6.928089,11.45615 -0.072,15.392198 0.06401,30.792398 -0.032,46.184608 -0.112002,1.11201 -0.256003,2.21603 -0.416005,3.32004 -7.888101,0.184 -15.784203,0.152 -23.672305,0 -0.280003,-14.63219 0.112002,-29.27239 -0.192003,-43.904573 -0.112,-4.672064 0.800011,-9.288119 1.47202,-13.88818 C 42.295353,69.031971 50.527459,59.519849 61.255597,55.5598 Z"
|
||||
id="path8"
|
||||
style="fill:#fffff6;fill-opacity:1" />
|
||||
<path
|
||||
style="stroke-width:0.800009;fill:#f0f0f0;fill-opacity:1" /><path
|
||||
fill="#000000"
|
||||
d="m 149.99,20.113865 c 20.29,-7 42,-4.92 63.05,-4.7 0.31,9.9 0.22,19.82 0.04,29.73 -14.28,0.31 -28.57,-0.02 -42.85,0.1 -6.27,0.21 -13.15,3.27 -15.62,9.4 -3.84,9.82 -3.81,22.37 3.76,30.44 5.12,5.41 13.12,3.92 19.8,4.04 11.62,0.17 23.26,-0.4 34.87,0.29 0.31,9.9 0.22,19.820005 0.04,29.720005 -11.95,0.35 -23.91,-0.11 -35.87,0.23 -13.37,0.27 -27.56,-3.18 -37.34,-12.81 -9.11,-8.250005 -14.33,-20.270005 -14.81,-32.500005 3.03,-9.12 7.57,-17.63 11.37,-26.43 4.41,-9.22 7.9,-18.94 13.56,-27.51 z"
|
||||
d="m 134.59254,58.583831 c 16.2322,-5.600075 33.60044,-3.936048 50.44065,-3.760046 0.248,7.920098 0.176,15.856209 0.0319,23.784303 -11.42414,0.248004 -22.85629,-0.01597 -34.28044,0.07997 -5.01606,0.168005 -10.52013,2.616038 -12.49616,7.520092 -3.07203,7.856112 -3.04803,17.89624 3.00804,24.35233 4.09605,4.32804 10.49613,3.13603 15.8402,3.23204 9.29612,0.13599 18.60824,-0.32001 27.89636,0.232 0.24801,7.92009 0.17601,15.85621 0.0319,23.77631 -9.56013,0.27999 -19.12824,-0.0879 -28.69637,0.184 -10.69614,0.216 -22.04828,-2.54403 -29.87239,-10.24814 -7.28808,-6.60008 -11.46414,-16.21621 -11.84815,-26.00033 2.42404,-7.296103 6.05608,-14.104181 9.09613,-21.144268 3.52804,-7.376098 6.32007,-15.152202 10.84813,-22.00829 z"
|
||||
id="path10"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
style="stroke-width:0.800009;fill:#f0f0f0;fill-opacity:1" /><path
|
||||
fill="#000000"
|
||||
d="m 112.83,98.013865 c 2.88,-6.07 4.84,-12.67 9.03,-18.04 0.8,13.01 0.62,26.100005 0.16,39.120005 -6.02,0.32 -12.07,0.3 -18.09,-0.05 2.06,-7.37 5.88,-14.04 8.9,-21.030005 z"
|
||||
d="m 104.86415,120.90464 c 2.30403,-4.85607 3.87206,-10.13614 7.2241,-14.43218 0.64,10.40812 0.49601,20.88026 0.128,31.29639 -4.81606,0.25601 -9.65612,0.24001 -14.472186,-0.04 1.648022,-5.89607 4.704066,-11.23214 7.120086,-16.82421 z"
|
||||
id="path12"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#404080"
|
||||
d="m 109.09,133.14387 c 34.73,-0.2 69.47,-0.2 104.19,0 0.25,7.06 0.25,14.13 0,21.19 -34.72,0.21 -69.46,0.22 -104.18,0 -0.25,-7.06 -0.25,-14.13 -0.01,-21.19 z"
|
||||
id="path14" />
|
||||
</svg>
|
||||
d="m 101.87212,149.00901 c 27.78436,-0.16001 55.57671,-0.16001 83.35306,0 0.20001,5.64806 0.20001,11.30414 0,16.95221 -27.77635,0.168 -55.5687,0.176 -83.34506,0 -0.2,-5.64807 -0.2,-11.30415 -0.008,-16.95221 z"
|
||||
id="path14"
|
||||
style="stroke-width:0.800009;fill:#5858e9;fill-opacity:1" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 6.1 KiB |
@@ -1,63 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="213.4675pt"
|
||||
height="163.45676pt"
|
||||
viewBox="0 0 213.4675 163.45676"
|
||||
id="Layer_1"
|
||||
data-name="Layer 1"
|
||||
viewBox="0 0 204.59 204.59"
|
||||
version="1.1"
|
||||
id="svg16"
|
||||
sodipodi:docname="vnc_icon.svg"
|
||||
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
||||
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="defs20" />
|
||||
<sodipodi:namedview
|
||||
id="namedview18"
|
||||
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="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="pt"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5303571"
|
||||
inkscape:cx="97.036173"
|
||||
inkscape:cy="131.34189"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.9861186"
|
||||
inkscape:cx="-30.422304"
|
||||
inkscape:cy="105.97103"
|
||||
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="svg16" />
|
||||
<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:#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
|
||||
fill="#ff0707"
|
||||
d="m -11.81,-26.756135 h 0.41 c -0.1,0.1 -0.31,0.31 -0.41,0.41 z"
|
||||
id="path2" />
|
||||
<path
|
||||
d="M 7.1790278,21.08735 H 7.507032 c -0.079999,0.07997 -0.2480031,0.248004 -0.3280042,0.328003 z"
|
||||
id="path2"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 0,0.2638654 c 25.42,-0.35 50.87,-0.34 76.29,0 -0.01,1.65 -0.01,3.3 -0.01,4.95 -5.14,0.37 -10.56,-0.33 -15.43,1.73 -3.88,1.28 -2.04,6.3299996 -2.53,9.3899996 -13.41,4.95 -23.7,16.84 -27.43,30.56 l -0.28,0.75 c -5.43,-11.86 -9.73,-24.3 -16.34,-35.59 C 11.46,7.0438654 5.44,5.9238654 0.29,4.9038654 c -0.1,-1.55 -0.2,-3.09 -0.29,-4.64 z"
|
||||
id="path4" />
|
||||
<path
|
||||
d="m 14.598995,42.703631 c 20.33626,-0.280011 40.696523,-0.272004 61.032784,0 -0.008,1.32001 -0.008,2.64003 -0.008,3.960049 C 71.511726,46.959676 67.17567,46.399672 63.27962,48.047695 60.175581,49.071709 61.647599,53.111767 61.255594,55.5598 50.527456,59.519849 42.29535,69.031971 39.311312,80.008107 l -0.224003,0.600008 c -4.344057,-9.488121 -7.7841,-19.440253 -13.072169,-28.472361 -2.248027,-4.00806 -7.06409,-4.904063 -11.184143,-5.720078 -0.08,-1.24002 -0.160002,-2.472034 -0.232003,-3.712045 z"
|
||||
id="path4"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#ff0707"
|
||||
d="m 117.01,0.2638654 c 17.45,-0.33 34.94,-0.38 52.39,0.02 0.75,3.32 -1.12,5.54 -4.34,6.06 -6.79,2.14 -11.84,7.6199996 -15.07,13.7699996 -5.66,8.57 -9.15,18.29 -13.56,27.51 -3.8,8.8 -8.34,17.31 -11.37,26.43 -0.72,2.14 -1.89,4.09 -3.2,5.92 -4.19,5.37 -6.15,11.97 -9.03,18.04 -3.02,6.990005 -6.84,13.660005 -8.9,21.030005 -5.59,14.31 -12.41,28.16 -18.68,42.19 -0.88,3 -5.34,2.97 -6.01,-0.13 -6.69,-15.34 -13.18,-30.78 -19.84,-46.12 0.12,-19.240005 -0.05,-38.490005 0.04,-57.730005 -0.2,-6.07 3.78,-11.18 8.66,-14.32 8.31,17.72 15.39,35.98 23.84,53.64 1.42,4.680005 2.8,9.480005 5.5,13.610005 2.38,0.37 2.56,-2.8 3.59,-4.29 6.53,-15.930005 14.42,-31.290005 20.52,-47.390005 5.84,-13.47 13.97,-26.47 16.12,-41.19 C 137.09,7.0138654 125.44,4.7638654 117.11,5.1138654 c -0.04,-1.62 -0.08,-3.23 -0.1,-4.85 z"
|
||||
id="path6" />
|
||||
<path
|
||||
d="m 108.2082,42.703631 c 13.96017,-0.264007 27.95236,-0.304012 41.91253,0.01597 0.60001,2.656033 -0.89601,4.432056 -3.47203,4.848065 -5.43207,1.712018 -9.47213,6.096083 -12.05616,11.01614 -4.52806,6.856089 -7.32009,14.632183 -10.84814,22.00829 -3.04004,7.040088 -6.67209,13.848166 -9.09612,21.144274 -0.57601,1.71203 -1.51201,3.27204 -2.56003,4.73606 -3.35204,4.29605 -4.92007,9.57612 -7.2241,14.43219 -2.41602,5.59207 -5.472064,10.92814 -7.120086,16.82421 -4.472058,11.44814 -9.928128,22.52828 -14.944192,33.75243 -0.704009,2.40003 -4.272056,2.37603 -4.808062,-0.104 -5.352069,-12.27216 -10.544136,-24.62432 -15.872204,-36.89647 0.096,-15.3922 -0.04,-30.7924 0.032,-46.184602 -0.160001,-4.856063 3.024039,-8.944112 6.92809,-11.456151 6.648084,14.176189 12.312158,28.784373 19.072245,42.912563 1.136015,3.74405 2.240028,7.5841 4.400057,10.88813 1.904024,0.29601 2.048026,-2.24001 2.872036,-3.43203 5.224076,-12.74416 11.536146,-25.03232 16.416216,-37.912499 4.67206,-10.776153 11.17614,-21.176292 12.89616,-32.952448 -0.464,-8.240104 -9.78412,-10.040128 -16.44821,-9.760116 -0.0319,-1.296019 -0.064,-2.584041 -0.08,-3.88005 z"
|
||||
id="path6"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 58.32,16.333865 c 10.11,-3.64 21.43,-4.49 31.71,-0.97 18.31,5.79 31.48,23.96 31.52,43.14 -6.1,16.1 -13.99,31.46 -20.52,47.390005 -1.03,1.49 -1.21,4.66 -3.59,4.29 -2.7,-4.13 -4.08,-8.93 -5.5,-13.610005 0.49,-11.11 0.09,-22.23 0.32,-33.34 0.05,-6 -0.26,-12.79 -4.74,-17.33 -4.85,-5.3 -13.16,-6.1 -19.42,-2.97 -4.88,3.14 -8.86,8.25 -8.66,14.32 -0.09,19.24 0.08,38.49 -0.04,57.730005 -0.14,1.39 -0.32,2.77 -0.52,4.15 -9.86,0.23 -19.73,0.19 -29.59,0 -0.35,-18.29 0.14,-36.590005 -0.24,-54.880005 -0.14,-5.84 1,-11.61 1.84,-17.36 3.73,-13.72 14.02,-25.61 27.43,-30.56 z"
|
||||
id="path8" />
|
||||
<path
|
||||
d="m 61.255594,55.5598 c 8.088105,-2.912044 17.144221,-3.592051 25.368327,-0.77602 14.648189,4.632059 25.184329,19.168249 25.216329,34.512446 -4.88007,12.880174 -11.19214,25.168334 -16.416217,37.912494 -0.82401,1.19202 -0.968011,3.72805 -2.872036,3.43204 -2.160028,-3.30403 -3.264042,-7.14409 -4.400056,-10.88814 0.392005,-8.88811 0.072,-17.78423 0.256003,-26.672348 0.04,-4.800054 -0.208002,-10.232133 -3.79205,-13.864179 -3.880048,-4.24005 -10.528135,-4.880053 -15.536199,-2.376031 -3.904051,2.512039 -7.08809,6.600088 -6.928089,11.45615 -0.072,15.392198 0.06401,30.792398 -0.032,46.184608 -0.112002,1.11201 -0.256003,2.21603 -0.416005,3.32004 -7.888101,0.184 -15.784203,0.152 -23.672305,0 -0.280003,-14.63219 0.112002,-29.27239 -0.192003,-43.904573 -0.112,-4.672064 0.800011,-9.288119 1.47202,-13.88818 C 42.295353,69.031971 50.527459,59.519849 61.255597,55.5598 Z"
|
||||
id="path8"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 149.99,20.113865 c 20.29,-7 42,-4.92 63.05,-4.7 0.31,9.9 0.22,19.82 0.04,29.73 -14.28,0.31 -28.57,-0.02 -42.85,0.1 -6.27,0.21 -13.15,3.27 -15.62,9.4 -3.84,9.82 -3.81,22.37 3.76,30.44 5.12,5.41 13.12,3.92 19.8,4.04 11.62,0.17 23.26,-0.4 34.87,0.29 0.31,9.9 0.22,19.820005 0.04,29.720005 -11.95,0.35 -23.91,-0.11 -35.87,0.23 -13.37,0.27 -27.56,-3.18 -37.34,-12.81 -9.11,-8.250005 -14.33,-20.270005 -14.81,-32.500005 3.03,-9.12 7.57,-17.63 11.37,-26.43 4.41,-9.22 7.9,-18.94 13.56,-27.51 z"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m 134.59254,58.583831 c 16.2322,-5.600075 33.60044,-3.936048 50.44065,-3.760046 0.248,7.920098 0.176,15.856209 0.0319,23.784303 -11.42414,0.248004 -22.85629,-0.01597 -34.28044,0.07997 -5.01606,0.168005 -10.52013,2.616038 -12.49616,7.520092 -3.07203,7.856112 -3.04803,17.89624 3.00804,24.35233 4.09605,4.32804 10.49613,3.13603 15.8402,3.23204 9.29612,0.13599 18.60824,-0.32001 27.89636,0.232 0.24801,7.92009 0.17601,15.85621 0.0319,23.77631 -9.56013,0.27999 -19.12824,-0.0879 -28.69637,0.184 -10.69614,0.216 -22.04828,-2.54403 -29.87239,-10.24814 -7.28808,-6.60008 -11.46414,-16.21621 -11.84815,-26.00033 2.42404,-7.296103 6.05608,-14.104181 9.09613,-21.144268 3.52804,-7.376098 6.32007,-15.152202 10.84813,-22.00829 z"
|
||||
id="path10"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#000000"
|
||||
d="m 112.83,98.013865 c 2.88,-6.07 4.84,-12.67 9.03,-18.04 0.8,13.01 0.62,26.100005 0.16,39.120005 -6.02,0.32 -12.07,0.3 -18.09,-0.05 2.06,-7.37 5.88,-14.04 8.9,-21.030005 z"
|
||||
id="path12" />
|
||||
<path
|
||||
d="m 104.86415,120.90464 c 2.30403,-4.85607 3.87206,-10.13614 7.2241,-14.43218 0.64,10.40812 0.49601,20.88026 0.128,31.29639 -4.81606,0.25601 -9.65612,0.24001 -14.472186,-0.04 1.648022,-5.89607 4.704066,-11.23214 7.120086,-16.82421 z"
|
||||
id="path12"
|
||||
style="stroke-width:0.800009" /><path
|
||||
fill="#404080"
|
||||
d="m 109.09,133.14387 c 34.73,-0.2 69.47,-0.2 104.19,0 0.25,7.06 0.25,14.13 0,21.19 -34.72,0.21 -69.46,0.22 -104.18,0 -0.25,-7.06 -0.25,-14.13 -0.01,-21.19 z"
|
||||
id="path14" />
|
||||
</svg>
|
||||
d="m 101.87212,149.00901 c 27.78436,-0.16001 55.57671,-0.16001 83.35306,0 0.20001,5.64806 0.20001,11.30414 0,16.95221 -27.77635,0.168 -55.5687,0.176 -83.34506,0 -0.2,-5.64807 -0.2,-11.30415 -0.008,-16.95221 z"
|
||||
id="path14"
|
||||
style="stroke-width:0.800009" /></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 792 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 475 KiB |
|
After Width: | Height: | Size: 536 B |
|
After Width: | Height: | Size: 759 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 11 KiB |
@@ -1515,7 +1515,8 @@ categoryFreezeDescription=Marks connection configurations as read-only. This mea
|
||||
updateFail=Update installation did not succeed
|
||||
updateFailAction=Install update manually
|
||||
updateFailActionDescription=Check out the latest releases at GitHub
|
||||
onePasswordPlaceholder=Item name
|
||||
#force
|
||||
onePasswordPlaceholder=Item name or op:// URL
|
||||
computeDirectorySizes=Compute directory sizes
|
||||
computeSize=Compute size
|
||||
vncClient=VNC client
|
||||
|
||||