[Update] bulk update
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# enable float
|
||||
WinFloat=$(hyprctl -j clients | jq '.[] | select(.focusHistoryID == 0) | .floating')
|
||||
WinPinned=$(hyprctl -j clients | jq '.[] | select(.focusHistoryID == 0) | .pinned')
|
||||
|
||||
if [ "${WinFloat}" == "false" ] && [ "${WinPinned}" == "false" ] ; then
|
||||
hyprctl dispatch togglefloating active
|
||||
fi
|
||||
|
||||
# toggle pin
|
||||
hyprctl dispatch pin active
|
||||
|
||||
# disable float
|
||||
WinFloat=$(hyprctl -j clients | jq '.[] | select(.focusHistoryID == 0) | .floating')
|
||||
WinPinned=$(hyprctl -j clients | jq '.[] | select(.focusHistoryID == 0) | .pinned')
|
||||
|
||||
if [ "${WinFloat}" == "true" ] && [ "${WinPinned}" == "false" ] ; then
|
||||
hyprctl dispatch togglefloating active
|
||||
fi
|
||||
|
||||
@@ -0,0 +1,133 @@
|
||||
#! ░▒▒▒░░░▓▓ ___________
|
||||
#! ░░▒▒▒░░░░░▓▓ //___________/
|
||||
#! ░░▒▒▒░░░░░▓▓ _ _ _ _ _____
|
||||
#! ░░▒▒░░░░░▓▓▓▓▓▓ | | | | | | | __/
|
||||
#! ░▒▒░░░░▓▓ ▓▓ | |_| | |_/ /| |___
|
||||
#! ░▒▒░░▓▓ ▓▓ \__ |____/ |____/ █░█ ▄▀█ █▀█ █ ▄▀█ █▄▄ █░░ █▀▀ █▀
|
||||
#! ░▒▓▓ ▓▓ //____/ ▀▄▀ █▀█ █▀▄ █ █▀█ █▄█ █▄▄ ██▄ ▄█
|
||||
|
||||
# Override configuration for user environment variables and startup commands
|
||||
# Static variables here take priority over default and dynamic configurations
|
||||
|
||||
# NOTE
|
||||
# Leaving the variable empty will unset the variable
|
||||
# Commenting out the variable will use the default value
|
||||
# For updated configuration options, see https://github.com/HyDE-Project/HyDE/blob/master/Configs/.config/hypr/hyde.conf
|
||||
# For simplicity, ./hyde.conf ONLY accepts $ for variables and # for comments, will sanitize the file to remove any other characters
|
||||
# $start.VAR , $env.VAR are ONLY HyDE specific conventions for consistency.
|
||||
|
||||
# Keyboard modifier
|
||||
$mainMod = SUPER # windows key
|
||||
|
||||
# ▄▀█ █▀█ █▀█ █▀
|
||||
# █▀█ █▀▀ █▀▀ ▄█
|
||||
|
||||
$QUICKAPPS = # used for quick app launcher
|
||||
$BROWSER = firefox # default browser, if commented out , will use the default browser
|
||||
$EDITOR = code # default editor, if commented out , will use the default editor
|
||||
$EXPLORER= dolphin # default file manager, if commented out , will use the default file manager
|
||||
$TERMINAL = kitty # default terminal, if commented out , will use the org.gnome.desktop.default-applications.terminal
|
||||
$LOCKSCREEN=hyprlock # default lockscreen, you can use any lockscreen you want, eg swaylock
|
||||
$IDLE=hypridle # default idle manager, you can use any idle manager you want,eg swayidle
|
||||
|
||||
# // █░░ ▄▀█ █░█ █▄░█ █▀▀ █░█
|
||||
# // █▄▄ █▀█ █▄█ █░▀█ █▄▄ █▀█
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||
# Override the default startup commands
|
||||
|
||||
# This is used to override the default startup commands
|
||||
# $start.VAR = command
|
||||
|
||||
$start.XDG_PORTAL_RESET=$scrPath/resetxdgportal.sh
|
||||
$start.DBUS_SHARE_PICKER=dbus-update-activation-environment --systemd --all # for XDPH
|
||||
$start.SYSTEMD_SHARE_PICKER=systemctl --user import-environment QT_QPA_PLATFORMTHEME WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
|
||||
$start.BAR=waybar
|
||||
$start.NOTIFICATIONS=swaync # dunst
|
||||
$start.APPTRAY_BLUETOOTH=blueman-applet
|
||||
$start.WALLPAPER=$scrPath/swwwallpaper.sh
|
||||
$start.TEXT_CLIPBOARD=wl-paste --type text --watch cliphist store
|
||||
$start.IMAGE_CLIPBOARD=wl-paste --type image --watch cliphist store
|
||||
$start.BATTERY_NOTIFY=$scrPath/batterynotify.sh
|
||||
$start.NETWORK_MANAGER=nm-applet --indicator
|
||||
$start.REMOVABLE_MEDIA=udiskie --no-automount --smart-tray
|
||||
$start.AUTH_DIALOGUE=$scrPath/polkitkdeauth.sh
|
||||
$start.IDLE_DAEMON=$IDLE
|
||||
|
||||
# // █▀▀ █▄░█ █░█
|
||||
# // ██▄ █░▀█ ▀▄▀
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Environment-variables/
|
||||
# Override the default environment variables
|
||||
|
||||
# This is used to override the default environment variables
|
||||
# $env.VAR = value
|
||||
|
||||
# Toolkit Backend Variables - https://wiki.hyprland.org/Configuring/Environment-variables/#toolkit-backend-variables
|
||||
$env.GDK_BACKEND = wayland,x11,* #s GTK: Use wayland if available. If not: try x11, then any other GDK backend.
|
||||
$env.QT_QPA_PLATFORM = wayland
|
||||
xcb #Qt: Use wayland if available, fall back to x11 if not.
|
||||
$env.SDL_VIDEODRIVER = wayland # Run SDL2 applications on Wayland. Remove or set to x11 if games that provide older versions of SDL cause compatibility issues
|
||||
$env.CLUTTER_BACKEND = wayland # Clutter package already has wayland enabled, this variable will force Clutter applications to try and use the Wayland backend
|
||||
|
||||
# XDG Specifications - https://wiki.hyprland.org/Configuring/Environment-variables/#xdg-specifications
|
||||
$env.XDG_CURRENT_DESKTOP = Hyprland
|
||||
$env.XDG_SESSION_TYPE = wayland
|
||||
$env.XDG_SESSION_DESKTOP = Hyprland
|
||||
|
||||
# Qt Variables - https://wiki.hyprland.org/Configuring/Environment-variables/#qt-variables
|
||||
|
||||
$env.QT_AUTO_SCREEN_SCALE_FACTOR = 1 # (From the Qt documentation) enables automatic scaling, based on the monitor’s pixel density
|
||||
$env.QT_QPA_PLATFORM=wayland
|
||||
xcb # Tell Qt applications to use the Wayland backend, and fall back to x11 if Wayland is unavailable
|
||||
$env.QT_WAYLAND_DISABLE_WINDOWDECORATION = 1 # Disables window decorations on Qt applications
|
||||
$env.QT_QPA_PLATFORMTHEME = qt6ct # Tells Qt based applications to pick your theme from qt5ct, use with Kvantum.
|
||||
|
||||
# HyDE Environment Variables -
|
||||
|
||||
$env.PATH =
|
||||
$env.MOZ_ENABLE_WAYLAND=1 # Enable Wayland for Firefox
|
||||
$env.GDK_SCALE=1 # Set GDK scale to 1 // For Xwayland on HiDPI
|
||||
$env.ELECTRON_OZONE_PLATFORM_HINT=auto # Set Electron Ozone Platform Hint to auto // For Electron apps on Wayland
|
||||
|
||||
# # XDG-DIRS
|
||||
|
||||
$env.XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR
|
||||
$env.XDG_CONFIG_HOME=$HOME/.config
|
||||
$env.XDG_CACHE_HOME=$HOME/.cache
|
||||
$env.XDG_DATA_HOME=$HOME/.local/share
|
||||
|
||||
# These variable will override the default and the theme configuration
|
||||
# Do not uncomment the variables if you want want HyDE do the theme configuration for you
|
||||
|
||||
# // █▀▀ ▀█▀ █▄▀
|
||||
# // █▄█ ░█░ █░█
|
||||
|
||||
$GTK_THEME=Wallbash-Gtk
|
||||
$ICON_THEME=Tela-circle-dracula
|
||||
$COLOR_SCHEME=prefer-dark
|
||||
|
||||
# // █▀▀ █░█ █▀█ █▀ █▀█ █▀█
|
||||
# // █▄▄ █▄█ █▀▄ ▄█ █▄█ █▀▄
|
||||
|
||||
$CURSOR_THEME=Bibata-Modern-Ice
|
||||
$CURSOR_SIZE=30
|
||||
|
||||
# // █▀▀ █▀█ █▄░█ ▀█▀
|
||||
# // █▀░ █▄█ █░▀█ ░█░
|
||||
|
||||
$FONT=Canterell
|
||||
$FONT_SIZE=10
|
||||
$DOCUMENT_FONT=Cantarell
|
||||
$DOCUMENT_FONT_SIZE=10
|
||||
$MONOSPACE_FONT=CaskaydiaCove Nerd Font Mono
|
||||
$MONOSPACE_FONT_SIZE=9
|
||||
$FONT_ANTIALIASING=rgba
|
||||
$FONT_HINTING=full
|
||||
|
||||
# // █░░ █▀█ █▀▀ █▄▀ █▀ █▀▀ █▀█ █▀▀ █▀▀ █▄░█
|
||||
# // █▄▄ █▄█ █▄▄ █░█ ▄█ █▄▄ █▀▄ ██▄ ██▄ █░▀█
|
||||
|
||||
#Setting the Hyprlock layout will override any layout set in the ./hypr/hyprlock.sh
|
||||
# Dynamic Hyprlock layout should be set in the ./hypr/hyprlock.sh file
|
||||
# $LAYOUT_PATH=/path/to/hyprlock/layout.conf
|
||||
# $BACKGROUND_PATH=$HYPRLOCK_BACKGROUND # set the background to the specific hyprlock wallpaper
|
||||
@@ -0,0 +1,577 @@
|
||||
# ░▒▒▒░░░▓▓ ___________
|
||||
# ░░▒▒▒░░░░░▓▓ //___________/
|
||||
# ░░▒▒▒░░░░░▓▓ _ _ _ _ _____
|
||||
# ░░▒▒░░░░░▓▓▓▓▓▓ | | | | | | | __/
|
||||
# ░▒▒░░░░▓▓ ▓▓ | |_| | |_/ /| |___
|
||||
# ░▒▒░░▓▓ ▓▓ \__ |____/ |____/
|
||||
# ░▒▓▓ ▓▓ //____/
|
||||
|
||||
# // █░█ █▄█ █▀▄ █▀▀
|
||||
# // █▀█ ░█░ █▄▀ ██▄
|
||||
|
||||
$scrPath=$HOME/.local/lib/hyde # set scripts path
|
||||
|
||||
# Main modifier
|
||||
$mainMod = SUPER # windows key
|
||||
# assign apps
|
||||
|
||||
$default.$QUICKAPPS =
|
||||
$default.BROWSER = hyde-launch.sh --fall firefox web-browser
|
||||
$default.EDITOR = hyde-launch.sh --fall code-oss text-editor
|
||||
$default.EXPLORER= hyde-launch.sh --fall dolphin file-manager
|
||||
$default.TERMINAL = kitty
|
||||
$default.LOCKSCREEN=hyprlock
|
||||
$default.IDLE=hypridle
|
||||
|
||||
$QUICKAPPS = $default.$QUICKAPPS
|
||||
$BROWSER = $default.BROWSER
|
||||
$EDITOR = $default.EDITOR
|
||||
$EXPLORER= $default.EXPLORER
|
||||
$TERMINAL = $default.TERMINAL
|
||||
$LOCKSCREEN=$default.LOCKSCREEN
|
||||
$IDLE= $default.IDLE
|
||||
|
||||
|
||||
|
||||
# // █░░ ▄▀█ █░█ █▄░█ █▀▀ █░█
|
||||
# // █▄▄ █▀█ █▄█ █░▀█ █▄▄ █▀█
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||
|
||||
$start.XDG_PORTAL_RESET=$scrPath/resetxdgportal.sh
|
||||
$start.DBUS_SHARE_PICKER=dbus-update-activation-environment --systemd --all # for XDPH
|
||||
$start.SYSTEMD_SHARE_PICKER=systemctl --user import-environment QT_QPA_PLATFORMTHEME WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
|
||||
$start.BAR=waybar
|
||||
$start.NOTIFICATIONS=dunst
|
||||
$start.APPTRAY_BLUETOOTH=blueman-applet
|
||||
$start.WALLPAPER=$scrPath/wallpaper.sh --global
|
||||
$start.TEXT_CLIPBOARD=wl-paste --type text --watch cliphist store
|
||||
$start.IMAGE_CLIPBOARD=wl-paste --type image --watch cliphist store
|
||||
$start.BATTERY_NOTIFY=$scrPath/batterynotify.sh
|
||||
$start.NETWORK_MANAGER=nm-applet --indicator
|
||||
$start.REMOVABLE_MEDIA=udiskie --no-automount --smart-tray
|
||||
$start.AUTH_DIALOGUE=$scrPath/polkitkdeauth.sh
|
||||
$start.IDLE_DAEMON=$IDLE
|
||||
|
||||
# // █▀▀ █▄░█ █░█
|
||||
# // ██▄ █░▀█ ▀▄▀
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Environment-variables/
|
||||
|
||||
# Toolkit Backend Variables - https://wiki.hyprland.org/Configuring/Environment-variables/#toolkit-backend-variables
|
||||
$env.GDK_BACKEND = wayland,x11,* # GTK: Use wayland if available. If not: try x11, then any other GDK backend.
|
||||
# $env.QT_QPA_PLATFORM = wayland;xcb # Qt: Use wayland if available, fall back to x11 if not.
|
||||
$env.SDL_VIDEODRIVER = wayland # Run SDL2 applications on Wayland. Remove or set to x11 if games that provide older versions of SDL cause compatibility issues
|
||||
$env.CLUTTER_BACKEND = wayland # Clutter package already has wayland enabled, this variable will force Clutter applications to try and use the Wayland backend
|
||||
|
||||
# XDG Specifications - https://wiki.hyprland.org/Configuring/Environment-variables/#xdg-specifications
|
||||
$env.XDG_CURRENT_DESKTOP = Hyprland
|
||||
$env.XDG_SESSION_TYPE = wayland
|
||||
$env.XDG_SESSION_DESKTOP = Hyprland
|
||||
|
||||
# Qt Variables - https://wiki.hyprland.org/Configuring/Environment-variables/#qt-variables
|
||||
|
||||
$env.QT_AUTO_SCREEN_SCALE_FACTOR = 1 # (From the Qt documentation) enables automatic scaling, based on the monitor’s pixel density
|
||||
$env.QT_QPA_PLATFORM = wayland;xcb # Tell Qt applications to use the Wayland backend, and fall back to x11 if Wayland is unavailable
|
||||
$env.QT_WAYLAND_DISABLE_WINDOWDECORATION = 1 # Disables window decorations on Qt applications
|
||||
$env.QT_QPA_PLATFORMTHEME = qt6ct # Tells Qt based applications to pick your theme from qt5ct, use with Kvantum.
|
||||
|
||||
|
||||
# HyDE Environment Variables -
|
||||
|
||||
$env.PATH =
|
||||
$env.MOZ_ENABLE_WAYLAND=1 # Enable Wayland for Firefox
|
||||
$env.GDK_SCALE=1 # Set GDK scale to 1 // For Xwayland on HiDPI
|
||||
$env.ELECTRON_OZONE_PLATFORM_HINT=auto # Set Electron Ozone Platform Hint to auto // For Electron apps on Wayland
|
||||
|
||||
# XDG-DIRS
|
||||
# $XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/run/user/$(id -u)}
|
||||
# $XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
|
||||
# >> $env.XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}
|
||||
# $XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
|
||||
|
||||
$env.XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR
|
||||
$env.XDG_CONFIG_HOME=$HOME/.config
|
||||
$env.XDG_CACHE_HOME=$HOME/.cache
|
||||
$env.XDG_DATA_HOME=$HOME/.local/share
|
||||
$env.XDG_STATE_HOME=$HOME/.local/state
|
||||
|
||||
|
||||
|
||||
# // █▀▀ ▀█▀ █▄▀
|
||||
# // █▄█ ░█░ █░█
|
||||
|
||||
$default.GTK_THEME=Wallbash-Gtk
|
||||
$default.ICON_THEME=Tela-circle-dracula
|
||||
$default.COLOR_SCHEME=prefer-dark
|
||||
|
||||
$GTK_THEME=$default.GTK_THEME
|
||||
$ICON_THEME=$default.ICON_THEME
|
||||
$COLOR_SCHEME=$default.COLOR_SCHEME
|
||||
|
||||
# // █▀▀ █░█ █▀█ █▀ █▀█ █▀█
|
||||
# // █▄▄ █▄█ █▀▄ ▄█ █▄█ █▀▄
|
||||
|
||||
$default.CURSOR_THEME=Bibata-Modern-Ice
|
||||
$default.CURSOR_SIZE=24
|
||||
|
||||
$CURSOR_THEME=$default.CURSOR_THEME
|
||||
$CURSOR_SIZE=$default.CURSOR_SIZE
|
||||
|
||||
# // █▀▀ █▀█ █▄░█ ▀█▀
|
||||
# // █▀░ █▄█ █░▀█ ░█░
|
||||
|
||||
$default.FONT=Cantarell
|
||||
$default.FONT_SIZE=10
|
||||
$default.DOCUMENT_FONT=Cantarell
|
||||
$default.DOCUMENT_FONT_SIZE=10
|
||||
$default.MONOSPACE_FONT=CaskaydiaCove Nerd Font Mono
|
||||
$default.MONOSPACE_FONT_SIZE=9
|
||||
$default.NOTIFICATION_FONT=Mononoki Nerd Font Mono
|
||||
$default.BAR_FONT=JetBrainsMono Nerd Font
|
||||
# $default.MENU_FONT=This is not yet set as it looks perfect with the global font
|
||||
$default.FONT_ANTIALIASING=rgba
|
||||
$default.FONT_HINTING=full
|
||||
|
||||
$FONT=$default.FONT
|
||||
$FONT_SIZE=$default.FONT_SIZE
|
||||
$DOCUMENT_FONT=$default.DOCUMENT_FONT
|
||||
$DOCUMENT_FONT_SIZE=$default.DOCUMENT_FONT_SIZE
|
||||
$MONOSPACE_FONT=$default.MONOSPACE_FONT
|
||||
$MONOSPACE_FONT_SIZE=$default.MONOSPACE_FONT_SIZE
|
||||
$NOTIFICATION_FONT=$default.NOTIFICATION_FONT
|
||||
$BAR_FONT=$default.BAR_FONT
|
||||
# $MENU_FONT=$default.MENU_FONT
|
||||
$FONT_ANTIALIASING=$default.FONT_ANTIALIASING
|
||||
$FONT_HINTING=$default.FONT_HINTING
|
||||
|
||||
|
||||
|
||||
# // █▀ █▀█ █▀▀ █▀▀ █ ▄▀█ █░░
|
||||
# // ▄█ █▀▀ ██▄ █▄▄ █ █▀█ █▄▄
|
||||
|
||||
decoration {
|
||||
dim_special = 0.3
|
||||
active_opacity = 0.90
|
||||
inactive_opacity = 0.75
|
||||
fullscreen_opacity = 1
|
||||
blur {
|
||||
special = true
|
||||
}
|
||||
}
|
||||
|
||||
# // █▀▄▀█ █▀█ █▄░█ █ ▀█▀ █▀█ █▀█
|
||||
# // █░▀░█ █▄█ █░▀█ █ ░█░ █▄█ █▀▄
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
|
||||
monitor = ,preferred,auto,auto
|
||||
|
||||
# // █ █▄░█ █▀█ █░█ ▀█▀
|
||||
# // █ █░▀█ █▀▀ █▄█ ░█░
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/
|
||||
|
||||
input {
|
||||
kb_layout = us
|
||||
follow_mouse = 1
|
||||
|
||||
touchpad {
|
||||
natural_scroll = no
|
||||
}
|
||||
|
||||
sensitivity = 0
|
||||
force_no_accel = 1
|
||||
numlock_by_default = true
|
||||
}
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/
|
||||
|
||||
# gestures {
|
||||
# workspace_swipe = true
|
||||
# workspace_swipe_fingers = 3
|
||||
# }
|
||||
|
||||
|
||||
# // █░░ ▄▀█ █▄█ █▀█ █░█ ▀█▀ █▀
|
||||
# // █▄▄ █▀█ ░█░ █▄█ █▄█ ░█░ ▄█
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/
|
||||
|
||||
dwindle {
|
||||
# pseudotile = yes
|
||||
preserve_split = yes
|
||||
}
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/
|
||||
|
||||
master {
|
||||
new_status = master
|
||||
}
|
||||
|
||||
|
||||
# // █▀▄▀█ █ █▀ █▀▀
|
||||
# // █░▀░█ █ ▄█ █▄▄
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/
|
||||
|
||||
misc {
|
||||
vrr = 0
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
force_default_wallpaper = 0
|
||||
}
|
||||
|
||||
xwayland {
|
||||
force_zero_scaling = true
|
||||
}
|
||||
|
||||
|
||||
# // ▄▀█ █▄░█ █ █▀▄▀█ ▄▀█ ▀█▀ █ █▀█ █▄░█
|
||||
# // █▀█ █░▀█ █ █░▀░█ █▀█ ░█░ █ █▄█ █░▀█
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Animations/
|
||||
|
||||
animations {
|
||||
enabled = yes
|
||||
bezier = wind, 0.05, 0.9, 0.1, 1.05
|
||||
bezier = winIn, 0.1, 1.1, 0.1, 1.1
|
||||
bezier = winOut, 0.3, -0.3, 0, 1
|
||||
bezier = liner, 1, 1, 1, 1
|
||||
animation = windows, 1, 6, wind, slide
|
||||
animation = windowsIn, 1, 6, winIn, slide
|
||||
animation = windowsOut, 1, 5, winOut, slide
|
||||
animation = windowsMove, 1, 5, wind, slide
|
||||
animation = border, 1, 1, liner
|
||||
animation = borderangle, 1, 30, liner, once
|
||||
animation = fade, 1, 10, default
|
||||
animation = workspaces, 1, 5, wind
|
||||
}
|
||||
|
||||
|
||||
general {
|
||||
snap { # snapping for floating windows
|
||||
enabled = true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# // █▀ █▀█ █░█ █▀█ █▀▀ █▀▀
|
||||
# // ▄█ █▄█ █▄█ █▀▄ █▄▄ ██▄
|
||||
|
||||
# hyprlang noerror true
|
||||
# source = $env.XDG_STATE_HOME/hyde/hyprgui.conf # GUI specific config. Used to not break the low level configs. this will be available downstream
|
||||
source = $env.XDG_CONFIG_HOME/hypr/themes/colors.conf # Hyde wallbash colors
|
||||
|
||||
# Source groupbar in here
|
||||
group:groupbar {
|
||||
col.inactive = rgba($wallbash_pry3ee)
|
||||
col.active = rgba($wallbash_pry1ee)
|
||||
col.locked_active = rgba($wallbash_pry2ee)
|
||||
col.locked_inactive = rgba($wallbash_pry4ee)
|
||||
}
|
||||
|
||||
source = $env.XDG_CONFIG_HOME/hypr/themes/theme.conf # theme specific settings
|
||||
source = $env.XDG_CONFIG_HOME/hypr/themes/wallbash.conf # Theme specific settings after Sanitize and handle fallbacks
|
||||
source = $env.XDG_CONFIG_HOME/hypr/nvidia.conf # Nvidia specific settings
|
||||
source = $env.XDG_CONFIG_HOME/hypr/animations.conf # source animations variables
|
||||
# hyprlang noerror false
|
||||
source = $env.XDG_CONFIG_HOME/hypr/hyde.conf
|
||||
# hyprlang noerror true
|
||||
source = $env.XDG_STATE_HOME/hyde/hyprland.conf # translated from config.tomls
|
||||
source = $ANIMATION_PATH # source animations configuration
|
||||
# hyprlang noerror false
|
||||
|
||||
#! Below this is an immutable part of the configuration file, and should not be modified by the user.
|
||||
|
||||
#? By Hyprland convention env and startup files are sourced at the end of the main configuration file
|
||||
#? To ensure that the user's settings are not overridden by the default settings
|
||||
#? This will let us launch after all envs and variables are set.
|
||||
|
||||
# LEGACY
|
||||
$quickapps = $QUICKAPPS
|
||||
$term = $TERMINAL
|
||||
$editor = $EDITOR
|
||||
$file = $EXPLORER
|
||||
$browser = $BROWSER
|
||||
|
||||
# Group Bar
|
||||
group:groupbar{
|
||||
enabled = true
|
||||
gradients = 1
|
||||
render_titles = 1
|
||||
font_size = 12
|
||||
font_family = $FONT
|
||||
}
|
||||
|
||||
# Misc
|
||||
|
||||
misc {
|
||||
font_family = $FONT
|
||||
|
||||
}
|
||||
|
||||
|
||||
# // █▀▀ █▄░█ █░█
|
||||
# // ██▄ █░▀█ ▀▄▀
|
||||
|
||||
# # See https://wiki.hyprland.org/Configuring/Environment-variables/
|
||||
#! Remove for now
|
||||
# env = GDK_BACKEND,$env.GDK_BACKEND
|
||||
# env = SDL_VIDEODRIVER,$env.SDL_VIDEODRIVER
|
||||
# env = CLUTTER_BACKEND,$env.CLUTTER_BACKEND
|
||||
|
||||
# Qt Variables
|
||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,$env.QT_AUTO_SCREEN_SCALE_FACTOR
|
||||
env = QT_QPA_PLATFORM,$env.QT_QPA_PLATFORM
|
||||
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,$env.QT_WAYLAND_DISABLE_WINDOWDECORATION
|
||||
env = QT_QPA_PLATFORMTHEME,$env.QT_QPA_PLATFORMTHEME
|
||||
|
||||
# Wayland-ENV
|
||||
env = MOZ_ENABLE_WAYLAND,$env.MOZ_ENABLE_WAYLAND
|
||||
env = GDK_SCALE,$env.GDK_SCALE
|
||||
env = ELECTRON_OZONE_PLATFORM_HINT,$env.ELECTRON_OZONE_PLATFORM_HINT
|
||||
|
||||
# XDG Spec
|
||||
env = XDG_CURRENT_DESKTOP,$env.XDG_CURRENT_DESKTOP
|
||||
env = XDG_SESSION_TYPE,$env.XDG_SESSION_TYPE
|
||||
env = XDG_SESSION_DESKTOP,$env.XDG_SESSION_DESKTOP
|
||||
|
||||
|
||||
# HyDE Variables
|
||||
$hyde.PATH=$HOME/.local/bin:$scrPath:$env.PATH:$PATH
|
||||
env = PATH,$hyde.PATH
|
||||
|
||||
# XDG-ENV
|
||||
env = XDG_CONFIG_HOME,$env.XDG_CONFIG_HOME
|
||||
env = XDG_CACHE_HOME,$env.XDG_CACHE_HOME
|
||||
env = XDG_DATA_HOME,$env.XDG_DATA_HOME
|
||||
|
||||
# HyDE-ENV
|
||||
env = HYDE_RUNTIME_DIR,$env.XDG_RUNTIME_DIR/hyde
|
||||
env = HYDE_CONFIG_HOME,$env.XDG_CONFIG_HOME/hyde
|
||||
env = HYDE_CACHE_HOME,$env.XDG_CACHE_HOME/hyde
|
||||
env = HYDE_DATA_HOME,$env.XDG_DATA_HOME/hyde
|
||||
env = HYDE_STATE_HOME,$env.XDG_STATE_HOME/hyde
|
||||
|
||||
# CURSOR ENV
|
||||
# env = HYPRCURSOR_THEME,$CURSOR_THEME
|
||||
# env = HYPRCURSOR_SIZE,$CURSOR_SIZE
|
||||
# env = XCURSOR_THEME,$CURSOR_THEME
|
||||
# env = XCURSOR_SIZE,$CURSOR_SIZE
|
||||
|
||||
# Execute on reload
|
||||
|
||||
# HyDE Preparation
|
||||
$exec.mkdir = mkdir -p $env.XDG_RUNTIME_DIR/hyde $env.XDG_CACHE_HOME/hyde/wallbash $env.XDG_CONFIG_HOME/hyde $env.XDG_DATA_HOME/hyde $(dirname $env.XDG_DATA_HOME)/state/hyde # Create HyDE directories
|
||||
$set.env = printf "\n_SHELL='$SHELL'\nGDK_BACKEND='$env.GDK_BACKEND'\nQT_QPA_PLATFORM='$env.QT_QPA_PLATFORM'\nSDL_VIDEODRIVER='$env.SDL_VIDEODRIVER'\nCLUTTER_BACKEND='$env.CLUTTER_BACKEND'\nXDG_CURRENT_DESKTOP='$env.XDG_CURRENT_DESKTOP'\nXDG_SESSION_TYPE='$env.XDG_SESSION_TYPE'\nXDG_SESSION_DESKTOP='$env.XDG_SESSION_DESKTOP'\nQT_AUTO_SCREEN_SCALE_FACTOR='$env.QT_AUTO_SCREEN_SCALE_FACTOR'\nQT_WAYLAND_DISABLE_WINDOWDECORATION='$env.QT_WAYLAND_DISABLE_WINDOWDECORATION'\nQT_QPA_PLATFORMTHEME='$env.QT_QPA_PLATFORMTHEME'\nHYDE_PATH='$hyde.PATH'\nMOZ_ENABLE_WAYLAND='$env.MOZ_ENABLE_WAYLAND'\nGDK_SCALE='$env.GDK_SCALE'\nELECTRON_OZONE_PLATFORM_HINT='$env.ELECTRON_OZONE_PLATFORM_HINT'\nXDG_RUNTIME_DIR='$env.XDG_RUNTIME_DIR'\nXDG_CONFIG_HOME='$env.XDG_CONFIG_HOME'\nXDG_CACHE_HOME='$env.XDG_CACHE_HOME'\nXDG_DATA_HOME='$env.XDG_DATA_HOME'\n_GTK_THEME='$GTK_THEME'\n_ICON_THEME='$ICON_THEME'\n_COLOR_SCHEME='$COLOR_SCHEME'\n_CURSOR_SIZE='$CURSOR_SIZE'\n_CURSOR_THEME='$CURSOR_THEME'\nFONT='$FONT'\nFONT_SIZE='$FONT_SIZE'\nDOCUMENT_FONT='$DOCUMENT_FONT'\nDOCUMENT_FONT_SIZE='$DOCUMENT_FONT_SIZE'\nMONOSPACE_FONT='$MONOSPACE_FONT'\nMONOSPACE_FONT_SIZE='$MONOSPACE_FONT_SIZE'\nFONT_ANTIALIASING='$FONT_ANTIALIASING'\nFONT_HINTING='$FONT_HINTING'\nHYDE_RUNTIME_DIR='$env.XDG_RUNTIME_DIR/hyde'\nHYDE_CONFIG_HOME='$env.XDG_CONFIG_HOME/hyde'\nHYDE_CACHE_HOME='$env.XDG_CACHE_HOME/hyde'\nHYDE_DATA_HOME='$env.XDG_DATA_HOME/hyde'\nHYDE_STATE_HOME='$(dirname $env.XDG_DATA_HOME)/state/hyde'\nexport TERMINAL='$(which $TERMINAL)'\nexport LOCKSCREEN='$LOCKSCREEN'" > "$env.XDG_RUNTIME_DIR/hyde/environment"
|
||||
|
||||
# Create a dconf file that will be loaded later one time, better than multiple dconf commands and better than gsettings
|
||||
$dconFile=$env.XDG_CACHE_HOME/hyde/dconf
|
||||
$dConf = \n[org/gnome/desktop/interface]\n
|
||||
$dConf = $dConf icon-theme='$ICON_THEME'\n
|
||||
$dConf = $dConf gtk-theme='$GTK_THEME'\n
|
||||
$dConf = $dConf color-scheme='$COLOR_SCHEME'\n
|
||||
$dConf = $dConf cursor-theme='$CURSOR_THEME'\n
|
||||
$dConf = $dConf cursor-size=$CURSOR_SIZE\n
|
||||
$dConf = $dConf font-name='$FONT $FONT_SIZE'\n
|
||||
$dConf = $dConf document-font-name='$DOCUMENT_FONT $DOCUMENT_FONT_SIZE'\n
|
||||
$dConf = $dConf monospace-font-name='$MONOSPACE_FONT $MONOSPACE_FONT_SIZE'\n
|
||||
$dConf = $dConf font-antialiasing='$FONT_ANTIALIASING'\n
|
||||
$dConf = $dConf font-hinting='$FONT_HINTING'\n
|
||||
$dConf = $dConf [org/gnome/desktop/default-applications/terminal]\nexec='$(which $TERMINAL)'
|
||||
$dconf.preserve = dconf dump / > $dconFile
|
||||
$dconf.populate = printf "$dConf" >> $dconFile
|
||||
$dconf.reset = dconf reset -f / < $dconFile
|
||||
$dconf.load = dconf load -f / < $dconFile
|
||||
$set.hyprCursor = hyprctl setcursor $CURSOR_THEME $CURSOR_SIZE
|
||||
$exec.dConf = ( $dconf.preserve && $dconf.populate && $dconf.reset && $dconf.load && $set.hyprCursor )
|
||||
|
||||
$exec.keybinds_hint = $scrPath/keybinds.hint.py --format rofi > $env.XDG_RUNTIME_DIR/hyde/keybinds_hint.rofi
|
||||
|
||||
# Execute
|
||||
exec = $exec.mkdir & $set.env & $exec.dConf & $exec.animation & $exec.keybinds_hint
|
||||
|
||||
# // █░░ ▄▀█ █░█ █▄░█ █▀▀ █░█
|
||||
# // █▄▄ █▀█ █▄█ █░▀█ █▄▄ █▀█
|
||||
|
||||
|
||||
exec-once = $start.XDG_PORTAL_RESET # reset XDPH for screenshare
|
||||
exec-once = $start.DBUS_SHARE_PICKER # for XDPHgl
|
||||
exec-once = $start.SYSTEMD_SHARE_PICKER # for XDPH
|
||||
exec-once = $start.AUTH_DIALOGUE # authentication dialogue for GUI apps
|
||||
exec-once = $start.BAR # launch the system bar
|
||||
exec-once = $start.APPTRAY_BLUETOOTH # systray app for Bluetooth
|
||||
exec-once = $start.REMOVABLE_MEDIA # front-end that allows to manage removable media
|
||||
exec-once = $start.NETWORK_MANAGER # systray app for Network/Wifi
|
||||
exec-once = $start.NOTIFICATIONS # start notification demon
|
||||
exec-once = $start.TEXT_CLIPBOARD # clipboard store text data
|
||||
exec-once = $start.IMAGE_CLIPBOARD # clipboard store image data
|
||||
exec-once = $start.WALLPAPER # start wallpaper daemon
|
||||
exec-once = $start.BATTERY_NOTIFY # battery notification
|
||||
exec-once = $start.IDLE_DAEMON # idle daemon
|
||||
|
||||
# hyde/config.toml is parsed and exported to the environment
|
||||
exec-once = $scrPath/parse.config.py --daemon --input $env.XDG_CONFIG_HOME/hyde/config.toml --env $env.XDG_STATE_HOME/hyde/config --hypr $env.XDG_STATE_HOME/hyde/hyprland.conf
|
||||
|
||||
|
||||
|
||||
#? Rules can be added here as most of the configuration are dynamic
|
||||
|
||||
# // █░█░█ █ █▄░█ █▀▄ █▀█ █░█░█ █▀█ █░█ █░░ █▀▀ █▀
|
||||
# // ▀▄▀▄▀ █ █░▀█ █▄▀ █▄█ ▀▄▀▄▀ █▀▄ █▄█ █▄▄ ██▄ ▄█
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/
|
||||
|
||||
# Ony add the Core applications here
|
||||
windowrule {
|
||||
name = windowrule-1
|
||||
float = on
|
||||
match:class = ^(com.gabm.satty)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-2
|
||||
float = on
|
||||
match:class = ^(org.kde.dolphin)$
|
||||
match:title = ^(Progress Dialog — Dolphin)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-3
|
||||
float = on
|
||||
match:class = ^(org.kde.dolphin)$
|
||||
match:title = ^(Copying — Dolphin)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-4
|
||||
float = on
|
||||
match:title = ^(About Mozilla Firefox)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-5
|
||||
float = on
|
||||
match:class = ^(firefox)$
|
||||
match:title = ^(Picture-in-Picture)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-6
|
||||
float = on
|
||||
match:class = ^(firefox)$
|
||||
match:title = ^(Library)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-7
|
||||
float = on
|
||||
match:class = ^(.*)$
|
||||
match:initial_title = ^(.*)(top)(.*)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-8
|
||||
float = on
|
||||
match:class = ^(.*)$
|
||||
match:initial_title = ^(.*)(btop)(.*)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-9
|
||||
float = on
|
||||
match:class = ^(.*)$
|
||||
match:initial_title = ^(.*)(htop)(.*)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-10
|
||||
float = on
|
||||
match:class = ^(vlc)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-11
|
||||
float = on
|
||||
match:class = ^(kvantummanager)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-12
|
||||
float = on
|
||||
match:class = ^(qt5ct)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-13
|
||||
float = on
|
||||
match:class = ^(qt6ct)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-14
|
||||
float = on
|
||||
match:class = ^(nwg-look)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-15
|
||||
float = on
|
||||
match:class = ^(nwg-displays)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-16
|
||||
float = on
|
||||
match:class = ^(org.kde.ark)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-17
|
||||
float = on
|
||||
match:class = ^(org.pulseaudio.pavucontrol)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-18
|
||||
float = on
|
||||
match:class = ^(blueman-manager)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-19
|
||||
float = on
|
||||
match:class = ^(nm-applet)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-20
|
||||
float = on
|
||||
match:class = ^(nm-connection-editor)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-21
|
||||
float = on
|
||||
match:class = ^(org.kde.polkit-kde-authentication-agent-1)$
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = windowrule-22
|
||||
float = on
|
||||
match:class = ^([Xx]dg-desktop-portal-gtk)$
|
||||
}
|
||||
|
||||
# // █░░ ▄▀█ █▄█ █▀▀ █▀█ █▀█ █░█ █░░ █▀▀ █▀
|
||||
# // █▄▄ █▀█ ░█░ ██▄ █▀▄ █▀▄ █▄█ █▄▄ ██▄ ▄█
|
||||
|
||||
# layerrule = blur,rofi
|
||||
# layerrule = ignorezero,rofi
|
||||
# layerrule = blur,notifications
|
||||
# layerrule = ignorezero,notifications
|
||||
# layerrule = blur,swaync-notification-window
|
||||
# layerrule = ignorezero,swaync-notification-window
|
||||
# layerrule = blur,swaync-control-center
|
||||
# layerrule = ignorezero,swaync-control-center
|
||||
# layerrule = blur,logout_dialog
|
||||
@@ -0,0 +1,12 @@
|
||||
[Icon Theme]
|
||||
Name=dots-icons
|
||||
Comment=Thin overlay over Tela-circle-dracula: monochrome tray/status icons at every size. Tela only ships its flat panel icons at fixed 16/22/24 - on a fractionally scaled monitor waybar requests size*2 (e.g. 44), which falls through to scalable/devices, whose icons are colored circles (the blue nm-applet blob). This theme is searched first and serves the panel SVGs as scalable, so status icons stay flat; everything else inherits Tela unchanged. Pinned via $ICON_THEME in gui/.config/hypr/hyde.conf.
|
||||
Inherits=Tela-circle-dracula
|
||||
Directories=scalable/status
|
||||
|
||||
[scalable/status]
|
||||
Context=Status
|
||||
Size=22
|
||||
MinSize=8
|
||||
MaxSize=512
|
||||
Type=Scalable
|
||||
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#dfdfdf;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m12 16.763v-3.672l2.278 1.836zm0-11.525 2.278 1.836-2.278 1.836v-3.673zm0.593 5.763 3.906-3.148a1.002 1.002 0 0 0 0-1.558l-4.872-3.926a1 1 0 0 0-1.627 0.778v5.762l-3.244-2.614a1.0003 1.0003 0 0 0-1.255 1.558l3.905 3.147-3.905 3.147a1 1 0 0 0 1.255 1.557l3.244-2.614v5.762a1.001 1.001 0 0 0 1 1 0.998 0.998 0 0 0 0.627-0.221l4.872-3.926a1.002 1.002 0 0 0 0-1.557l-3.906-3.148z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 646 B |
@@ -0,0 +1,24 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#dfdfdf;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-ViewBackground {
|
||||
color:#fcfcfc;
|
||||
}
|
||||
.ColorScheme-ButtonFocus {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-PositiveText {
|
||||
color:#27ae60;
|
||||
}
|
||||
.ColorScheme-NeutralText {
|
||||
color:#f67400;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}</style>
|
||||
<path class="ColorScheme-Text" d="m12 16.763v-3.672l2.278 1.836zm0-11.525 2.278 1.836-2.278 1.836v-3.673zm0.593 5.763 3.906-3.148a1.002 1.002 0 0 0 0-1.558l-4.872-3.926a1 1 0 0 0-1.627 0.778v5.762l-3.244-2.614a1.0003 1.0003 0 0 0-1.255 1.558l3.905 3.147-3.905 3.147a1 1 0 0 0 1.255 1.557l3.244-2.614v5.762a1.001 1.001 0 0 0 1 1 0.998 0.998 0 0 0 0.627-0.221l4.872-3.926a1.002 1.002 0 0 0 0-1.557l-3.906-3.148z" fill="currentColor" opacity=".35"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#dfdfdf;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m12 16.763v-3.672l2.278 1.836zm0-11.525 2.278 1.836-2.278 1.836v-3.673zm0.593 5.763 3.906-3.148a1.002 1.002 0 0 0 0-1.558l-4.872-3.926a1 1 0 0 0-1.627 0.778v5.762l-3.244-2.614a1.0003 1.0003 0 0 0-1.255 1.558l3.905 3.147-3.905 3.147a1 1 0 0 0 1.255 1.557l3.244-2.614v5.762a1.001 1.001 0 0 0 1 1 0.998 0.998 0 0 0 0.627-0.221l4.872-3.926a1.002 1.002 0 0 0 0-1.557l-3.906-3.148z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 646 B |
@@ -0,0 +1,24 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#dfdfdf;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-ViewBackground {
|
||||
color:#fcfcfc;
|
||||
}
|
||||
.ColorScheme-ButtonFocus {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-PositiveText {
|
||||
color:#27ae60;
|
||||
}
|
||||
.ColorScheme-NeutralText {
|
||||
color:#f67400;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}</style>
|
||||
<path class="ColorScheme-Text" d="m12 16.763v-3.672l2.278 1.836zm0-11.525 2.278 1.836-2.278 1.836v-3.673zm0.593 5.763 3.906-3.148a1.002 1.002 0 0 0 0-1.558l-4.872-3.926a1 1 0 0 0-1.627 0.778v5.762l-3.244-2.614a1.0003 1.0003 0 0 0-1.255 1.558l3.905 3.147-3.905 3.147a1 1 0 0 0 1.255 1.557l3.244-2.614v5.762a1.001 1.001 0 0 0 1 1 0.998 0.998 0 0 0 0.627-0.221l4.872-3.926a1.002 1.002 0 0 0 0-1.557l-3.906-3.148z" fill="currentColor" opacity=".35"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#dfdfdf;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m12 16.763v-3.672l2.278 1.836zm0-11.525 2.278 1.836-2.278 1.836v-3.673zm0.593 5.763 3.906-3.148a1.002 1.002 0 0 0 0-1.558l-4.872-3.926a1 1 0 0 0-1.627 0.778v5.762l-3.244-2.614a1.0003 1.0003 0 0 0-1.255 1.558l3.905 3.147-3.905 3.147a1 1 0 0 0 1.255 1.557l3.244-2.614v5.762a1.001 1.001 0 0 0 1 1 0.998 0.998 0 0 0 0.627-0.221l4.872-3.926a1.002 1.002 0 0 0 0-1.557l-3.906-3.148z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 646 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 11,3 C 7.6,3 4.78,5.5636364 4,9 l 2,0 c 0.74,-2.5309091 2.43,-4 5,-4 2.57,0 4.26,1.4690909 5,4 l 2,0 C 17.22,5.5636364 14.4,3 11,3 Z m 0,4 C 9.7,7 8.58,7.8044693 8,9 l 6,0 C 13.42,7.8156425 12.3,7 11,7 Z m -7,4 7,8 7,-8 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 535 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-33 -551.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m38 556.36s-1 0-1 1v9c0 1 1 1 1 1h2l1 1h6l1-1h2s1 0.12994 1-1v-9c0-1-1-1-1-1zm1 2h10v7h-2l-1 1h-4l-1-1h-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 465 B |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5 5 C 5 5 4 5 4 6 L 4 15 C 4 16 5 16 5 16 L 7 16 L 8 17 L 12 17 L 12 15 L 9 15 L 8 14 L 6 14 L 6 7 L 16 7 L 16 11 C 16.774415 11 17.470818 11.309484 18 11.800781 L 18 6 C 18 5 17 5 17 5 L 5 5 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 16,12 c -1.108,0 -2,0.91085 -2,2.0312 l 0,0.96875 -1,0 0,4 6,0 0,-4 -1,0 0,-0.96875 C 18,12.9113 17.108,12 16,12 Z m 0,1 c 0.554,0 1,0.4424 1,1 l 0,1 -2,0 0,-1 c 0,-0.5576 0.446,-1 1,-1 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 761 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-33 -575.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m40.5 582.36c-2.4853 0-4.5 2.0147-4.5 4.5s2.0147 4.5 4.5 4.5c1.9047-0.003 3.6014-1.2042 4.2363-3l3.2637-0.004v2h3v-2.0039l1 0.004v-3l-7.2637 0.004c-0.6349-1.7958-2.3316-2.9973-4.2363-3zm0 3c0.82843 0 1.5 0.67157 1.5 1.5s-0.67157 1.5-1.5 1.5-1.5-0.67157-1.5-1.5 0.67157-1.5 1.5-1.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 640 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-33 -551.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m38 556.36s-1 0-1 1v9c0 1 1 1 1 1h2l1 1h6l1-1h2s1 0.12994 1-1v-9c0-1-1-1-1-1zm1 2h10v7h-2l-1 1h-4l-1-1h-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 465 B |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-33 -599.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m37 617.37 14-14v14z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 379 B |
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 247 B |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z" opacity=".35"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".65"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".65"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-57 -551.36)">
|
||||
<path opacity=".3" style="fill:currentColor" class="ColorScheme-Text" d="m62 556.36s-1 0-1 1v9c0 1 1 1 1 1h2l1 1h5v-2h-4l-1-1h-2v-7h10v6h2v-7c0-1-1-1-1-1h-12z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m71 565.36v1c0 0.27614 0.10029 0.53779 0.28125 0.71875l0.78125 0.78125-0.78125 0.78125c-0.18096 0.18096-0.28125 0.44261-0.28125 0.71875v1h1c0.27614 0 0.53779-0.10029 0.71875-0.28125l0.78125-0.78125 0.78125 0.78125c0.18096 0.18096 0.44261 0.28125 0.71875 0.28125h1v-1c0-0.27614-0.10029-0.53779-0.28125-0.71875l-0.78125-0.78125 0.78125-0.78125c0.18096-0.18096 0.28125-0.44261 0.28125-0.71875v-1h-1c-0.27614 0-0.53779 0.10029-0.71875 0.28125l-0.78125 0.78125-0.78125-0.78125c-0.18096-0.18096-0.44261-0.28125-0.71875-0.28125h-1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-153 -575.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m169 587.36c-1.108 0-2 0.91085-2 2.0312v0.96875h-1v4h6v-4h-1v-0.96875c0-1.1199-0.892-2.0312-2-2.0312zm0 1c0.554 0 1 0.4424 1 1v1h-2v-1c0-0.5576 0.446-1 1-1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 516 B |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z" opacity=".35"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m18 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z" opacity=".35"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z" opacity=".35"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m18 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z" opacity=".35"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
<path id="lock-icon" class="ColorScheme-Text" d="m18 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m18 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m18 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".35"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".65"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m17.993 14c-1.108 0-2 0.892-2 2v1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v1h-2v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(-55.001 -104)" fill="currentColor">
|
||||
<path d="m65.994 109c-2.9623 5e-3 -5.8185 1.107-8.0176 3.0918a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.8325-1.6538 4.2113-2.5711 6.6797-2.5762 2.4704 3.8e-4 4.8514 0.91565 6.6875 2.5684a1 1 0 0 0 1.4141-0.0742 1 1 0 0 0-0.07422-1.4141c-2.2029-1.9829-5.0635-3.0797-8.0273-3.0801a1.0001 1.0001 0 0 0-2e-3 0z" opacity=".65"/>
|
||||
<path d="m65.996 113c-1.9749 3e-3 -3.8797 0.73749-5.3457 2.0606a1 1 0 0 0-0.07227 1.4121 1 1 0 0 0 1.4121 0.0723c1.0994-0.99224 2.5271-1.5419 4.0078-1.5449 1.4823 2.3e-4 2.91 0.54932 4.0117 1.541a1 1 0 0 0 1.4121-0.0742 1 1 0 0 0-0.07422-1.4121c-1.4685-1.3219-3.3738-2.0544-5.3496-2.0548a1.0001 1.0001 0 0 0-2e-3 0z"/>
|
||||
<path d="m65.998 117c-0.98726 2e-3 -1.9409 0.36979-2.6738 1.0312a1.0001 1.0001 0 0 0-0.07227 1.4102l2.0039 2.2285a1.0001 1.0001 0 0 0 1.4863-2e-3l2.0059-2.2285a1.0001 1.0001 0 0 0-0.07422-1.4121c-0.73416-0.66077-1.6861-1.0271-2.6738-1.0273a1.0001 1.0001 0 0 0-2e-3 0zm0 2h0.001953c0.12434 1.4e-4 0.21537 0.10816 0.33594 0.13086l-0.33594 0.375-0.33789-0.375c0.12056-0.0229 0.21157-0.13051 0.33594-0.13086z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m19.5 17v1.5c0 1-0 1-1 1-1 0-1-0-1-1l-0-2c-0-1 0-1 1-1h1.5"/>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m13 19.5 2.5 0v-4l-2.5-0m2.5 2h-2.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 538 B |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m19.5 17v1.5c0 1-0 1-1 1-1 0-1-0-1-1l-0-2c-0-1 0-1 1-1h1.5"/>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m15.5 20v-2.5h-2v-2.5m2 2.5v-2.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 535 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m18 19.5-1.5-0c-1-0-1-0-1-1l-0-2c-0-1 0-1 1-1h1.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 395 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m18 19.5-2.5 0v-4l2.5-0m-2.5 2h2.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 380 B |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m16 19.5-2.5 0v-4l2.5-0m-2.5 2h2.5"/>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m17.5 15v3l1 1.5 1-1.5-0-3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 505 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m17 17.5h1.5v1c0 1-0 1-1.5 1s-1.5-0-1.5-1l-0-2c-0-1 0-1 1-1h2.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 409 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m16 17.5h2m0.5-2.5v5m-3-5v5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 373 B |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m19.5 17v1.5c0 1-0 1-1 1-1 0-1-0-1-1l-0-2c-0-1 0-1 1-1h1.5"/>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m15.5 20v-2.5h-2v-2.5m2 2.5v-2.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 535 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="stroke-linejoin:round;stroke:currentColor;fill:none" class="ColorScheme-Text" d="m18.5 15v3.5s0 1-1.5 1-1.5-1-1.5-1l0-3.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 386 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-153 -575.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m169 587.36c-1.108 0-2 0.91085-2 2.0312v0.96875h-1v4h6v-4h-1v-0.96875c0-1.1199-0.892-2.0312-2-2.0312zm0 1c0.554 0 1 0.4424 1 1v1h-2v-1c0-0.5576 0.446-1 1-1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 516 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-153 -575.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m169 587.36c-1.108 0-2 0.91085-2 2.0312v0.96875h-1v4h6v-4h-1v-0.96875c0-1.1199-0.892-2.0312-2-2.0312zm0 1c0.554 0 1 0.4424 1 1v1h-2v-1c0-0.5576 0.446-1 1-1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 516 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-177 -575.36)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m188 579.36c-2.216 0-4 1.8216-4 4.0625v1.9375h-1c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h10c0.554 0 1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-1v-1.9375c0-2.24-1.784-4.0625-4-4.0625zm0 2c1.108 0 2 0.892 2 2v2h-4v-2c0-1.108 0.892-2 2-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 591 B |
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 247 B |