🎉 First commit

This commit is contained in:
Nicolas Rojas 2025-05-29 20:29:02 -05:00
commit cade5ac6b6
Signed by: nicolas
SSH key fingerprint: SHA256:gi4v1tDcXHbV+fkvqqs9b5rkFlo4Q9DHXp90MifkZK0
231 changed files with 48507 additions and 0 deletions

29
.gitignore vendored Normal file
View file

@ -0,0 +1,29 @@
aerc/accounts.conf
Code - OSS
dconf
gh
glib-2.0
go
htop
jupyter
keepassxc
libfm
libreoffice
lxqt
mimeapps.list
mpv
nomacs
nvm
nvim
nwg-look
pavucontrol-qt
pcmanfm-qt
pulse
qpdfview
QtProject.conf
strawberry
user-dirs.dirs
user-dirs.locale
vlc
wpaCute
xsettingsd

12
LICENSE Normal file
View file

@ -0,0 +1,12 @@
Copyright (C) 2024-2025 Nicolas Rojas
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

51
README.md Normal file
View file

@ -0,0 +1,51 @@
# Nirogu-dotfiles
My personal dotfiles for void linux + river + catppuccin macchiato theme.
![ScreenShot1](screenshots/ss1.jpeg)
![ScreenShot2](screenshots/ss2.jpeg)
## Installation
Everything goes in `$HOME/.config`, excepting `zshrc` (which goes in `$HOME/.zshrc`), `gitconfig` (which goes in `$HOME/.gitconfig`) and `gtk-themes` (which goes in `$HOME/.themes`).
Additionally, you should set the environment variables `MOZ_ENABLE_WAYLAND=1` and `QT_QPA_PLATFORMTHEME=qt6ct` by any method you want (for example, writing them in your shell profile files or in `/etc/environment`).
## Software
- **Operating system:** [Void linux](https://voidlinux.org)
- **Window manager:** [River](https://isaacfreund.com/software/river) with the [wideriver layout](https://github.com/alex-courtis/wideriver)
- **Status bar:** [Yambar](https://codeberg.org/dnkl/yambar)
- **Terminal:** [Foot](https://codeberg.org/dnkl/foot)
- **Shell:** [Zsh](https://www.zsh.org) with the [starship](https://starship.rs) prompt
- **Launcher:** [Fuzzel](https://codeberg.org/dnkl/fuzzel)
- **File manager:** [Pcmanfm-qt](https://github.com/lxqt/pcmanfm-qt) or [nnn](https://github.com/jarun/nnn)
- **Notifications:** [Mako](https://github.com/emersion/mako)
- **Text editor:** [Helix](https://helix-editor.com)
- **Web browser:** [Firefox](https://mozilla.org/firefox)
- **Wallpaper helper:** [Wbg](https://codeberg.org/dnkl/wbg)
- **Resource monitor:** [Btop](https://github.com/aristocratos/btop)
- **Logout menu:** [Wlogout](https://github.com/ArtsyMacaw/wlogout)
- **Screen locker:** [Waylock](https://isaacfreund.com/software/waylock)
- **Screenshots:** [Grim](https://sr.ht/~emersion/grim) and [slurp](https://github.com/emersion/slurp)
- **Music player:** [Spotify-player](https://github.com/aome510/spotify-player)
- **Email client:** [Thunderbird](https://www.thunderbird.net) or [aerc](https://aerc-mail.org)
- **Document reader:** [Zathura](https://pwmt.org/projects/zathura)
- **Image viewer:** [Nomacs](https://nomacs.org)
## Keybindings
| Keys | Action |
| --------------------------------------- | ------------------ |
| <kbd>SUPER</kbd> + <kbd>SPACE</kbd> | Applications menu |
| <kbd>SUPER</kbd> + <kbd>ENTER</kbd> | Spawn terminal |
| <kbd>SUPER</kbd> + <kbd>B</kbd> | Spawn browser |
| <kbd>SUPER</kbd> + <kbd>E</kbd> | Spawn file manager |
| <kbd>SUPER</kbd> + <kbd>Q</kbd> | Kill window |
| <kbd>SUPER</kbd> + <kbd>BACKSPACE</kbd> | Logout menu |
More keybindings can be found in the [river configuration file](river/init).
## License
These dotfiles are released under the 0BSD license, which is functionally equivalent to a release into the public domain (anyone can use these dotfiles without any restrictions or warranties).

757
aerc/aerc.conf Normal file
View file

@ -0,0 +1,757 @@
#
# aerc main configuration
[general]
#
# Used as a default path for save operations if no other path is specified.
# ~ is expanded to the current user home dir.
#
#default-save-path=
# If set to "gpg", aerc will use system gpg binary and keystore for all crypto
# operations. If set to "internal", the internal openpgp keyring will be used.
# If set to "auto", the system gpg will be preferred unless the internal
# keyring already exists, in which case the latter will be used.
#
# Default: auto
#pgp-provider=auto
# By default, the file permissions of accounts.conf must be restrictive and
# only allow reading by the file owner (0600). Set this option to true to
# ignore this permission check. Use this with care as it may expose your
# credentials.
#
# Default: false
#unsafe-accounts-conf=false
# Output log messages to specified file. A path starting with ~/ is expanded to
# the user home dir. When redirecting aerc's output to a file using > shell
# redirection, this setting is ignored and log messages are printed to stdout.
#
#log-file=
# Only log messages above the specified level to log-file. Supported levels
# are: trace, debug, info, warn and error. When redirecting aerc's output to
# a file using > shell redirection, this setting is ignored and the log level
# is forced to trace.
#
# Default: info
#log-level=info
# Set the $TERM environment variable used for the embedded terminal.
#
# Default: xterm-256color
#term=xterm-256color
# Display OSC8 strings in the embedded terminal
#
# Default: false
#enable-osc8=false
# Default shell command to use for :menu. This will be executed with sh -c and
# will run in an popover dialog.
#
# Any occurrence of %f will be replaced by a temporary file path where the
# command is expected to write output lines to be consumed by :menu. Otherwise,
# the lines will be read from the command's standard output.
#
# Examples:
# default-menu-cmd=fzf
# default-menu-cmd=fzf --multi
# default-menu-cmd=dmenu -l 20
# default-menu-cmd=ranger --choosefiles=%f
#
#default-menu-cmd=
[ui]
#
# Describes the format for each row in a mailbox view. This is a comma
# separated list of column names with an optional align and width suffix. After
# the column name, one of the '<' (left), ':' (center) or '>' (right) alignment
# characters can be added (by default, left) followed by an optional width
# specifier. The width is either an integer representing a fixed number of
# characters, or a percentage between 1% and 99% representing a fraction of the
# terminal width. It can also be one of the '*' (auto) or '=' (fit) special
# width specifiers. Auto width columns will be equally attributed the remaining
# terminal width. Fit width columns take the width of their contents. If no
# width specifier is set, '*' is used by default.
#
# Default: date<20,name<17,flags>4,subject<*
#index-columns=date<20,name<17,flags>4,subject<*
#
# Each name in index-columns must have a corresponding column-$name setting.
# All column-$name settings accept golang text/template syntax. See
# aerc-templates(7) for available template attributes and functions.
#
# Here are some examples to show the To field instead of the From field for
# an email (modifying column-name):
#
# 1. a generic one
# column-name={{ .Peer | names | join ", " }}
# 2. based upon the selected folder
# column-name={{if match .Folder "^(Gesendet|Sent)$"}}{{index (.To | names) 0}}{{else}}{{index (.From | names) 0}}{{end}}
#
# Default settings
#column-date={{.DateAutoFormat .Date.Local}}
#column-name={{index (.From | names) 0}}
#column-flags={{.Flags | join ""}}
#column-subject={{.ThreadPrefix}}{{if .ThreadFolded}}{{printf "{%d}" .ThreadCount}}{{end}}{{.Subject}}
#
# String separator inserted between columns. When the column width specifier is
# an exact number of characters, the separator is added to it (i.e. the exact
# width will be fully available for the column contents).
#
# Default: " "
#column-separator=" "
#
# See time.Time#Format at https://godoc.org/time#Time.Format
#
# Default: 2006-01-02 03:04 PM (ISO 8601 + 12 hour time)
#timestamp-format=2006-01-02 03:04 PM
#
# Index-only time format for messages that were received/sent today.
# If this is not specified, timestamp-format is used instead.
#
#this-day-time-format=
#
# Index-only time format for messages that were received/sent within the last
# 7 days. If this is not specified, timestamp-format is used instead.
#
#this-week-time-format=
#
# Index-only time format for messages that were received/sent this year.
# If this is not specified, timestamp-format is used instead.
#
#this-year-time-format=
#
# Width of the sidebar, including the border.
#
# Default: 20
sidebar-width=14
#
# Message to display when viewing an empty folder.
#
# Default: (no messages)
#empty-message=(no messages)
# Message to display when no folders exists or are all filtered
#
# Default: (no folders)
#empty-dirlist=(no folders)
#
# Value to set {{.Subject}} template to when subject is empty.
#
# Default: (no subject)
#empty-subject=(no subject)
# Enable mouse events in the ui, e.g. clicking and scrolling with the mousewheel
#
# Default: false
#mouse-enabled=false
#
# Ring the bell when new messages are received
#
# Default: true
#new-message-bell=true
#
# Template to use for Account tab titles
#
# Default: {{.Account}}
#tab-title-account={{.Account}}
# Marker to show before a pinned tab's name.
#
# Default: `
#pinned-tab-marker='`'
# Template for the left side of the directory list.
# See aerc-templates(7) for all available fields and functions.
#
# Default: {{.Folder}}
#dirlist-left={{.Folder}}
# Template for the right side of the directory list.
# See aerc-templates(7) for all available fields and functions.
#
# Default: {{if .Unread}}{{humanReadable .Unread}}/{{end}}{{if .Exists}}{{humanReadable .Exists}}{{end}}
#dirlist-right={{if .Unread}}{{humanReadable .Unread}}/{{end}}{{if .Exists}}{{humanReadable .Exists}}{{end}}
# Delay after which the messages are actually listed when entering a directory.
# This avoids loading messages when skipping over folders and makes the UI more
# responsive. If you do not want that, set it to 0s.
#
# Default: 200ms
#dirlist-delay=200ms
# Display the directory list as a foldable tree that allows to collapse and
# expand the folders.
#
# Default: false
#dirlist-tree=false
# If dirlist-tree is enabled, set level at which folders are collapsed by
# default. Set to 0 to disable.
#
# Default: 0
#dirlist-collapse=0
# List of space-separated criteria to sort the messages by, see *sort*
# command in *aerc*(1) for reference. Prefixing a criterion with "-r "
# reverses that criterion.
#
# Example: "from -r date"
#
#sort=
# Moves to next message when the current message is deleted
#
# Default: true
#next-message-on-delete=true
# Automatically set the "seen" flag when a message is opened in the message
# viewer.
#
# Default: true
#auto-mark-read=true
# The directories where the stylesets are stored. It takes a colon-separated
# list of directories. If this is unset or if a styleset cannot be found, the
# following paths will be used as a fallback in that order:
#
# ${XDG_CONFIG_HOME:-~/.config}/aerc/stylesets
# ${XDG_DATA_HOME:-~/.local/share}/aerc/stylesets
# /usr/local/share/aerc/stylesets
# /usr/share/aerc/stylesets
#
#stylesets-dirs=
# Uncomment to use box-drawing characters for vertical and horizontal borders.
#
# Default: " "
border-char-vertical="│"
border-char-horizontal="─"
# Sets the styleset to use for the aerc ui elements.
#
# Default: default
styleset-name=catppuccin-macchiato
# Activates fuzzy search in commands and their arguments: the typed string is
# searched in the command or option in any position, and need not be
# consecutive characters in the command or option.
#
# Default: false
#fuzzy-complete=false
# How long to wait after the last input before auto-completion is triggered.
#
# Default: 250ms
#completion-delay=250ms
# The minimum required characters to allow auto-completion to be triggered after
# completion-delay.
#
# Setting this to "manual" disables automatic completion, leaving only the
# manually triggered completion with the $complete key (see aerc-binds(5) for
# more details).
#
# Default: 1
#completion-min-chars=1
#
# Global switch for completion popovers
#
# Default: true
#completion-popovers=true
# Uncomment to use UTF-8 symbols to indicate PGP status of messages
#
# Default: ASCII
#icon-unencrypted=
#icon-encrypted=✔
#icon-signed=✔
#icon-signed-encrypted=✔
#icon-unknown=✘
#icon-invalid=⚠
# Reverses the order of the message list. By default, the message list is
# ordered with the newest (highest UID) message on top. Reversing the order
# will put the oldest (lowest UID) message on top. This can be useful in cases
# where the backend does not support sorting.
#
# Default: false
#reverse-msglist-order = false
# Reverse display of the mesage threads. Default order is the the intial
# message is on the top with all the replies being displayed below. The
# reverse option will put the initial message at the bottom with the
# replies on top.
#
# Default: false
#reverse-thread-order=false
# Sort the thread siblings according to the sort criteria for the messages. If
# sort-thread-siblings is false, the thread siblings will be sorted based on
# the message UID in ascending order. This option is only applicable for
# client-side threading with a backend that enables sorting. Note that there's
# a performance impact when sorting is activated.
#
# Default: false
#sort-thread-siblings=false
#[ui:account=foo]
#
# Enable a threaded view of messages. If this is not supported by the backend
# (IMAP server or notmuch), threads will be built by the client.
#
# Default: false
threading-enabled=true
# Force client-side thread building
#
# Default: false
#force-client-threads=false
# Show thread context enables messages which do not match the current query (or
# belong to the current mailbox) to be shown for context. These messages can be
# styled separately using "msglist_thread_context" in a styleset. This feature
# is not supported by all backends
#
# Default: false
#show-thread-context=false
# Debounce client-side thread building
#
# Default: 50ms
#client-threads-delay=50ms
#
# Thread prefix customization:
#
# Customize the thread prefix appearance by selecting the arrow head.
#
# Default: ">"
#thread-prefix-tip = ">"
#
# Customize the thread prefix appearance by selecting the arrow indentation.
#
# Default: " "
#thread-prefix-indent = " "
#
# Customize the thread prefix appearance by selecting the vertical extension of
# the arrow.
#
# Default: "│"
#thread-prefix-stem = "│"
#
# Customize the thread prefix appearance by selecting the horizontal extension
# of the arrow.
#
# Default: ""
#thread-prefix-limb = ""
#
# Customize the thread prefix appearance by selecting the folded thread
# indicator.
#
# Default: ""
#thread-prefix-folded = ""
#
# Customize the thread prefix appearance by selecting the unfolded thread
# indicator.
#
# Default: ""
#thread-prefix-unfolded = ""
#
# Customize the thread prefix appearance by selecting the first child connector.
#
# Default: ""
#thread-prefix-first-child = ""
#
# Customize the thread prefix appearance by selecting the connector used if
# the message has siblings.
#
# Default: "├─"
#thread-prefix-has-siblings = "├─"
#
# Customize the thread prefix appearance by selecting the connector used if the
# message has no parents and no children.
#
# Default: ""
#thread-prefix-lone = ""
#
# Customize the thread prefix appearance by selecting the connector used if the
# message has no parents and has children.
#
# Default: ""
#thread-prefix-orphan = ""
#
# Customize the thread prefix appearance by selecting the connector for the last
# sibling.
#
# Default: "└─"
#thread-prefix-last-sibling = "└─"
#
# Customize the reversed thread prefix appearance by selecting the connector for
# the last sibling.
#
# Default: "┌─"
#thread-prefix-last-sibling-reverse = "┌─"
#
# Customize the reversed thread prefix appearance by selecting the first child
# connector.
#
# Default: ""
#thread-prefix-first-child-reverse = ""
#
# Customize the reversed thread prefix appearance by selecting the connector
# used if the message has no parents and has children.
#
# Default: ""
#thread-prefix-orphan-reverse = ""
[statusline]
#
# Describes the format for the status line. This is a comma separated list of
# column names with an optional align and width suffix. See [ui].index-columns
# for more details. To completely mute the status line except for push
# notifications, explicitly set status-columns to an empty string.
#
# Default: left<*,center:=,right>*
#status-columns=left<*,center:=,right>*
#
# Each name in status-columns must have a corresponding column-$name setting.
# All column-$name settings accept golang text/template syntax. See
# aerc-templates(7) for available template attributes and functions.
#
# Default settings
#column-left=[{{.Account}}] {{.StatusInfo}}
#column-center={{.PendingKeys}}
#column-right={{.TrayInfo}}
#
# String separator inserted between columns.
# See [ui].column-separator for more details.
#
#column-separator=" "
# Specifies the separator between grouped statusline elements.
#
# Default: " | "
#separator=" | "
# Defines the mode for displaying the status elements.
# Options: text, icon
#
# Default: text
#display-mode=text
[viewer]
#
# Specifies the pager to use when displaying emails. Note that some filters
# may add ANSI codes to add color to rendered emails, so you may want to use a
# pager which supports ANSI codes.
#
# Default: less -Rc
pager=less -Rc --wordwrap
#
# If an email offers several versions (multipart), you can configure which
# mimetype to prefer. For example, this can be used to prefer plaintext over
# html emails.
#
# Default: text/plain,text/html
#alternatives=text/plain,text/html
#
# Default setting to determine whether to show full headers or only parsed
# ones in message viewer.
#
# Default: false
#show-headers=false
#
# Layout of headers when viewing a message. To display multiple headers in the
# same row, separate them with a pipe, e.g. "From|To". Rows will be hidden if
# none of their specified headers are present in the message.
#
# Default: From|To,Cc|Bcc,Date,Subject
#header-layout=From|To,Cc|Bcc,Date,Subject
# Whether to always show the mimetype of an email, even when it is just a single part
#
# Default: false
#always-show-mime=false
# Define the maximum height of the mimetype switcher before a scrollbar is used.
# The height of the mimetype switcher is restricted to half of the display
# height. If the provided value for the height is zero, the number of parts will
# be used as the height of the type switcher.
#
# Default: 0
#max-mime-height = 0
# Parses and extracts http links when viewing a message. Links can then be
# accessed with the open-link command.
#
# Default: true
#parse-http-links=true
[compose]
#
# Specifies the command to run the editor with. It will be shown in an embedded
# terminal, though it may also launch a graphical window if the environment
# supports it. Defaults to $EDITOR, or vi.
#editor=
#
# When set, aerc will create and read .eml files for composing that have
# non-standard \n linebreaks. This is only relevant if the used editor does not
# support CRLF linebreaks.
#
#lf-editor=false
#
# Default header fields to display when composing a message. To display
# multiple headers in the same row, separate them with a pipe, e.g. "To|From".
#
# Default: To|From,Subject
#header-layout=To|From,Subject
#
# Edit headers into the text editor instead than separate fields.
#
# When this is true, address-book-cmd is not supported and address completion
# is left to the editor itself. Also, displaying multiple headers on the same
# line is not possible.
#
# Default: false
#edit-headers=false
#
# Specifies the command to be used to tab-complete email addresses. Any
# occurrence of "%s" in the address-book-cmd will be replaced with what the
# user has typed so far.
#
# The command must output the completions to standard output, one completion
# per line. Each line must be tab-delimited, with an email address occurring as
# the first field. Only the email address field is required. The second field,
# if present, will be treated as the contact name. Additional fields are
# ignored.
#
# This parameter can also be set per account in accounts.conf.
#address-book-cmd=
# Specifies the command to be used to select attachments. Any occurrence of
# '%s' in the file-picker-cmd will be replaced with the argument <arg>
# to :attach -m <arg>. Any occurence of '%f' will be replaced by the
# location of a temporary file, from which aerc will read the selected files.
#
# If '%f' is not present, the command must output the selected files to
# standard output, one file per line. If it is present, then aerc does not
# capture the standard output and instead reads the files from the temporary
# file which should have the same format.
#file-picker-cmd=
#
# Allow to address yourself when replying
#
# Default: true
#reply-to-self=true
# Warn before sending an email with an empty subject.
#
# Default: false
#empty-subject-warning=false
#
# Warn before sending an email that matches the specified regexp but does not
# have any attachments. Leave empty to disable this feature.
#
# Uses Go's regexp syntax, documented at https://golang.org/s/re2syntax. The
# "(?im)" flags are set by default (case-insensitive and multi-line).
#
# Example:
# no-attachment-warning=^[^>]*attach(ed|ment)
#
#no-attachment-warning=
#
# When set, aerc will generate "format=flowed" bodies with a content type of
# "text/plain; format=flowed" as described in RFC3676. This format is easier to
# handle for some mailing software, and generally just looks like ordinary
# text. To actually make use of this format's features, you'll need support in
# your editor.
#
format-flowed=true
[multipart-converters]
#
# Converters allow to generate multipart/alternative messages by converting the
# main text/plain part into any other MIME type. Only exact MIME types are
# accepted. The commands are invoked with sh -c and are expected to output
# valid UTF-8 text.
#
# Example (obviously, this requires that you write your main text/plain body
# using the markdown syntax):
#text/html=pandoc -f markdown -t html --standalone
[filters]
#
# Filters allow you to pipe an email body through a shell command to render
# certain emails differently, e.g. highlighting them with ANSI escape codes.
#
# The commands are invoked with sh -c. The following folders are prepended to
# the system $PATH to allow referencing filters from their name only:
#
# ${XDG_CONFIG_HOME:-~/.config}/aerc/filters
# ~/.local/libexec/aerc/filters
# ${XDG_DATA_HOME:-~/.local/share}/aerc/filters
# $PREFIX/libexec/aerc/filters
# $PREFIX/share/aerc/filters
# /usr/libexec/aerc/filters
# /usr/share/aerc/filters
#
# If you want to run a program in your default $PATH which has the same name
# as a builtin filter (e.g. /usr/bin/colorize), use its absolute path.
#
# The following variables are defined in the filter command environment:
#
# AERC_MIME_TYPE the part MIME type/subtype
# AERC_FORMAT the part content type format= parameter
# AERC_FILENAME the attachment filename (if any)
# AERC_SUBJECT the message Subject header value
# AERC_FROM the message From header value
#
# The first filter which matches the email's mimetype will be used, so order
# them from most to least specific.
#
# You can also match on non-mimetypes, by prefixing with the header to match
# against (non-case-sensitive) and a comma, e.g. subject,text will match a
# subject which contains "text". Use header,~regex to match against a regex.
#
text/plain=colorize
text/calendar=calendar
message/delivery-status=colorize
message/rfc822=colorize
text/html=pandoc -f html -t plain | colorize
#text/html=html | colorize
#text/*=bat -fP --file-name="$AERC_FILENAME"
#application/x-sh=bat -fP -l sh
#image/*=catimg -w $(tput cols) -
#subject,~Git(hub|lab)=lolcat -f
#from,thatguywhodoesnothardwraphismessages=wrap -w 100 | colorize
# This special filter is only used to post-process email headers when
# [viewer].show-headers=true
# By default, headers are piped directly into the pager.
#
.headers=colorize
[openers]
#
# Openers allow you to specify the command to use for the :open and :open-link
# actions on a per-MIME-type basis. The :open-link URL scheme is used to
# determine the MIME type as follows: x-scheme-handler/<scheme>.
#
# {} is expanded as the temporary filename or URL to be opened with proper
# shell quoting. If it is not encountered in the command, the filename/URL will
# be appended to the end of the command. The command will then be executed with
# `sh -c`.
#
# Like [filters], openers support basic shell globbing. The first opener which
# matches the part's MIME type (or URL scheme handler MIME type) will be used,
# so order them from most to least specific.
#
# Examples:
# x-scheme-handler/irc=hexchat
# x-scheme-handler/http*=printf '%s' {} | wl-copy
application/x-pdf=zathura
application/pdf=zathura
application/octet-stream=zathura
image/*=imv
image/png=imv
image/jpg=imv
video/*=mpv
audio/*=mpv --no-video
text/html=firefox
text/*=hx
message/rfc822=thunderbird
[hooks]
#
# Hooks are triggered whenever the associated event occurs.
#
# Executed when a new email arrives in the selected folder
#mail-received=notify-send "[$AERC_ACCOUNT/$AERC_FOLDER] New mail from $AERC_FROM_NAME" "$AERC_SUBJECT"
#
# Executed when mail is deleted from a folder
#mail-deleted=mbsync "$AERC_ACCOUNT:$AERC_FOLDER" &
#
# Executed when aerc adds mail to a folder
#mail-added=mbsync "$AERC_ACCOUNT:$AERC_FOLDER" &
#
# Executed when aerc starts
#aerc-startup=aerc :terminal calcurse && aerc :next-tab
#
# Executed when aerc shuts down.
#aerc-shutdown=
[templates]
# Templates are used to populate email bodies automatically.
#
# The directories where the templates are stored. It takes a colon-separated
# list of directories. If this is unset or if a template cannot be found, the
# following paths will be used as a fallback in that order:
#
# ${XDG_CONFIG_HOME:-~/.config}/aerc/templates
# ${XDG_DATA_HOME:-~/.local/share}/aerc/templates
# /usr/local/share/aerc/templates
# /usr/share/aerc/templates
#
#template-dirs=
# The default template to be used for new messages.
#
# default: new_message
#new-message=new_message
# The default template to be used for quoted replies.
#
# default: quoted_reply
#quoted-reply=quoted_reply
# The default template to be used for forward as body.
#
# default: forward_as_body
#forwards=forward_as_body

177
aerc/binds.conf Normal file
View file

@ -0,0 +1,177 @@
# Binds are of the form <key sequence> = <command to run>
# To use '=' in a key sequence, substitute it with "Eq": "<Ctrl+Eq>"
# If you wish to bind #, you can wrap the key sequence in quotes: "#" = quit
<C-p> = :prev-tab<Enter>
<C-PgUp> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<C-PgDn> = :next-tab<Enter>
\[t = :prev-tab<Enter>
\]t = :next-tab<Enter>
<C-t> = :term<Enter>
? = :help keys<Enter>
<C-c> = :prompt 'Quit?' quit<Enter>
<C-q> = :prompt 'Quit?' quit<Enter>
<C-z> = :suspend<Enter>
[messages]
q = :prompt 'Quit?' quit<Enter>
j = :next<Enter>
<Down> = :next<Enter>
<C-d> = :next 50%<Enter>
<C-f> = :next 100%<Enter>
<PgDn> = :next 100%<Enter>
k = :prev<Enter>
<Up> = :prev<Enter>
<C-u> = :prev 50%<Enter>
<C-b> = :prev 100%<Enter>
<PgUp> = :prev 100%<Enter>
g = :select 0<Enter>
G = :select -1<Enter>
J = :next-folder<Enter>
<C-Down> = :next-folder<Enter>
K = :prev-folder<Enter>
<C-Up> = :prev-folder<Enter>
H = :collapse-folder<Enter>
<C-Left> = :collapse-folder<Enter>
L = :expand-folder<Enter>
<C-Right> = :expand-folder<Enter>
v = :mark -t<Enter>
<Space> = :mark -t<Enter>:next<Enter>
V = :mark -v<Enter>
T = :toggle-threads<Enter>
zc = :fold<Enter>
zo = :unfold<Enter>
za = :fold -t<Enter>
zM = :fold -a<Enter>
zR = :unfold -a<Enter>
<tab> = :fold -t<Enter>
<Enter> = :view<Enter>
d = :prompt 'Really delete this message?' 'delete-message'<Enter>
D = :delete<Enter>
a = :archive flat<Enter>
A = :unmark -a<Enter>:mark -T<Enter>:archive flat<Enter>
C = :compose<Enter>
m = :compose<Enter>
rr = :reply -a<Enter>
rq = :reply -aq<Enter>
Rr = :reply<Enter>
Rq = :reply -q<Enter>
c = :cf<space>
$ = :term<space>
! = :term<space>
| = :pipe<space>
/ = :search<space>
\ = :filter<space>
n = :next-result<Enter>
N = :prev-result<Enter>
<Esc> = :clear<Enter>
s = :split<Enter>
S = :vsplit<Enter>
pl = :patch list<Enter>
pa = :patch apply <Tab>
pd = :patch drop <Tab>
pb = :patch rebase<Enter>
pt = :patch term<Enter>
ps = :patch switch <Tab>
[messages:folder=Drafts]
<Enter> = :recall<Enter>
[view]
/ = :toggle-key-passthrough<Enter>/
q = :close<Enter>
O = :open<Enter>
o = :open<Enter>
S = :save<space>
| = :pipe<space>
D = :delete<Enter>
A = :archive flat<Enter>
<C-l> = :open-link <space>
f = :forward<Enter>
rr = :reply -a<Enter>
rq = :reply -aq<Enter>
Rr = :reply<Enter>
Rq = :reply -q<Enter>
H = :toggle-headers<Enter>
<C-k> = :prev-part<Enter>
<C-Up> = :prev-part<Enter>
<C-j> = :next-part<Enter>
<C-Down> = :next-part<Enter>
J = :next<Enter>
<C-Right> = :next<Enter>
K = :prev<Enter>
<C-Left> = :prev<Enter>
[view::passthrough]
$noinherit = true
$ex = <C-x>
<Esc> = :toggle-key-passthrough<Enter>
[compose]
# Keybindings used when the embedded terminal is not selected in the compose
# view
$noinherit = true
$ex = <C-x>
$complete = <C-o>
<C-k> = :prev-field<Enter>
<C-Up> = :prev-field<Enter>
<C-j> = :next-field<Enter>
<C-Down> = :next-field<Enter>
<A-p> = :switch-account -p<Enter>
<C-Left> = :switch-account -p<Enter>
<A-n> = :switch-account -n<Enter>
<C-Right> = :switch-account -n<Enter>
<tab> = :next-field<Enter>
<backtab> = :prev-field<Enter>
<C-p> = :prev-tab<Enter>
<C-PgUp> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<C-PgDn> = :next-tab<Enter>
[compose::editor]
# Keybindings used when the embedded terminal is selected in the compose view
$noinherit = true
$ex = <C-x>
<C-k> = :prev-field<Enter>
<C-Up> = :prev-field<Enter>
<C-j> = :next-field<Enter>
<C-Down> = :next-field<Enter>
<C-p> = :prev-tab<Enter>
<C-PgUp> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<C-PgDn> = :next-tab<Enter>
[compose::review]
# Keybindings used when reviewing a message to be sent
y = :send<Enter>
n = :abort<Enter>
v = :preview<Enter>
p = :postpone<Enter>
q = :choose -o d discard abort -o p postpone postpone<Enter>
e = :edit<Enter>
a = :attach<space>
d = :detach<space>
[terminal]
$noinherit = true
$ex = <C-x>
<C-p> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<C-PgUp> = :prev-tab<Enter>
<C-PgDn> = :next-tab<Enter>

View file

@ -0,0 +1,49 @@
*.default=true
*.normal=true
default.fg=#cad3f5
error.fg=#ed8796
warning.fg=#f5a97f
success.fg=#a6da95
tab.fg=#6e738d
tab.bg=#1e2030
tab.selected.fg=#cad3f5
tab.selected.bg=#24273a
tab.selected.bold=true
border.fg=#181926
border.bold=true
msglist_unread.bold=true
msglist_flagged.fg=#eed49f
msglist_flagged.bold=true
msglist_result.fg=#8aadf4
msglist_result.bold=true
msglist_*.selected.bold=true
msglist_*.selected.bg=#363a4f
dirlist_*.selected.bold=true
dirlist_*.selected.bg=#363a4f
statusline_default.fg=#939ab7
statusline_default.bg=#363a4f
statusline_error.bold=true
statusline_success.bold=true
completion_default.selected.bg=#363a4f
[viewer]
url.fg=#8aadf4
url.underline=true
header.bold=true
signature.dim=true
diff_meta.bold=true
diff_chunk.fg=#8aadf4
diff_chunk_func.fg=#8aadf4
diff_chunk_func.bold=true
diff_add.fg=#a6da95
diff_del.fg=#ed8796
quote_*.fg=#6e738d
quote_1.fg=#939ab7

248
btop/btop.conf Normal file
View file

@ -0,0 +1,248 @@
#? Config file for btop v. 1.4.0
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
color_theme = "/home/nirogu/.config/btop/themes/catppuccin_macchiato.theme"
#* If the theme set background should be shown, set to False if you want terminal background transparency.
theme_background = False
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
truecolor = True
#* Set to true to force tty mode regardless if a real tty has been detected or not.
#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
force_tty = False
#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
#* Use whitespace " " as separator between different presets.
#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists.
#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
vim_keys = True
#* Rounded corners on boxes, is ignored if TTY mode is ON.
rounded_corners = True
#* Default symbols to use for graph creation, "braille", "block" or "tty".
#* "braille" offers the highest resolution but might not be included in all fonts.
#* "block" has half the resolution of braille but uses more common characters.
#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY.
#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view.
graph_symbol = "braille"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_cpu = "default"
# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
graph_symbol_gpu = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_mem = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_net = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_proc = "default"
#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
shown_boxes = "cpu mem net proc"
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
update_ms = 2000
#* 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.
proc_sorting = "threads"
#* Reverse sorting order, True or False.
proc_reversed = False
#* Show processes as a tree.
proc_tree = False
#* Use the cpu graph colors in the process list.
proc_colors = True
#* Use a darkening gradient in the process list.
proc_gradient = True
#* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
proc_per_core = False
#* Show process memory as bytes instead of percent.
proc_mem_bytes = True
#* Show cpu graph for each process.
proc_cpu_graphs = True
#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
proc_info_smaps = False
#* Show proc box on left side of screen instead of right.
proc_left = False
#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
proc_filter_kernel = False
#* In tree-view, always accumulate child process resources in the parent process.
proc_aggregate = False
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.
cpu_graph_upper = "total"
#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.
cpu_graph_lower = "total"
#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
show_gpu_info = "Auto"
#* Toggles if the lower CPU graph should be inverted.
cpu_invert_lower = True
#* Set to True to completely disable the lower CPU graph.
cpu_single_graph = False
#* Show cpu box at bottom of screen instead of top.
cpu_bottom = False
#* Shows the system uptime in the CPU box.
show_uptime = True
#* Show cpu temperature.
check_temp = True
#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
cpu_sensor = "Auto"
#* Show temperatures for cpu cores also if check_temp is True and sensors has been found.
show_coretemp = True
#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.
#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.
#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.
#* Example: "4:0 5:1 6:3"
cpu_core_map = ""
#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
temp_scale = "celsius"
#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
base_10_sizes = False
#* Show CPU frequency.
show_cpu_freq = True
#* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
#* Special formatting: /host = hostname | /user = username | /uptime = system uptime
clock_format = "%X"
#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
background_update = True
#* Custom cpu model name, empty string to disable.
custom_cpu_name = ""
#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user".
disks_filter = ""
#* Show graphs instead of meters for memory values.
mem_graphs = True
#* Show mem box below net box instead of above.
mem_below_net = False
#* Count ZFS ARC in cached and available memory.
zfs_arc_cached = True
#* If swap memory should be shown in memory box.
show_swap = True
#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
swap_disk = True
#* If mem box should be split to also show disks info.
show_disks = True
#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
only_physical = True
#* Read disks list from /etc/fstab. This also disables only_physical.
use_fstab = True
#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
zfs_hide_datasets = False
#* Set to true to show available disk space for privileged users.
disk_free_priv = False
#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
show_io_stat = True
#* Toggles io mode for disks, showing big graphs for disk read/write speeds.
io_mode = False
#* Set to True to show combined read/write io graphs in io mode.
io_graph_combined = False
#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ".
#* Example: "/mnt/media:100 /:20 /boot:1".
io_graph_speeds = ""
#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False.
net_download = 100
net_upload = 100
#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
net_auto = True
#* Sync the auto scaling for download and upload to whichever currently has the highest scale.
net_sync = True
#* Starts with the Network Interface specified here.
net_iface = ""
#* Show battery stats in top right if battery is present.
show_battery = True
#* Which battery to use if multiple are present. "Auto" for auto detection.
selected_battery = "Auto"
#* Show power stats of battery next to charge indicator.
show_battery_watts = True
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING"
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
nvml_measure_pcie_speeds = True
#* Horizontally mirror the GPU graph.
gpu_mirror_graph = True
#* Custom gpu0 model name, empty string to disable.
custom_gpu_name0 = ""
#* Custom gpu1 model name, empty string to disable.
custom_gpu_name1 = ""
#* Custom gpu2 model name, empty string to disable.
custom_gpu_name2 = ""
#* Custom gpu3 model name, empty string to disable.
custom_gpu_name3 = ""
#* Custom gpu4 model name, empty string to disable.
custom_gpu_name4 = ""
#* Custom gpu5 model name, empty string to disable.
custom_gpu_name5 = ""

View file

@ -0,0 +1,83 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#24273a"
# Main text color
theme[main_fg]="#cad3f5"
# Title color for boxes
theme[title]="#cad3f5"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#8aadf4"
# Background color of selected item in processes box
theme[selected_bg]="#494d64"
# Foreground color of selected item in processes box
theme[selected_fg]="#8aadf4"
# Color of inactive/disabled text
theme[inactive_fg]="#8087a2"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#f4dbd6"
# Background color of the percentage meters
theme[meter_bg]="#494d64"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#f4dbd6"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#c6a0f6" #Mauve
theme[mem_box]="#a6da95" #Green
theme[net_box]="#ee99a0" #Maroon
theme[proc_box]="#8aadf4" #Blue
# Box divider line and small boxes line color
theme[div_line]="#6e738d"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#a6da95"
theme[temp_mid]="#eed49f"
theme[temp_end]="#ed8796"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#8bd5ca"
theme[cpu_mid]="#7dc4e4"
theme[cpu_end]="#b7bdf8"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#c6a0f6"
theme[free_mid]="#b7bdf8"
theme[free_end]="#8aadf4"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#7dc4e4"
theme[cached_mid]="#8aadf4"
theme[cached_end]="#b7bdf8"
# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#f5a97f"
theme[available_mid]="#ee99a0"
theme[available_end]="#ed8796"
# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#a6da95"
theme[used_mid]="#8bd5ca"
theme[used_end]="#91d7e3"
# Download graph colors (Peach -> Red)
theme[download_start]="#f5a97f"
theme[download_mid]="#ee99a0"
theme[download_end]="#ed8796"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#a6da95"
theme[upload_mid]="#8bd5ca"
theme[upload_end]="#91d7e3"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#7dc4e4"
theme[process_mid]="#b7bdf8"
theme[process_end]="#c6a0f6"

220
foot/foot.ini Normal file
View file

@ -0,0 +1,220 @@
# -*- conf -*-
# shell=$SHELL (if set, otherwise user's default shell from /etc/passwd)
# term=foot (or xterm-256color if built with -Dterminfo=disabled)
# login-shell=no
app-id=terminal
# title=foot
# locked-title=no
font=JetBrainsMonoNerdFont:size=12
# font-bold=<bold variant of regular font>
# font-italic=<italic variant of regular font>
# font-bold-italic=<bold+italic variant of regular font>
# font-size-adjustment=0.5
# line-height=<font metrics>
# letter-spacing=0
# horizontal-letter-offset=0
# vertical-letter-offset=0
# underline-offset=<font metrics>
# underline-thickness=<font underline thickness>
# box-drawings-uses-font-glyphs=no
# dpi-aware=no
# initial-window-size-pixels=700x500 # Or,
# initial-window-size-chars=<COLSxROWS>
# initial-window-mode=windowed
# pad=0x0 # optionally append 'center'
# resize-by-cells=yes
# resize-delay-ms=100
# bold-text-in-bright=no
# word-delimiters=,│`|:"'()[]{}<>
# selection-target=primary
# workers=<number of logical CPUs>
# utmp-helper=/usr/lib/utempter/utempter # When utmp backend is libutempter (Linux)
# utmp-helper=/usr/libexec/ulog-helper # When utmp backend is ulog (FreeBSD)
[environment]
# name=value
[bell]
system=yes
# urgent=no
# notify=no
# visual=no
# command=
# command-focused=no
[desktop-notifications]
# command=notify-send --wait --app-name ${app-id} --icon ${app-id} --category ${category} --urgency ${urgency} --expire-time ${expire-time} --hint STRING:image-path:${icon} --hint BOOLEAN:suppress-sound:${muted} --hint STRING:sound-name:${sound-name} --replace-id ${replace-id} ${action-argument} --print-id -- ${title} ${body}
# command-action-argument=--action ${action-name}=${action-label}
# close=""
# inhibit-when-focused=yes
[scrollback]
# lines=1000
# multiplier=3.0
# indicator-position=relative
# indicator-format=""
[url]
# launch=xdg-open ${url}
# label-letters=sadfjklewcmpgh
# osc8-underline=url-mode
regex=(([a-z][[:alnum:]-]+:(/{1,3}|[a-z0-9%])|www[:digit:]{0,3}[.])([^[:space:](){}<>]+|\(([^[:space:](){}<>]+|(\([^[:space:](){}<>]+\)))*\)|\[([^]\[[:space:](){}<>]+|(\[[^]\[[:space:](){}<>]+\]))*\])+(\(([^[:space:](){}<>]+|(\([^[:space:](){}<>]+\)))*\)|\[([^]\[[:space:](){}<>]+|(\[[^]\[[:space:](){}<>]+\]))*\]|[^]\[[:space:]`!(){};:'".,<>?«»“”‘’]))
[cursor]
style=beam
unfocused-style=none
# color=<inverse foreground/background>
# blink=no
# blink-rate=500
# beam-thickness=1.5
# underline-thickness=<font underline thickness>
[mouse]
# hide-when-typing=no
# alternate-scroll-mode=yes
[touch]
# long-press-delay=400
[colors]
foreground=cad3f5
background=24273a
regular0=b8c0e0
regular1=ed8796
regular2=a6da95
regular3=eed49f
regular4=8aadf4
regular5=f5bde6
regular6=8bd5ca
regular7=5b6078
bright0=a5adcb
bright1=ed8796
bright2=a6da95
bright3=eed49f
bright4=8aadf4
bright5=f5bde6
bright6=8bd5ca
bright7=494d64
selection-foreground=cad3f5
selection-background=454a5f
search-box-no-match=181926 ed8796
search-box-match=cad3f5 363a4f
jump-labels=181926 f5a97f
urls=8aadf4
alpha=0.85
[csd]
# preferred=server
# size=26
# font=<primary font>
# color=<foreground color>
# hide-when-maximized=no
# double-click-to-maximize=yes
# border-width=0
# border-color=<csd.color>
# button-width=26
# button-color=<background color>
# button-minimize-color=<regular4>
# button-maximize-color=<regular2>
# button-close-color=<regular1>
[key-bindings]
# scrollback-up-page=Shift+Page_Up
# scrollback-up-half-page=none
# scrollback-up-line=none
# scrollback-down-page=Shift+Page_Down
# scrollback-down-half-page=none
# scrollback-down-line=none
# scrollback-home=none
# scrollback-end=none
# clipboard-copy=Control+Shift+c XF86Copy
# clipboard-paste=Control+Shift+v XF86Paste
# primary-paste=Shift+Insert
# search-start=Control+Shift+r
# font-increase=Control+plus Control+equal Control+KP_Add
# font-decrease=Control+minus Control+KP_Subtract
# font-reset=Control+0 Control+KP_0
# spawn-terminal=Control+Shift+n
# minimize=none
# maximize=none
# fullscreen=none
# pipe-visible=[sh -c "xurls | fuzzel | xargs -r firefox"] none
# pipe-scrollback=[sh -c "xurls | fuzzel | xargs -r firefox"] none
# pipe-selected=[xargs -r firefox] none
# pipe-command-output=[wl-copy] none # Copy last command's output to the clipboard
# show-urls-launch=Control+Shift+o
# show-urls-copy=none
# show-urls-persistent=none
# prompt-prev=Control+Shift+z
# prompt-next=Control+Shift+x
# unicode-input=Control+Shift+u
# noop=none
[search-bindings]
# cancel=Control+g Control+c Escape
# commit=Return
# find-prev=Control+r
# find-next=Control+s
# cursor-left=Left Control+b
# cursor-left-word=Control+Left Mod1+b
# cursor-right=Right Control+f
# cursor-right-word=Control+Right Mod1+f
# cursor-home=Home Control+a
# cursor-end=End Control+e
# delete-prev=BackSpace
# delete-prev-word=Mod1+BackSpace Control+BackSpace
# delete-next=Delete
# delete-next-word=Mod1+d Control+Delete
# extend-char=Shift+Right
# extend-to-word-boundary=Control+w Control+Shift+Right
# extend-to-next-whitespace=Control+Shift+w
# extend-line-down=Shift+Down
# extend-backward-char=Shift+Left
# extend-backward-to-word-boundary=Control+Shift+Left
# extend-backward-to-next-whitespace=none
# extend-line-up=Shift+Up
# clipboard-paste=Control+v Control+Shift+v Control+y XF86Paste
# primary-paste=Shift+Insert
# unicode-input=none
# quit=none
# scrollback-up-page=Shift+Page_Up
# scrollback-up-half-page=none
# scrollback-up-line=none
# scrollback-down-page=Shift+Page_Down
# scrollback-down-half-page=none
# scrollback-down-line=none
# scrollback-home=none
# scrollback-end=none
[url-bindings]
# cancel=Control+g Control+c Control+d Escape
# toggle-url-visible=t
[text-bindings]
# \x03=Mod4+c # Map Super+c -> Ctrl+c
[mouse-bindings]
# scrollback-up-mouse=BTN_BACK
# scrollback-down-mouse=BTN_FORWARD
# selection-override-modifiers=Shift
# primary-paste=BTN_MIDDLE
# select-begin=BTN_LEFT
# select-begin-block=Control+BTN_LEFT
# select-extend=BTN_RIGHT
# select-extend-character-wise=Control+BTN_RIGHT
# select-word=BTN_LEFT-2
# select-word-whitespace=Control+BTN_LEFT-2
# select-quote = BTN_LEFT-3
# select-row=BTN_LEFT-4
# vim: ft=dosini

29
fuzzel/cliphist.ini Normal file
View file

@ -0,0 +1,29 @@
font=JetBrainsMonoNerdFont:size=16
prompt=" "
icon-theme=Papirus
terminal=footclient
anchor=center
lines=15
width=40
tabs=3
horizontal-pad=20
vertical-pad=10
inner-pad=10
layer = overlay
[colors]
background=24273add
text=cad3f5ff
prompt=b8c0e0ff
placeholder=8087a2ff
input=cad3f5ff
match=a6da95ff
selection=5b6078ff
selection-text=cad3f5ff
selection-match=a6da95ff
counter=8087a2ff
border=a6da95ff
[border]
width=3

99
fuzzel/fuzzel.ini Normal file
View file

@ -0,0 +1,99 @@
# output=<not set>
font=JetBrainsMonoNerdFont:size=16
# dpi-aware=auto
prompt=" "
icon-theme=Papirus
# icons-enabled=yes
# fields=filename,name,generic
# password-character=*
# filter-desktop=no
# fuzzy=yes
# show-actions=no
terminal=footclient
# launch-prefix=<not set>
# list-executables-in-path=no
anchor=center
lines=9
width=22
tabs=3
horizontal-pad=20
vertical-pad=10
inner-pad=10
# image-size-ratio=0.5
# line-height=<use font metrics>
# letter-spacing=0
layer = overlay
# exit-on-keyboard-focus-loss = yes
[colors]
background=24273add
text=cad3f5ff
prompt=b8c0e0ff
placeholder=8087a2ff
input=cad3f5ff
match=a6da95ff
selection=5b6078ff
selection-text=cad3f5ff
selection-match=a6da95ff
counter=8087a2ff
border=a6da95ff
[border]
width=3
# radius=10
[dmenu]
# mode=text # text|index
# exit-immediately-if-empty=no
[key-bindings]
# cancel=Escape Control+g
# execute=Return KP_Enter Control+y
# execute-or-next=Tab
# execute-input=Shift+Return Shift+KP_Enter
# cursor-left=Left Control+b
# cursor-left-word=Control+Left Mod1+b
# cursor-right=Right Control+f
# cursor-right-word=Control+Right Mod1+f
# cursor-home=Home Control+a
# cursor-end=End Control+e
# delete-prev=BackSpace
# delete-prev-word=Mod1+BackSpace Control+BackSpace
# delete-line-backward=Control+u
# delete-next=Delete KP_Delete Control+d
# delete-next-word=Mod1+d Control+Delete Control+KP_Delete
# delete-line-forward=Control+k
# prev=Up Control+p
# prev-with-wrap=ISO_Left_Tab
# prev-page=Page_Up KP_Page_Up
# next=Down Control+n
# next-with-wrap=none
# next-page=Page_Down KP_Page_Down
# custom-N: *dmenu mode only*. Like execute, but with a non-zero
# exit-code; custom-1 exits with code 10, custom-2 with 11, custom-3
# with 12, and so on.
# custom-1=Mod1+1
# custom-2=Mod1+2
# custom-3=Mod1+3
# custom-4=Mod1+4
# custom-5=Mod1+5
# custom-6=Mod1+6
# custom-7=Mod1+7
# custom-8=Mod1+8
# custom-9=Mod1+9
# custom-10=Mod1+0
# custom-11=Mod1+exclam
# custom-12=Mod1+at
# custom-13=Mod1+numbersign
# custom-14=Mod1+dollar
# custom-15=Mod1+percent
# custom-16=Mod1+dead_circumflex
# custom-17=Mod1+ampersand
# custom-18=Mod1+asterix
# custom-19=Mod1+parentleft

12
gitconfig Normal file
View file

@ -0,0 +1,12 @@
[pull]
rebase = true
[gpg]
format = ssh
[commit]
gpgSign = true
[init]
defaultBranch = main
[push]
followTags = true
[format]
signOff = yes

13
gtk-3.0/gtk.css Normal file
View file

@ -0,0 +1,13 @@
/* No (default) title bar on wayland */
headerbar.default-decoration {
/* You may need to tweak these values depending on your GTK theme */
margin-bottom: 50px;
margin-top: -100px;
}
/* rm -rf window shadows */
window.csd, /* gtk4? */
window.csd decoration {
/* gtk3 */
box-shadow: none;
}

17
gtk-3.0/settings.ini Normal file
View file

@ -0,0 +1,17 @@
[Settings]
gtk-theme-name=catppuccin-macchiato
gtk-icon-theme-name=Papirus-Dark
gtk-font-name=Inter 11
gtk-cursor-theme-name=catppuccin-macchiato-green-cursors
gtk-cursor-theme-size=24
gtk-toolbar-style=GTK_TOOLBAR_ICONS
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=0
gtk-menu-images=0
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=0
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle=hintslight
gtk-xft-rgba=rgb
gtk-application-prefer-dark-theme=1

View file

@ -0,0 +1,6 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#a6da95" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 797 B

View file

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace-hover.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-81.038405"
inkscape:cy="108.58132"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-28.526103"
inkscape:cy="75.41215"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-left.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="29.5"
inkscape:cx="13.680381"
inkscape:cy="6.1418434"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M10 3v10L5 8z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-right.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="14.75"
inkscape:cx="8"
inkscape:cy="8"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M6 3v10l5-5z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 966 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 966 B

View file

@ -0,0 +1,10 @@
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter839" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter839)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#d8354a" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,10 @@
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter839" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter839)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#ff7a80" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,10 @@
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter879" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter879)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#f75a61" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#a6da95" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 275 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 275 B

View file

@ -0,0 +1,10 @@
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter1830" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.81"/>
</filter>
</defs>
<rect width="46" height="24" rx="12" ry="12" fill="#ffffff" opacity=".45"/>
<circle cx="12" cy="13" r="9" fill="#000000" filter="url(#filter1830)" opacity=".1"/>
<circle cx="12" cy="12.09" r="9" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 481 B

View file

@ -0,0 +1,10 @@
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter898" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.81"/>
</filter>
</defs>
<rect width="46" height="24" rx="12" ry="12" fill="#a6da95" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="13" r="9" fill="#000000" filter="url(#filter898)" opacity=".15" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="12" r="9" fill="#ffffff" stroke-width="0" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 634 B

View file

@ -0,0 +1,10 @@
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter898" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.81"/>
</filter>
</defs>
<rect width="46" height="24" rx="12" ry="12" fill="#a6da95" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="13" r="9" fill="#000000" filter="url(#filter898)" opacity=".15" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="12" r="9" fill="#ffffff" stroke-width="0" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 634 B

View file

@ -0,0 +1,6 @@
<svg width="400" height="120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -932.36)">
<rect x="10" y="942.36" width="380" height="160" rx="18" ry="18" fill="#4d4d4d" stroke-width="0"/>
<path class="ColorScheme-Text" d="m200 964.36c-4.4183 0-8 3.5817-8 8h-16v4h48v-4h-16c0-4.4183-3.5817-8-8-8zm0 4c2.2091 1e-5 4 1.7909 4 4h-8c1e-5 -2.2091 1.7909-4 4-4zm-20 12v32c0 4.4321 3.5679 8.0001 8 8.0001h24c4.4321 0 8-3.568 8-8.0001v-32h-38zm4 4h32v28c0 2.2161-1.7839 4.0001-4 4.0001h-24c-2.2161 0-4-1.784-4-4.0001z" fill="#ececec"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 573 B

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m10 3v10l-5-5z"/>
</svg>

After

Width:  |  Height:  |  Size: 149 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m6 3v10l5-5z"/>
</svg>

After

Width:  |  Height:  |  Size: 147 B

View file

@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
id="svg10621"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="calendar-today.svg">
<defs
id="defs10623">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient99561-1"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<linearGradient
inkscape:collect="always"
id="linearGradient34508-1-3">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop34510-1-9" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop34512-4-5" />
</linearGradient>
<radialGradient
r="42"
fy="30"
fx="51"
cy="30"
cx="51"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
gradientUnits="userSpaceOnUse"
id="radialGradient10592"
xlink:href="#linearGradient34508-1-3"
inkscape:collect="always" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient3770"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient3001"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient3007"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient3067"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient3072"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient34508-1-3"
id="radialGradient2997"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.72146227,0,0,0.27484277,14.205424,21.754717)"
cx="51"
cy="30"
fx="51"
fy="30"
r="42" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-23.537329"
inkscape:cy="-31.442864"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2133"
inkscape:window-height="1241"
inkscape:window-x="238"
inkscape:window-y="88"
inkscape:window-maximized="0"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid3109"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata10626">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-469.08263,-537.99307)">
<circle
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:0.23756906;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path7305"
cx="481.57138"
cy="559.4649"
r="1.5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 966 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".25"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".2"/>
</svg>

After

Width:  |  Height:  |  Size: 167 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a6da95"/>
</svg>

After

Width:  |  Height:  |  Size: 966 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF">
<circle cx="12" cy="12" r="12" opacity="0.3"/>
<circle cx="12" cy="12" r="4"/>
</svg>

After

Width:  |  Height:  |  Size: 189 B

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1600"
height="900"
viewBox="0 0 1600 900"
version="1.1"
id="svg13"
sodipodi:docname="noise-texture.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<metadata
id="metadata17">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="698"
id="namedview15"
showgrid="false"
inkscape:zoom="0.26222222"
inkscape:cx="647.80786"
inkscape:cy="422.79535"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<defs
id="defs9">
<radialGradient
id="a"
gradientTransform="matrix(1 1 -1 1 0.5 -0.5)">
<stop
stop-color="#455A64"
stop-opacity="0"
offset="0.25"
id="stop2"
style="stop-color:#444444;stop-opacity:0" />
<stop
stop-color="#455A64"
stop-opacity="0.5"
offset="0.75"
id="stop4"
style="stop-color:#444444;stop-opacity:0.50196081" />
<stop
stop-color="#455A64"
stop-opacity="1"
offset="1"
id="stop6"
style="stop-color:#444444;stop-opacity:1" />
</radialGradient>
</defs>
<rect
width="1600"
height="900"
fill="url(#a)"
id="rect11" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,72 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32">
<defs>
<g id="g" fill="#FFFFFF" opacity="0.7">
<circle cx="8" cy="8" r="8" fill="none"/>
<path d="m8 1a7 7 0 0 0 -7 7 7 7 0 0 0 7 7 7 7 0 0 0 7 -7h-3a4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4v-3z"/>
</g>
</defs>
<use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/>
<use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/>
<use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/>
<use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/>
<use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/>
<use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/>
<use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/>
<use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/>
<use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/>
<use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/>
<use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/>
<use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/>
<use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/>
<use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/>
<use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/>
<use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/>
<use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/>
<use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/>
<use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/>
<use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/>
<use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/>
<use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/>
<use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/>
<use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/>
<use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/>
<use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/>
<use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/>
<use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/>
<use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/>
<use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/>
<use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/>
<use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/>
<use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/>
<use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/>
<use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/>
<use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/>
<use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/>
<use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/>
<use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/>
<use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/>
<use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/>
<use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/>
<use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/>
<use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/>
<use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/>
<use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/>
<use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/>
<use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/>
<use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/>
<use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/>
<use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/>
<use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/>
<use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/>
<use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/>
<use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/>
<use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/>
<use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/>
<use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/>
<use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/>
<use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/>
<use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/>
<use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/>
<use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/>
<use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="46"
height="24"
version="1.1"
id="svg1878"
sodipodi:docname="toggle-off.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs1882">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1830"
x="-0.108"
y="-0.108"
width="1.216"
height="1.216">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.81"
id="feGaussianBlur1832" />
</filter>
</defs>
<sodipodi:namedview
id="namedview1880"
pagecolor="#4d4d4d"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#6b6b6b"
showgrid="false"
inkscape:zoom="4.17193"
inkscape:cx="-13.662741"
inkscape:cy="-9.2283427"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg1878" />
<rect
x="0"
y="0"
width="46"
height="24"
rx="12"
ry="12"
id="rect2"
style="opacity:0.45;fill:#ffffff" />
<circle
cx="12"
cy="13"
r="9"
id="circle1465"
style="opacity:0.1;fill:#000000;filter:url(#filter1830)" />
<circle
cx="12"
cy="12.089559"
r="9"
id="circle4"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,10 @@
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter898" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.81"/>
</filter>
</defs>
<rect width="46" height="24" rx="12" ry="12" fill="#a6da95"/>
<circle cx="34" cy="13" r="9" fill="#000000" filter="url(#filter898)" opacity=".15" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="12" r="9" fill="#ffffff" stroke-width="0" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 577 B

View file

@ -0,0 +1,10 @@
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter898" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.81"/>
</filter>
</defs>
<rect width="46" height="24" rx="12" ry="12" fill="#a6da95"/>
<circle cx="34" cy="13" r="9" fill="#000000" filter="url(#filter898)" opacity=".15" stroke-width="0" style="paint-order:stroke fill markers"/>
<circle cx="34" cy="12" r="9" fill="#ffffff" stroke-width="0" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 577 B

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,30 @@
.Leader {
stroke-width: .5 !important;
stroke: #535353;
fill: none !important;
}
.Button {
stroke-width: .25;
stroke: #ededed;
fill: #ededed;
}
.Ring {
stroke-width: .5 !important;
stroke: #535353 !important;
fill: none !important;
}
.Label {
stroke: none !important;
stroke-width: .1 !important;
font-size: .1 !important;
fill: transparent !important;
}
.TouchStrip, .TouchRing {
stroke-width: .1 !important;
stroke: #ededed !important;
fill: #535353 !important;
}

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="20"
height="20"
version="1.1"
viewBox="0 0 20 20"
id="svg4"
sodipodi:docname="checkbox-checked-symbolic.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:snap-global="false"
inkscape:zoom="14.916666"
inkscape:cx="7.9776538"
inkscape:cy="5.1620113"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 16.091797,6.5468751 c 0.127806,-3.5e-6 0.255581,0.04855 0.353515,0.1464844 0.195869,0.1958684 0.195869,0.5111627 0,0.7070308 L 9.3730471,14.472656 c -0.02449,0.02449 -0.05035,0.04611 -0.07815,0.06443 -0.02772,0.01839 -0.05585,0.03268 -0.08593,0.04492 -0.03009,0.01224 -0.06226,0.02122 -0.09376,0.02734 -0.03149,0.0061 -0.06375,0.0098 -0.09571,0.0098 -0.03195,0 -0.06226,-0.0036 -0.09375,-0.0098 -0.03149,-0.0061 -0.06367,-0.0151 -0.09375,-0.02734 -0.03009,-0.01224 -0.05818,-0.02656 -0.08593,-0.04492 -0.01389,-0.0092 -0.02786,-0.02051 -0.04101,-0.03125 -0.01312,-0.01071 -0.02679,-0.02099 -0.03903,-0.03323 l -4.18665,-4.188623 c -0.1958683,-0.195869 -0.1958687,-0.511162 5e-7,-0.707032 0.1958681,-0.195867 0.5111624,-0.195868 0.7070307,1e-6 l 3.8331198,3.835099 6.7187499,-6.7187499 c 0.09793,-0.097934 0.225707,-0.1464831 0.353516,-0.146484 z"
sodipodi:nodetypes="cscscscscsccccsccccc" />
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="40"
height="40"
version="1.1"
viewBox="0 0 40 40"
id="svg4"
sodipodi:docname="checkbox-checked-symbolic@2.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:snap-global="false"
inkscape:zoom="7.458333"
inkscape:cx="-8.9832406"
inkscape:cy="11.061453"
inkscape:window-width="1920"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 32.183594,13.09375 c 0.255612,-7e-6 0.511162,0.0971 0.70703,0.292969 0.391738,0.391737 0.391738,1.022325 0,1.414062 l -14.14453,14.144531 c -0.04898,0.04898 -0.1007,0.09222 -0.1563,0.12886 -0.05544,0.03678 -0.1117,0.06536 -0.17186,0.08984 -0.06018,0.02448 -0.12452,0.04244 -0.18752,0.05468 -0.06298,0.0122 -0.1275,0.0196 -0.19142,0.0196 -0.0639,0 -0.12452,-0.0072 -0.1875,-0.0196 -0.06298,-0.0122 -0.12734,-0.0302 -0.1875,-0.05468 -0.06018,-0.02448 -0.11636,-0.05312 -0.17186,-0.08984 -0.02778,-0.0184 -0.05572,-0.04102 -0.08202,-0.0625 -0.02624,-0.02142 -0.05358,-0.04198 -0.07806,-0.06646 L 8.9587542,20.567966 c -0.3917366,-0.391738 -0.3917374,-1.022324 1e-6,-1.414064 0.3917362,-0.391734 1.0223248,-0.391736 1.4140618,2e-6 l 7.666239,7.670198 13.4375,-13.4375 c 0.19586,-0.195868 0.451414,-0.292966 0.707032,-0.292968 z"
sodipodi:nodetypes="cscscscscsccccsccccc"
style="stroke-width:2" />
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="20"
height="20"
version="1.1"
viewBox="0 0 20 20"
id="svg4"
sodipodi:docname="checkbox-mixed-symbolic.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="10.547676"
inkscape:cx="0.094807614"
inkscape:cy="19.340753"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
width="20px">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 5.5,10 h 9 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 h -9 C 5.223,11 5,10.777 5,10.5 5,10.223 5.223,10 5.5,10 Z"
sodipodi:nodetypes="sssssss" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="40"
height="40"
version="1.1"
viewBox="0 0 40 40"
id="svg4"
sodipodi:docname="checkbox-mixed-symbolic@2.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="10.547676"
inkscape:cx="0"
inkscape:cy="19.29335"
inkscape:window-width="1920"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
width="20px">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 11,20 h 18 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 11 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sssssss"
style="stroke-width:2" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
sodipodi:docname="close.svg"
id="svg824"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5" />
<sodipodi:namedview
id="namedview6"
pagecolor="#424242"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="11.5625"
inkscape:cx="7.3513514"
inkscape:cy="13.837838"
inkscape:window-width="1440"
inkscape:window-height="742"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg824" />
<path
d="m 4.464745,3.96488 c -0.12775,0 -0.2555,0.0486 -0.35339,0.14649 -0.19578,0.19586 -0.19578,0.51116 0,0.70703 L 7.292955,8 l -3.1816,3.1816 c -0.19578,0.19586 -0.19578,0.51116 0,0.70703 0.19578,0.19586 0.51118,0.19586 0.70704,0 l 3.18161,-3.1816 3.1816,3.1816 c 0.19578,0.19586 0.51114,0.19586 0.70704,0 0.19578,-0.19586 0.19578,-0.51116 0,-0.70703 L 8.707045,8 l 3.1816,-3.1816 c 0.19578,-0.19586 0.19578,-0.51116 0,-0.70703 -0.19578,-0.19586 -0.51117,-0.19586 -0.70704,0 l -3.1816,3.1816 -3.18161,-3.1816 C 4.720495,4.01347 4.592755,3.96488 4.465005,3.96488 Z"
id="path2928"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="m8.9295 7.9298c-0.2555 0-0.511 0.0972-0.70678 0.29298-0.39156 0.39172-0.39156 1.0223 0 1.4141l6.3632 6.3632-6.3632 6.3632c-0.39156 0.39172-0.39156 1.0223 0 1.4141 0.39156 0.39172 1.0224 0.39172 1.4141 0l6.3632-6.3632 6.3632 6.3632c0.39156 0.39172 1.0223 0.39172 1.4141 0 0.39156-0.39172 0.39156-1.0223 0-1.4141l-6.3632-6.3632 6.3632-6.3632c0.39156-0.39172 0.39156-1.0223 0-1.4141-0.39156-0.39172-1.0223-0.39172-1.4141 0l-6.3632 6.3632-6.3632-6.3632c-0.1958-0.1958-0.45128-0.29298-0.70678-0.29298z" fill="#ffffff" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 647 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<path d="M0 0h12A12 12 0 1 1 0 12z"/>
</svg>

After

Width:  |  Height:  |  Size: 111 B

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
sodipodi:docname="maximize.svg"
id="svg825"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5" />
<sodipodi:namedview
id="namedview6"
pagecolor="#424242"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="23.125"
inkscape:cx="11.243243"
inkscape:cy="11.978378"
inkscape:window-width="1440"
inkscape:window-height="742"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg825" />
<path
d="M 6,4 C 4.892,4 4,4.892 4,6 v 4 c 0,1.108 0.89201,2 2,2 h 4 c 1.10801,0 2,-0.892 2,-2 V 6 C 12,4.892 11.10799,4 10,4 Z m 0,1 h 4 c 0.554,0 1,0.44602 1,1 v 4 c 0,0.55398 -0.44602,1 -1,1 H 6 C 5.44603,11 5.00001,10.55398 5.00001,10 V 6 C 5.00001,5.44602 5.44604,5 6,5 Z"
id="path2930"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,3 @@
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="m12 8c-2.216 0-4 1.784-4 4v8c0 2.216 1.784 4 4 4h8c2.216 0 4-1.784 4-4v-8c0-2.216-1.784-4-4-4zm0 2h8c1.108 0 2 0.89204 2 2v8c0 1.108-0.89204 2-2 2h-8c-1.1079 0-2-0.89204-2-2v-8c0-1.108 0.89206-2 2-2z" fill="#ffffff" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 350 B

View file

@ -0,0 +1,3 @@
<svg width="14" height="14" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg">
<path d="m7 4c1.6569 0 3 1.3431 3 3s-1.3431 3-3 3-3-1.3431-3-3 1.3431-3 3-3z"/>
</svg>

After

Width:  |  Height:  |  Size: 186 B

View file

@ -0,0 +1,3 @@
<svg width="28" height="28" version="1.1" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path d="m14 8c3.3137 0 6 2.6863 6 6s-2.6863 6-6 6-6-2.6863-6-6 2.6863-6 6-6z"/>
</svg>

After

Width:  |  Height:  |  Size: 187 B

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
sodipodi:docname="minimize.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs5" />
<sodipodi:namedview
id="namedview6"
pagecolor="#424242"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="23.125"
inkscape:cx="5.7513514"
inkscape:cy="9.8162162"
inkscape:window-width="1440"
inkscape:window-height="742"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<rect
x="4"
y="8"
width="8"
height="1"
rx="0.5"
ry="0.5"
id="rect2932"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<rect x="8" y="15" width="16" height="2" rx="1" ry="1" fill="#ffffff" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 195 B

View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="20"
height="20"
version="1.1"
viewBox="0 0 20 20"
id="svg4"
sodipodi:docname="radio-checked-symbolic.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="29.833333"
inkscape:cx="9.6201118"
inkscape:cy="12"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 10,8 c 1.104569,0 2,0.895431 2,2 0,1.104569 -0.895431,2 -2,2 C 8.895431,12 8,11.104569 8,10 8,8.895431 8.895431,8 10,8 Z"
sodipodi:nodetypes="sssss" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="40"
height="40"
version="1.1"
viewBox="0 0 40 40"
id="svg4"
sodipodi:docname="radio-checked-symbolic@2.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="3.7291666"
inkscape:cx="-8.3128492"
inkscape:cy="25.877095"
inkscape:window-width="1920"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 20,16 c 2.209138,0 4,1.790862 4,4 0,2.209138 -1.790862,4 -4,4 -2.209138,0 -4,-1.790862 -4,-4 0,-2.209138 1.790862,-4 4,-4 z"
sodipodi:nodetypes="sssss"
style="stroke-width:2" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="20"
height="20"
version="1.1"
viewBox="0 0 20 20"
id="svg4"
sodipodi:docname="checkbox-mixed-symbolic.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="10.547676"
inkscape:cx="0.094807614"
inkscape:cy="19.340753"
inkscape:window-width="1920"
inkscape:window-height="1012"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
width="20px">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 5.5,10 h 9 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 h -9 C 5.223,11 5,10.777 5,10.5 5,10.223 5.223,10 5.5,10 Z"
sodipodi:nodetypes="sssssss" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="40"
height="40"
version="1.1"
viewBox="0 0 40 40"
id="svg4"
sodipodi:docname="checkbox-mixed-symbolic@2.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="10.547676"
inkscape:cx="0"
inkscape:cy="19.29335"
inkscape:window-width="1920"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
width="20px">
<inkscape:grid
type="xygrid"
id="grid825" />
</sodipodi:namedview>
<path
id="path2"
d="m 11,20 h 18 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 11 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
sodipodi:nodetypes="sssssss"
style="stroke-width:2" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(180,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 796 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(-2,0,0,-2,48,48)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 782 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(180,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 814 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(-2,0,0,-2,48,48)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 800 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(1,0,0,-1,0,24)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 858 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(2,0,0,-2,0,48)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 838 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(1,0,0,-1,0,24)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 839 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="20" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="20" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(2,0,0,-2,0,48)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 811 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 766 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="scale(2)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 767 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 784 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="scale(2)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 785 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 824 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="scale(2)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 825 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 805 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="scale(2)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 806 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(90,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 795 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,2,-2,0,48,0)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 780 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(90,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 813 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,2,-2,0,48,0)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 798 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="rotate(90,12,12)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 853 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,2,-2,0,48,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 838 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="rotate(90,12,12)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 834 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,2,-2,0,48,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 819 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(-90,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 796 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,-2,2,0,0,48)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 780 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="rotate(-90,12,12)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 814 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".3" offset="1"/>
</linearGradient>
</defs>
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,-2,2,0,0,48)">
<rect width="24" height="24" fill="none"/>
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 798 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,1,1,0,0,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 856 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" stop-opacity=".25" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,2,2,0,0,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 836 B

View file

@ -0,0 +1,14 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,1,1,0,0,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 837 B

View file

@ -0,0 +1,14 @@
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#a6da95" offset="1"/>
</linearGradient>
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
<stop stop-color="#24273a" offset="1"/>
</linearGradient>
</defs>
<g id="scale-slider" transform="matrix(0,2,2,0,0,0)">
<rect width="24" height="24" fill="none"/>
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 817 B

Some files were not shown because too many files have changed in this diff Show more