Compare commits
5 Commits
8c606045e1
...
c962d3140a
| Author | SHA1 | Date | |
|---|---|---|---|
| c962d3140a | |||
| e631a16ebd | |||
| 7502acd34a | |||
| 544fbf0727 | |||
| ea80a18285 |
@ -71,8 +71,8 @@ depends = [ "shell" ]
|
|||||||
depends = [ "torrent", "zathura", "email" ]
|
depends = [ "torrent", "zathura", "email" ]
|
||||||
|
|
||||||
[misc.files]
|
[misc.files]
|
||||||
"config/batrc" = "~/.config/bat/config"
|
"config/bat/" = "~/.config/bat/"
|
||||||
"config/tmThemes/" = "~/.config/silicon/themes/"
|
"config/silicon/" = "~/.config/silicon/"
|
||||||
"config/btop/" = "~/.config/btop/"
|
"config/btop/" = "~/.config/btop/"
|
||||||
"config/htoprc" = "~/.config/htop/htoprc"
|
"config/htoprc" = "~/.config/htop/htoprc"
|
||||||
"config/fastfetch/" = "~/.config/fastfetch/"
|
"config/fastfetch/" = "~/.config/fastfetch/"
|
||||||
@ -178,9 +178,12 @@ depends = [ "zsh", "tmux", "fish" ]
|
|||||||
[dev.files]
|
[dev.files]
|
||||||
"config/sqruff/" = "~/.config/sqruff/"
|
"config/sqruff/" = "~/.config/sqruff/"
|
||||||
"config/asm-lsp/" = "~/.config/asm-lsp/"
|
"config/asm-lsp/" = "~/.config/asm-lsp/"
|
||||||
|
"config/containers/" = "~/.config/containers/"
|
||||||
|
|
||||||
|
|
||||||
[apps.files]
|
[apps.files]
|
||||||
"config/Vencord/" = "~/.config/Vencord/"
|
"config/Vencord/" = "~/.config/Vencord/"
|
||||||
|
"config/obs-studio/" = "~/.config/obs-studio/"
|
||||||
|
|
||||||
[gtk.files]
|
[gtk.files]
|
||||||
"config/gtk-3.0/" = "~/.config/gtk-3.0/"
|
"config/gtk-3.0/" = "~/.config/gtk-3.0/"
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
[default_config]
|
[default_config]
|
||||||
version = "0.10.0"
|
version = "0.10.0"
|
||||||
assembler = "gas"
|
assembler = "gas"
|
||||||
instruction_set = "riscv"
|
instruction_set = "arm"
|
||||||
|
|
||||||
[default_config.opts]
|
[default_config.opts]
|
||||||
# compiler = "zig"
|
# compiler = "zig"
|
||||||
|
|||||||
1
config/bat/themes
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../tmThemes/
|
||||||
@ -57,7 +57,7 @@ update_ms = 1000
|
|||||||
|
|
||||||
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
|
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
|
||||||
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
|
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
|
||||||
proc_sorting = "memory"
|
proc_sorting = "cpu direct"
|
||||||
|
|
||||||
#* Reverse sorting order, True or False.
|
#* Reverse sorting order, True or False.
|
||||||
proc_reversed = False
|
proc_reversed = False
|
||||||
|
|||||||
10
config/containers/containers.toml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[engine]
|
||||||
|
cgroup_manager = "cgroupfs"
|
||||||
|
events_logger = "file"
|
||||||
|
runtime = "crun"
|
||||||
|
|
||||||
|
[network]
|
||||||
|
network_backend = "cni"
|
||||||
|
|
||||||
|
[storage]
|
||||||
|
driver = "overlay"
|
||||||
@ -1,57 +1,26 @@
|
|||||||
# Source startup file
|
#!/usr/bin/env fish
|
||||||
# if test -f "$XDG_CONFIG_HOME/zsh/startup"
|
|
||||||
# source "$XDG_CONFIG_HOME/zsh/startup"
|
|
||||||
# end
|
|
||||||
|
|
||||||
|
|
||||||
# Starship prompt
|
|
||||||
starship init fish | source
|
starship init fish | source
|
||||||
|
zoxide init fish | source
|
||||||
|
|
||||||
# Aliases
|
set -g fish_history_size 1000000
|
||||||
if test -f "$XDG_CONFIG_HOME/fish/alias.fish"
|
|
||||||
source "$XDG_CONFIG_HOME/fish/alias.fish"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Environment variables
|
set -gx fish_complete_path "$XDG_CONFIG_HOME/fish/completions" $fish_complete_path
|
||||||
set -x KEYTIMEOUT 1
|
|
||||||
|
|
||||||
# Functions
|
# fzf configuration
|
||||||
function cd
|
set -gx FZF_DEFAULT_OPTS "--height 40% --layout=reverse --border"
|
||||||
if test (count $argv) -eq 0
|
set -gx FZF_DEFAULT_COMMAND "fd --type f"
|
||||||
builtin cd ~
|
|
||||||
else
|
|
||||||
builtin cd $argv
|
|
||||||
end
|
|
||||||
eza -a --icons --group-directories-first
|
|
||||||
end
|
|
||||||
|
|
||||||
function lfcd
|
# # PATH configuration
|
||||||
set tmp (mktemp -uq)
|
# fish_add_path $BUN_INSTALL/bin
|
||||||
lf -last-dir-path="$tmp" $argv
|
# fish_add_path $HOME/.local/bin
|
||||||
if test -f "$tmp"
|
#
|
||||||
set dir (cat "$tmp")
|
# # Environment setup
|
||||||
if test -d "$dir" -a "$dir" != (pwd)
|
# if test -f "$HOME/.local/share/bin/env"
|
||||||
cd "$dir"
|
# source "$HOME/.local/share/bin/env"
|
||||||
end
|
# end
|
||||||
end
|
#
|
||||||
end
|
# # Bun completions
|
||||||
|
# if test -f "/home/kristofers/.bun/_bun"
|
||||||
function yazicd
|
# source "/home/kristofers/.bun/_bun"
|
||||||
set tmp (mktemp -t "yazi-cwd.XXXXXX")
|
|
||||||
yazi $argv --cwd-file="$tmp"
|
|
||||||
set cwd (cat "$tmp")
|
|
||||||
if test -n "$cwd" -a "$cwd" != "$PWD"
|
|
||||||
cd "$cwd"
|
|
||||||
eza -a --icons --group-directories-first
|
|
||||||
end
|
|
||||||
rm -f "$tmp"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Keybindings
|
|
||||||
fish_vi_key_bindings
|
|
||||||
|
|
||||||
|
|
||||||
# Source other files
|
|
||||||
# if test -f "$HOME/.local/share/../bin/env"
|
|
||||||
# source "$HOME/.local/share/../bin/env"
|
|
||||||
# end
|
# end
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
../../local/share/themes/rose-pine-gtk/gtk-3.0/dist/gtk-dark.css
|
|
||||||
@ -1 +0,0 @@
|
|||||||
../../local/share/themes/rose-pine-gtk/gtk-3.0/dist/gtk.css
|
|
||||||
1
config/gtk-3.0/gtk.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
@import url("resource:///org/numixproject/gtk/dist/gtk.css");
|
||||||
@ -1 +0,0 @@
|
|||||||
../../local/share/themes/gtk4/gtk4/rose-pine.css
|
|
||||||
@ -1,9 +1,8 @@
|
|||||||
|
|
||||||
@define-color accent_bg_color #c4a7e7;
|
@define-color accent_bg_color #c4a7e7;
|
||||||
@define-color accent_fg_color #191724;
|
@define-color accent_fg_color #191724;
|
||||||
@define-color accent_color #c4a7e7;
|
@define-color accent_color #c4a7e7;
|
||||||
|
|
||||||
@define-color destructive_bg_color #eb6f92;
|
@define-color destructive_bg_color #eb6f92;
|
||||||
@define-color destructive_fg_color #191724;
|
@define-color destructive_fg_color #191724;
|
||||||
@define-color destructive_color #eb6f92;
|
@define-color destructive_color #eb6f92;
|
||||||
|
|
||||||
@ -30,7 +29,6 @@
|
|||||||
@define-color headerbar_backdrop_color @window_bg_color;
|
@define-color headerbar_backdrop_color @window_bg_color;
|
||||||
@define-color headerbar_shade_color #191724;
|
@define-color headerbar_shade_color #191724;
|
||||||
|
|
||||||
|
|
||||||
@define-color card_bg_color #1f1d2e;
|
@define-color card_bg_color #1f1d2e;
|
||||||
@define-color card_fg_color #e0def4;
|
@define-color card_fg_color #e0def4;
|
||||||
@define-color card_shade_color #1f1d2e;
|
@define-color card_shade_color #1f1d2e;
|
||||||
@ -286,13 +286,10 @@ layout {
|
|||||||
// See the binds section below for more spawn examples.
|
// See the binds section below for more spawn examples.
|
||||||
|
|
||||||
// This line starts waybar, a commonly used bar for Wayland compositors.
|
// This line starts waybar, a commonly used bar for Wayland compositors.
|
||||||
spawn-at-startup "xwayland-satellite"
|
|
||||||
spawn-at-startup "pipewire"
|
spawn-at-startup "pipewire"
|
||||||
spawn-at-startup "pipewire-pulse"
|
spawn-at-startup "pipewire-pulse"
|
||||||
spawn-at-startup "wireplumber"
|
spawn-at-startup "wireplumber"
|
||||||
spawn-at-startup "waybar"
|
spawn-at-startup "waybar"
|
||||||
// spawn-at-startup "eww" "daemon"
|
|
||||||
// spawn-at-startup "eww" "open bar"
|
|
||||||
spawn-at-startup "mako"
|
spawn-at-startup "mako"
|
||||||
// spawn-at-startup "dbus-update-activation-environment" "WAYLAND_DISPLAY" "XDG_CURRENT_DESKTOP" "DISPLAY" "XAUTHORITY"
|
// spawn-at-startup "dbus-update-activation-environment" "WAYLAND_DISPLAY" "XDG_CURRENT_DESKTOP" "DISPLAY" "XAUTHORITY"
|
||||||
spawn-at-startup "nextcloud"
|
spawn-at-startup "nextcloud"
|
||||||
@ -300,7 +297,7 @@ spawn-at-startup "nextcloud"
|
|||||||
spawn-at-startup "xrdb" "~/.config/x11/xresources"
|
spawn-at-startup "xrdb" "~/.config/x11/xresources"
|
||||||
spawn-at-startup "transmission-daemon"
|
spawn-at-startup "transmission-daemon"
|
||||||
spawn-at-startup "{{browser}}"
|
spawn-at-startup "{{browser}}"
|
||||||
spawn-at-startup "kotatogram-desktop"
|
spawn-at-startup "flatpak" "run" "com.ayugram.desktop"
|
||||||
spawn-at-startup "vesktop"
|
spawn-at-startup "vesktop"
|
||||||
spawn-at-startup "swap-wallpaper"
|
spawn-at-startup "swap-wallpaper"
|
||||||
|
|
||||||
@ -388,6 +385,7 @@ window-rule {
|
|||||||
|
|
||||||
window-rule {
|
window-rule {
|
||||||
match at-startup=true app-id=r#"^org\.telegram\.desktop$"#
|
match at-startup=true app-id=r#"^org\.telegram\.desktop$"#
|
||||||
|
match at-startup=true app-id=r#"^com\.ayugram\.desktop$"#
|
||||||
match at-startup=true app-id=r#"^org\.gnome\.Fractal$"#
|
match at-startup=true app-id=r#"^org\.gnome\.Fractal$"#
|
||||||
match at-startup=true app-id=r#"discord"#
|
match at-startup=true app-id=r#"discord"#
|
||||||
match at-startup=true app-id=r#"vesktop"#
|
match at-startup=true app-id=r#"vesktop"#
|
||||||
|
|||||||
1
config/obs-studio
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit b48939f1fa01687094c86a443a9372c0351f79b4
|
||||||
@ -11,6 +11,7 @@ alias \
|
|||||||
mkdir="mkdir -pv" \
|
mkdir="mkdir -pv" \
|
||||||
mv="mv -iv" \
|
mv="mv -iv" \
|
||||||
nsxiv="nsxiv -a" \
|
nsxiv="nsxiv -a" \
|
||||||
|
img="oculante" \
|
||||||
rm="rm -vI" \
|
rm="rm -vI" \
|
||||||
wget="wget --hsts-file=$XDG_DATA_HOME/wget-hsts" \
|
wget="wget --hsts-file=$XDG_DATA_HOME/wget-hsts" \
|
||||||
keychain="keychain --dir $XDG_RUNTIME_DIR/keychain"
|
keychain="keychain --dir $XDG_RUNTIME_DIR/keychain"
|
||||||
|
|||||||
@ -6,11 +6,14 @@ typeset -U PATH path
|
|||||||
# If you don't plan on reverting to bash, you can remove the link in ~/.profile
|
# If you don't plan on reverting to bash, you can remove the link in ~/.profile
|
||||||
# to clean up.
|
# to clean up.
|
||||||
|
|
||||||
|
export BUN_INSTALL="$XDG_DATA_HOME/bun"
|
||||||
|
|
||||||
# Adds `~/.local/bin` to $PATH
|
# Adds `~/.local/bin` to $PATH
|
||||||
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
|
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
|
||||||
export PATH="$PATH:~/.spicetify"
|
export PATH="$PATH:~/.spicetify"
|
||||||
export PATH="$PATH:${$(find ~/.cache/.bun/bin -type d -printf %p:)%%:}"
|
export PATH="$PATH:${$(find ~/.cache/.bun/bin -type d -printf %p:)%%:}"
|
||||||
export PATH="$JAVA_HOME/bin:$PATH"
|
export PATH="$JAVA_HOME/bin:$PATH"
|
||||||
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||||
|
|
||||||
# Disable files
|
# Disable files
|
||||||
export LESSHISTFILE=-
|
export LESSHISTFILE=-
|
||||||
@ -25,7 +28,7 @@ unsetopt PROMPT_SP
|
|||||||
# Default Apps
|
# Default Apps
|
||||||
export BROWSER="floorp"
|
export BROWSER="floorp"
|
||||||
export EDITOR="nvim"
|
export EDITOR="nvim"
|
||||||
export IMAGE="nsxiv"
|
export IMAGE="oculante"
|
||||||
export READER="zathura"
|
export READER="zathura"
|
||||||
export TERMINAL="{{terminal}}"
|
export TERMINAL="{{terminal}}"
|
||||||
export VIDEO="mpv"
|
export VIDEO="mpv"
|
||||||
|
|||||||
1
config/silicon/themes
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../tmThemes/
|
||||||
@ -12,7 +12,7 @@
|
|||||||
"spacing": 0, // Gaps between modules (4px)
|
"spacing": 0, // Gaps between modules (4px)
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"wlr/taskbar"
|
"cffi/niri-taskbar"
|
||||||
],
|
],
|
||||||
"modules-center": [],
|
"modules-center": [],
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
@ -57,6 +57,16 @@
|
|||||||
"on-click-middle": "close",
|
"on-click-middle": "close",
|
||||||
"on-click-right": "fullscreen"
|
"on-click-right": "fullscreen"
|
||||||
},
|
},
|
||||||
|
"cffi/niri-taskbar": {
|
||||||
|
"module_path": "/usr/lib/waybar/libniri_taskbar.so",
|
||||||
|
// "all-outputs": true,
|
||||||
|
// "format": "{icon} {title} {app_id}",
|
||||||
|
"format": "{icon}",
|
||||||
|
"tooltip-format": "{title} | {app_id}",
|
||||||
|
"on-click": "activate",
|
||||||
|
"on-click-middle": "close",
|
||||||
|
"on-click-right": "fullscreen"
|
||||||
|
},
|
||||||
"keyboard-state": {
|
"keyboard-state": {
|
||||||
"numlock": true,
|
"numlock": true,
|
||||||
"capslock": true,
|
"capslock": true,
|
||||||
|
|||||||
@ -1,157 +0,0 @@
|
|||||||
* {
|
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
|
||||||
font-family:
|
|
||||||
JetBrains Mono NF,
|
|
||||||
FontAwesome,
|
|
||||||
Roboto,
|
|
||||||
Helvetica,
|
|
||||||
Arial,
|
|
||||||
sans-serif;
|
|
||||||
font-size: 13px;
|
|
||||||
color: #c0caf5;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
border-top: 3px solid transparent;
|
|
||||||
color: #c0caf5;
|
|
||||||
transition-property: background-color;
|
|
||||||
transition-duration: 0.5s;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
border-radius: 20px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.hidden {
|
|
||||||
opacity: 0.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.chromium {
|
|
||||||
background-color: #000;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
/* Use box-shadow instead of border so the text isn't offset */
|
|
||||||
box-shadow: inset 0 3px transparent;
|
|
||||||
/* Avoid rounded borders under each button name */
|
|
||||||
border: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
||||||
button:hover {
|
|
||||||
background: inherit;
|
|
||||||
box-shadow: inset 0 3px #c0caf5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
padding: 0 5px;
|
|
||||||
color: #c0caf5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
box-shadow: inset 0 3px #c0caf5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.urgent {
|
|
||||||
background-color: #db4b4b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mode {
|
|
||||||
border-bottom: 3px solid #c0caf5;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#battery,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#disk,
|
|
||||||
#temperature,
|
|
||||||
#backlight,
|
|
||||||
#network,
|
|
||||||
#pulseaudio,
|
|
||||||
#custom-media,
|
|
||||||
#tray,
|
|
||||||
#mode,
|
|
||||||
#idle_inhibitor,
|
|
||||||
#scratchpad,
|
|
||||||
#mpd,
|
|
||||||
#custom-wireguard,
|
|
||||||
#custom-github,
|
|
||||||
#custom-dunst {
|
|
||||||
padding: 0 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-pipewire.muted {
|
|
||||||
color: #414868;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window,
|
|
||||||
#workspaces {
|
|
||||||
margin: 0 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the leftmost module, omit left margin */
|
|
||||||
.modules-left>widget:first-child>#workspaces {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If workspaces is the rightmost module, omit right margin */
|
|
||||||
.modules-right>widget:last-child>#workspaces {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging,
|
|
||||||
#battery.plugged {
|
|
||||||
color: #1abc9c;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
to {
|
|
||||||
color: #c0caf5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.warning:not(.charging) {
|
|
||||||
color: #e0af68;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
color: #db4b4b;
|
|
||||||
animation-name: blink;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
animation-timing-function: linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
animation-direction: alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio.muted {
|
|
||||||
color: #414868;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-media {
|
|
||||||
color: #41a6b5;
|
|
||||||
min-width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#temperature.critical {
|
|
||||||
color: #db4b4b;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray>.passive {
|
|
||||||
-gtk-icon-effect: dim;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tray>.needs-attention {
|
|
||||||
-gtk-icon-effect: highlight;
|
|
||||||
}
|
|
||||||
|
|
||||||
#network.disconnected {
|
|
||||||
color: #db4b4b;
|
|
||||||
}
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
autostart="picom nextcloud transmission-daemon discord syncthing mullvad-vpn spotify-launcher kotatogram-desktop floorp"
|
autostart="picom nextcloud transmission-daemon discord syncthing mullvad-vpn spotify-launcher AyuGram floorp"
|
||||||
|
|
||||||
for program in $autostart; do
|
for program in $autostart; do
|
||||||
pidof -sx "$program" || "$program" &
|
pidof -sx "$program" || "$program" &
|
||||||
|
|||||||
@ -665,7 +665,6 @@ _bun_test_completion() {
|
|||||||
'--timeout[Set the per-test timeout in milliseconds, default is 5000.]:timeout' \
|
'--timeout[Set the per-test timeout in milliseconds, default is 5000.]:timeout' \
|
||||||
'--update-snapshots[Update snapshot files]' \
|
'--update-snapshots[Update snapshot files]' \
|
||||||
'--rerun-each[Re-run each test file <NUMBER> times, helps catch certain bugs]:rerun' \
|
'--rerun-each[Re-run each test file <NUMBER> times, helps catch certain bugs]:rerun' \
|
||||||
'--only[Only run tests that are marked with "test.only()"]' \
|
|
||||||
'--todo[Include tests that are marked with "test.todo()"]' \
|
'--todo[Include tests that are marked with "test.todo()"]' \
|
||||||
'--coverage[Generate a coverage profile]' \
|
'--coverage[Generate a coverage profile]' \
|
||||||
'--bail[Exit the test suite after <NUMBER> failures. If you do not specify a number, it defaults to 1.]:bail' \
|
'--bail[Exit the test suite after <NUMBER> failures. If you do not specify a number, it defaults to 1.]:bail' \
|
||||||
|
|||||||
8
local/bin/podman-cleanup
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if command -v podman >/dev/null; then
|
||||||
|
export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-/run/user/$(id -u)}"
|
||||||
|
podman --runtime-flag timeout=5s stop --all 2>/dev/null || true
|
||||||
|
podman --runtime-flag timeout=5s rm --all --force 2>/dev/null || true
|
||||||
|
rm -rf "${XDG_RUNTIME_DIR}/libpod" "${XDG_RUNTIME_DIR}/containers" 2>/dev/null || true
|
||||||
|
fi
|
||||||
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
WALLPAPER_DIR="$HOME/Pictures/wallpapers/PoE2/3880x2160/"
|
WALLPAPER_DIR="$HOME/Pictures/wallpapers/Linux-Dynamic-Wallpapers/"
|
||||||
|
|
||||||
if pgrep -x "Hyprland" >/dev/null; then
|
if pgrep -x "Hyprland" >/dev/null; then
|
||||||
CURRENT_WALL=$(hyprctl hyprpaper listloaded)
|
CURRENT_WALL=$(hyprctl hyprpaper listloaded)
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Application
|
Type=Application
|
||||||
Name=Image viewer
|
Name=Image viewer
|
||||||
Exec=/usr/bin/nsxiv -aio %f
|
# Exec=/usr/bin/nsxiv -aio %f
|
||||||
|
Exec=/usr/bin/oculante %f
|
||||||
|
|||||||
@ -1,43 +0,0 @@
|
|||||||
|
|
||||||
@define-color accent_bg_color #907aa9;
|
|
||||||
@define-color accent_fg_color #faf4ed;
|
|
||||||
@define-color accent_color #907aa9;
|
|
||||||
|
|
||||||
@define-color destructive_bg_color #b4637a;
|
|
||||||
@define-color destructive_fg_color #faf4ed;
|
|
||||||
@define-color destructive_color #b4637a;
|
|
||||||
|
|
||||||
@define-color success_bg_color #56949f;
|
|
||||||
@define-color success_fg_color #575279;
|
|
||||||
@define-color success_color #56949f;
|
|
||||||
|
|
||||||
@define-color warning_bg_color #ea9d34;
|
|
||||||
@define-color warning_fg_color #575279;
|
|
||||||
@define-color warning_color #ea9d34;
|
|
||||||
|
|
||||||
@define-color error_bg_color #b4637a;
|
|
||||||
@define-color error_fg_color #575279;
|
|
||||||
@define-color error_color #b4637a;
|
|
||||||
|
|
||||||
@define-color window_bg_color #faf4ed;
|
|
||||||
@define-color window_fg_color #575279;
|
|
||||||
|
|
||||||
@define-color view_bg_color #f2e9e1;
|
|
||||||
@define-color view_fg_color #575279;
|
|
||||||
|
|
||||||
@define-color headerbar_bg_color #faf4ed;
|
|
||||||
@define-color headerbar_fg_color #575279;
|
|
||||||
@define-color headerbar_backdrop_color @window_bg_color;
|
|
||||||
@define-color headerbar_shade_color #faf4ed;
|
|
||||||
|
|
||||||
|
|
||||||
@define-color card_bg_color #fffaf3;
|
|
||||||
@define-color card_fg_color #575279;
|
|
||||||
@define-color card_shade_color #fffaf3;
|
|
||||||
|
|
||||||
@define-color popover_bg_color #f2e9e1;
|
|
||||||
@define-color popover_fg_color #575279;
|
|
||||||
|
|
||||||
@define-color sidebar_backdrop_color #f2e9e1;
|
|
||||||
@define-color sidebar_bg_color #f2e9e1;
|
|
||||||
@define-color sidebar_fg_color #575279;
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
|
|
||||||
@define-color accent_bg_color #c4a7e7;
|
|
||||||
@define-color accent_fg_color #232136;
|
|
||||||
@define-color accent_color #c4a7e7;
|
|
||||||
|
|
||||||
@define-color destructive_bg_color #eb6f92;
|
|
||||||
@define-color destructive_fg_color #232136;
|
|
||||||
@define-color destructive_color #eb6f92;
|
|
||||||
|
|
||||||
@define-color success_bg_color #9ccfd8;
|
|
||||||
@define-color success_fg_color #e0def4;
|
|
||||||
@define-color success_color #9ccfd8;
|
|
||||||
|
|
||||||
@define-color warning_bg_color #f6c177;
|
|
||||||
@define-color warning_fg_color #e0def4;
|
|
||||||
@define-color warning_color #f6c177;
|
|
||||||
|
|
||||||
@define-color error_bg_color #eb6f92;
|
|
||||||
@define-color error_fg_color #e0def4;
|
|
||||||
@define-color error_color #eb6f92;
|
|
||||||
|
|
||||||
@define-color window_bg_color #232136;
|
|
||||||
@define-color window_fg_color #e0def4;
|
|
||||||
|
|
||||||
@define-color view_bg_color #393552;
|
|
||||||
@define-color view_fg_color #e0def4;
|
|
||||||
|
|
||||||
@define-color headerbar_bg_color #232136;
|
|
||||||
@define-color headerbar_fg_color #e0def4;
|
|
||||||
@define-color headerbar_backdrop_color @window_bg_color;
|
|
||||||
@define-color headerbar_shade_color #232136;
|
|
||||||
|
|
||||||
|
|
||||||
@define-color card_bg_color #2a273f;
|
|
||||||
@define-color card_fg_color #e0def4;
|
|
||||||
@define-color card_shade_color #2a273f;
|
|
||||||
|
|
||||||
@define-color popover_bg_color #393552;
|
|
||||||
@define-color popover_fg_color #e0def4;
|
|
||||||
|
|
||||||
@define-color sidebar_backdrop_color #393552;
|
|
||||||
@define-color sidebar_bg_color #393552;
|
|
||||||
@define-color sidebar_fg_color #e0def4;
|
|
||||||
|
Before Width: | Height: | Size: 154 KiB |
@ -1,38 +0,0 @@
|
|||||||
checkbox-checked-dark
|
|
||||||
checkbox-checked-insensitive-dark
|
|
||||||
checkbox-checked-insensitive
|
|
||||||
checkbox-checked
|
|
||||||
checkbox-mixed-dark
|
|
||||||
checkbox-mixed-insensitive-dark
|
|
||||||
checkbox-mixed-insensitive
|
|
||||||
checkbox-mixed
|
|
||||||
checkbox-unchecked-dark
|
|
||||||
checkbox-unchecked-insensitive-dark
|
|
||||||
checkbox-unchecked-insensitive
|
|
||||||
checkbox-unchecked
|
|
||||||
grid-selection-checked-dark
|
|
||||||
grid-selection-checked
|
|
||||||
grid-selection-unchecked-dark
|
|
||||||
grid-selection-unchecked
|
|
||||||
menuitem-checkbox-checked-hover
|
|
||||||
menuitem-checkbox-checked-insensitive
|
|
||||||
menuitem-checkbox-checked
|
|
||||||
menuitem-checkbox-mixed-hover
|
|
||||||
menuitem-checkbox-mixed-insensitive
|
|
||||||
menuitem-checkbox-mixed
|
|
||||||
menuitem-radio-checked-hover
|
|
||||||
menuitem-radio-checked-insensitive
|
|
||||||
menuitem-radio-checked
|
|
||||||
pane-handle
|
|
||||||
radio-checked-dark
|
|
||||||
radio-checked-insensitive-dark
|
|
||||||
radio-checked-insensitive
|
|
||||||
radio-checked
|
|
||||||
radio-mixed-dark
|
|
||||||
radio-mixed-insensitive-dark
|
|
||||||
radio-mixed-insensitive
|
|
||||||
radio-mixed
|
|
||||||
radio-unchecked-dark
|
|
||||||
radio-unchecked-insensitive-dark
|
|
||||||
radio-unchecked-insensitive
|
|
||||||
radio-unchecked
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
for f in "$@"; do
|
|
||||||
rsvg-convert -d 300 -p 300 -f svg "$f" -o "${f}.bak" ; mv "${f}.bak" "$f"
|
|
||||||
done
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#f0f0f3;fill-opacity:0.3;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 851 B |
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 849 B |
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#f0f0f3;fill-opacity:0.3;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 387 B |
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 385 B |
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#26233a;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#1f1d2e;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#f0f0f3;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 242.773438 81.640625 C 235.15625 81.835938 227.636719 85.027344 222.234375 90.527344 L 138.3125 170.441406 L 109.503906 138.183594 C 99.25 124.511719 76.789062 123.046875 64.910156 135.253906 C 53.027344 147.492188 54.6875 170.378906 68.164062 180.695312 L 117.839844 234.015625 C 137.335938 253.546875 146.160156 250.945312 165.851562 231.21875 C 165.851562 231.21875 233.5625 149.773438 273.273438 122.234375 C 282.03125 113.898438 285.710938 111.589844 281.121094 100.324219 C 276.5625 89.03125 254.753906 81.21875 242.773438 81.640625 Z M 242.773438 81.640625 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#26233a;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#1f1d2e;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#f0f0f3;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#191724;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.6;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#191724;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.6;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 919 B |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#191724;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.6;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#c4a7e7;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
|
|
||||||
<g id="surface1">
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#e0def4;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
|
|
||||||
<path style=" stroke:none;fill-rule:nonzero;fill:#191724;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |