Merge branch 'main' of https://git.snaile.de/luca/dotfiles
|
@ -1,6 +1,6 @@
|
|||
!! Set cursor size (Check GTK in .config too):
|
||||
Xcursor.size: 24
|
||||
Xcursor.theme: Qogir-dark
|
||||
Xcursor.theme: tokyo-night
|
||||
|
||||
!! Set a default font and font size:
|
||||
*.font: Noto Sans:style=Regular:pixelsize=14:antialias=true;
|
||||
|
|
|
@ -4,13 +4,14 @@ start() {
|
|||
pidof -s $1 || $@ >/dev/null 2>&1 &
|
||||
}
|
||||
|
||||
remaps
|
||||
xwallpaper --zoom "${XDG_DATA_HOME:-$HOME/.local/share/}/bg"
|
||||
start playerctld daemon
|
||||
start picom
|
||||
start unclutter
|
||||
start unclutter -noevents
|
||||
start dunst
|
||||
start pipewire
|
||||
start dwmblocks
|
||||
start remapd
|
||||
start checkup
|
||||
|
||||
remaps &
|
||||
checkup &
|
|
@ -9,8 +9,8 @@ export XSECURELOCK_PASSWORD_PROMPT="time_hex"
|
|||
export XSECURELOCK_AUTH_TIMEOUT=10
|
||||
export XSECURELOCK_SHOW_DATETIME=1
|
||||
export XSECURELOCK_COMPOSITE_OBSCURER=0
|
||||
[ -r "/usr/libexec/xscreensaver/cubicgrid" ] && export XSECURELOCK_SAVER="/usr/libexec/xscreensaver/cubicgrid -root"
|
||||
[ -r "/usr/lib/xscreensaver/cubicgrid" ] && export XSECURELOCK_SAVER="/usr/lib/xscreensaver/cubicgrid -root"
|
||||
[ -r "/usr/libexec/xscreensaver/cubicgrid" ] && export XSECURELOCK_SAVER="/usr/libexec/xscreensaver/cubicgrid"
|
||||
[ -r "/usr/lib/xscreensaver/cubicgrid" ] && export XSECURELOCK_SAVER="/usr/lib/xscreensaver/cubicgrid"
|
||||
export XSECURELOCK_SHOW_DATETIME=1
|
||||
export XSECURELOCK_SHOW_HOSTNAME=1
|
||||
|
||||
|
|
|
@ -42,3 +42,6 @@
|
|||
highlight = "#ff768e"
|
||||
timeout = 10
|
||||
|
||||
[updates]
|
||||
category = updates
|
||||
timeout = 0
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
gtk-theme-name="Qogir-Dark"
|
||||
gtk-icon-theme-name="Qogir-Dark"
|
||||
gtk-theme-name="tokyo-night"
|
||||
gtk-icon-theme-name="tokyo-night"
|
||||
gtk-font-name="Sans 10"
|
||||
gtk-cursor-theme-name="Qogir-Dark"
|
||||
gtk-cursor-theme-size=0
|
||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
gtk-button-images=1
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
[Settings]
|
||||
gtk-theme-name=Qogir-Dark
|
||||
gtk-icon-theme-name=Qogir-Dark
|
||||
gtk-theme-name=tokyo-night
|
||||
gtk-icon-theme-name=tokyo-night
|
||||
gtk-font-name=Sans 10
|
||||
gtk-cursor-theme-name=Qogir-Dark
|
||||
gtk-cursor-theme-size=0
|
||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
gtk-button-images=1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# sudo not required for some system commands
|
||||
for command in mount umount sv pacman apt updatedb su shutdown poweroff reboot; do
|
||||
for command in mount umount sv pacman apt aptitude updatedb su shutdown poweroff reboot; do
|
||||
command -v $command 1>/dev/null 2>&1 && alias $command="sudo $command"
|
||||
done
|
||||
unset command
|
||||
|
|
3
.gitignore
vendored
|
@ -2,4 +2,5 @@
|
|||
.config/zsh/.zcompdump
|
||||
|
||||
.config/nvim/plugin/packer_compiled.lua
|
||||
.config/nvim/plugin
|
||||
.config/nvim/plugin
|
||||
.config/gtk-3.0/bookmarks
|
|
@ -4,15 +4,32 @@
|
|||
|
||||
notify-send " Repository Sync" "Checking for package updates..."
|
||||
|
||||
sudo pacman -Syyuw --noconfirm || notify-send "Error downloading updates." "Check your internet connection, if pacman is already running, or run update manually to see errors."
|
||||
pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
|
||||
askupgrade() {
|
||||
[ "$(notify-send -c updates --action=Yes=Yes --action=No=No " Repository Sync" "Updates available. Update now?")" = 'Yes' ] && $TERMINAL -e upgrades
|
||||
}
|
||||
|
||||
if pacman -Qu | grep -v "\[ignored\]"; then
|
||||
answer=$(
|
||||
notify-send --action=Yes=Yes --action=No=No \
|
||||
" Repository Sync" "Updates available. Update now?"
|
||||
)
|
||||
[ $answer -eq 1 ] && $TERMINAL -e upgrades
|
||||
else
|
||||
notify-send " Repository Sync" "Sync complete. No new packages for update."
|
||||
confirmcheck() {
|
||||
notify-send " Repository Sync" "Sync complete. No new packages for update."
|
||||
}
|
||||
|
||||
failcheck() {
|
||||
notify-send "Error downloading updates." "Check your internet connection, if $1 is already running, or run update manually to see errors."
|
||||
}
|
||||
|
||||
if command -v pacman 1>/dev/null 2>&1; then
|
||||
sudo pacman -Syyuw --noconfirm || failcheck pacman
|
||||
if pacman -Qu | grep -v "\[ignored\]"; then
|
||||
askupgrade
|
||||
else
|
||||
confirmcheck
|
||||
fi
|
||||
elif command -v apt 1>/dev/null 2>&1; then
|
||||
n=$(sudo apt upgrade -dy 2>/dev/null | grep -m1 '^[0-9]\+ upgraded,' | tr -cd '0-9' | cut -c1-2)
|
||||
if [ "$n" = '' ]; then
|
||||
failcheck apt
|
||||
elif [ "$n" = 00 ]; then
|
||||
confirmcheck
|
||||
else
|
||||
askupgrade
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -1,19 +1,15 @@
|
|||
#!/bin/sh
|
||||
command -v pacman 1>/dev/null 2>&1 && echo -n "$(pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/ /;s/^ 0$//g")"
|
||||
if command -v pacman 1>/dev/null 2>&1; then
|
||||
echo -n "$(pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/ /;s/^ 0$//g")"
|
||||
fi
|
||||
|
||||
if command -v aptitude 1>/dev/null 2>&1; then
|
||||
vals=$(aptitude full-upgrade --simulate --assume-yes |
|
||||
grep -m1 '^[0-9]\+ packages upgraded,' |
|
||||
tr -cd '0-9 ' |
|
||||
tr ' ' '\n' |
|
||||
grep '[0-9]\+' |
|
||||
xargs echo)
|
||||
if command -v apt 1>/dev/null 2>&1; then
|
||||
vals=$(apt upgrade -sy 2>/dev/null | grep -m1 '^[0-9]\+ upgraded,' | tr -cd '0-9 ' | tr ' ' '\n' | grep '[0-9]\+' | xargs echo)
|
||||
|
||||
print=" "
|
||||
for i in $vals; do
|
||||
[ $i != 0 ] && icon="\033[11m\033[10m"
|
||||
print="$print$i/"
|
||||
done
|
||||
|
||||
[ -n "$icon" ] && printf "$icon " && echo "$print" | sed 's/\/$//'
|
||||
[ -n "$icon" ] && printf "$icon " && echo " $print" | sed 's/\/$//'
|
||||
fi
|
||||
|
|
60
.local/bin/trinativeinstall
Executable file
|
@ -0,0 +1,60 @@
|
|||
#!/bin/sh
|
||||
|
||||
echoerr() {
|
||||
red="\\033[31m"
|
||||
normal="\\e[0m"
|
||||
printf "%b\n" "$red$*$normal" >&2
|
||||
}
|
||||
|
||||
sedEscape() {
|
||||
printf "%s" "$@" | sed 's/[&/\]/\\&/g'
|
||||
}
|
||||
|
||||
run() {
|
||||
set -e
|
||||
|
||||
XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
|
||||
manifest_home="$HOME/.librewolf/native-messaging-hosts/"
|
||||
binary_suffix="Linux"
|
||||
native_version="$(curl -sSL https://api.github.com/repos/tridactyl/native_messenger/releases/latest | grep "tag_name" | cut -d':' -f2- | sed 's|[^0-9\.]||g')"
|
||||
|
||||
manifest_loc="https://raw.githubusercontent.com/tridactyl/native_messenger/$native_version/tridactyl.json"
|
||||
native_loc="https://github.com/tridactyl/native_messenger/releases/download/$native_version/native_main-$binary_suffix"
|
||||
manifest_file="$manifest_home/tridactyl.json"
|
||||
native_file="$XDG_DATA_HOME/tridactyl/native_main"
|
||||
|
||||
echo "Installing manifest here: $manifest_home"
|
||||
echo "Installing script here: XDG_DATA_HOME: $XDG_DATA_HOME/tridactyl"
|
||||
|
||||
mkdir -p "$manifest_home" "$XDG_DATA_HOME"
|
||||
curl -sSL --create-dirs -o "$manifest_file" "$manifest_loc"
|
||||
curl -sSL --create-dirs -o "$native_file" "$native_loc"
|
||||
|
||||
if [ ! -f "$manifest_file" ] ; then
|
||||
echoerr "Failed to create '$manifest_file'. Please make sure that the directories exist and that you have the necessary permissions."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f "$native_file" ] ; then
|
||||
echoerr "Failed to create '$native_file'. Please make sure that the directories exist and that you have the necessary permissions."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
sed -i.bak "s/REPLACE_ME_WITH_SED/$(sedEscape "$native_file")/" "$manifest_file"
|
||||
chmod +x "$native_file"
|
||||
|
||||
echo
|
||||
echo "Successfully installed Tridactyl native messenger!"
|
||||
echo "Run ':native' in Firefox to check."
|
||||
}
|
||||
|
||||
# Run the run function in a subshell so that it can be exited early if an error
|
||||
# occurs
|
||||
if ret="$(run "$@")"; then
|
||||
# Print captured output
|
||||
printf "%b\n" "$ret"
|
||||
else
|
||||
# Print captured output, ${ret:+\n} adds a newline only if ret isn't empty
|
||||
printf "%b" "$ret${ret:+\n}"
|
||||
echoerr 'Failed to install!'
|
||||
fi
|
|
@ -11,6 +11,13 @@ fi
|
|||
|
||||
command -v apt 1>/dev/null 2>&1 && sudo apt upgrade
|
||||
|
||||
pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
|
||||
# This pkill is already handled by apt/pacman hooks:
|
||||
# pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
|
||||
#
|
||||
# create the file /etc/apt/apt.conf.d/80statusbar containing the following
|
||||
# DPkg::Post-Invoke {"/usr/bin/pkill -RTMIN+8 dwmblocks";};
|
||||
# TODO: provide example for pacman hook
|
||||
|
||||
printf "\\nUpgrade complete.\\nPress <Enter> to exit window.\\n\\n"
|
||||
read -r _
|
||||
exit
|
||||
|
|
1
.local/share/icons/tokyo-night/128x128/apps
Symbolic link
|
@ -0,0 +1 @@
|
|||
../64x64/apps
|
1
.local/share/icons/tokyo-night/128x128/devices
Symbolic link
|
@ -0,0 +1 @@
|
|||
../64x64/devices
|
1
.local/share/icons/tokyo-night/128x128/mimetypes
Symbolic link
|
@ -0,0 +1 @@
|
|||
../64x64/mimetypes
|
1
.local/share/icons/tokyo-night/128x128/places
Symbolic link
|
@ -0,0 +1 @@
|
|||
../64x64/places
|
1
.local/share/icons/tokyo-night/16x16/actions/Finished.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
object-select.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/Info-amarok.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
run-build.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/SuggestionError.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
dialog-error.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/SuggestionTM.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
database-index.svg
|
|
@ -0,0 +1 @@
|
|||
folder-new.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/action-rss_tag.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
tag.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8 1 C 4.137 1 1 4.137 1 8 C 1 11.863 4.137 15 8 15 C 11.863 15 15 11.863 15 8 C 15 4.137 11.863 1 8 1 z M 8 3 C 9.0194 3 9.959 3.28763 10.75 3.8125 L 3.8125 10.75 C 3.28763 9.95898 3 9.0194 3 8 C 3 5.2407 5.2408 3 8 3 z M 12.1875 5.25 C 12.71237 6.04102 13 6.9806 13 8 C 13 10.7592 10.7592 13 8 13 C 6.9806 13 6.041 12.71237 5.25 12.1875 L 12.1875 5.25 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 808 B |
12
.local/share/icons/tokyo-night/16x16/actions/activities.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<g>
|
||||
<circle style="fill:currentColor" class="ColorScheme-Text" cx="3" cy="8" r="2"/>
|
||||
<circle style="fill:currentColor" class="ColorScheme-Text" cx="8" cy="8" r="2"/>
|
||||
<circle style="fill:currentColor" class="ColorScheme-Text" cx="13" cy="8" r="2"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 642 B |
|
@ -0,0 +1 @@
|
|||
document-new.svg
|
|
@ -0,0 +1 @@
|
|||
folder-new.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/add-placemark.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
flag-red.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/add-subtitle.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
media-view-subtitles.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/add.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
list-add.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 1.89,1 1,1.89 1,3 V 13 C 1,14.11 1.89,15 3,15 H 13 C 14.11,15 15,14.11 15,13 V 3 C 15,1.89 14.11,1 13,1 Z M 8,4 C 10.21,4 12,5.79 12,8 V 8.5 C 12,9.33 11.33,10 10.5,10 10.06,10 9.64,9.8 9.35,9.46 9,9.79 8.52,10 8,10 6.9,10 6,9.1 6,8 6,6.9 6.9,6 8,6 9.1,6 10,6.9 10,8 V 8.5 C 10,8.78 10.22,9 10.5,9 10.78,9 11,8.78 11,8.5 V 8 C 11,6.34 9.66,5 8,5 6.34,5 5,6.34 5,8 5,9.66 6.34,11 8,11 H 10.5 C 10.5,11 11,11 11,11.5 10.97,12 10.5,12 10.5,12 H 8 C 5.79,12 4,10.21 4,8 4,5.79 5.79,4 8,4 Z M 8,7 C 7.45,7 7,7.45 7,8 7,8.55 7.45,9 8,9 8.55,9 9,8.55 9,8 9,7.45 8.55,7 8,7 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1,021 B |
|
@ -0,0 +1 @@
|
|||
address-book-new.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3 1 L 3 11 L 1 11 L 1 13 L 3 13 L 3 15 L 5 15 L 5 13 L 15 13 L 15 11 L 5 11 L 5 9.5 L 7.90625 7.3203125 L 10.027344 9.4414062 L 15 4.0878906 L 15 1.1484375 L 9.9726562 6.5585938 L 8.09375 4.6796875 L 5 7 L 5 1 L 3 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 685 B |
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<linearGradient id="linearGradient4177" x1="8" x2="8" y1="15" y2="1" gradientUnits="userSpaceOnUse">
|
||||
<stop style="stop-color:#a9b1d6" offset="0"/>
|
||||
<stop style="stop-color:#a9b1d6;stop-opacity:0" offset="1" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#linearGradient4177)" d="M 1 1 L 1 15 L 15 15 L 15 1 L 1 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 462 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 11 2 A 3 3 0 0 0 8.1757812 4 L 1 4 L 1 6 L 8.1738281 6 A 3 3 0 0 0 11 8 A 3 3 0 0 0 13.824219 6 L 15 6 L 15 4 L 13.826172 4 A 3 3 0 0 0 11 2 z M 6 8 A 3 3 0 0 0 3.1757812 10 L 1 10 L 1 12 L 3.1738281 12 A 3 3 0 0 0 6 14 A 3 3 0 0 0 8.8242188 12 L 15 12 L 15 10 L 8.8261719 10 A 3 3 0 0 0 6 8 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 747 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 4 1 L 4 3.1738281 A 3 3 0 0 0 2 6 A 3 3 0 0 0 4 8.8242188 L 4 15 L 6 15 L 6 8.8261719 A 3 3 0 0 0 8 6 A 3 3 0 0 0 6 3.1757812 L 6 1 L 4 1 z M 10 1 L 10 8.1738281 A 3 3 0 0 0 8 11 A 3 3 0 0 0 10 13.824219 L 10 15 L 12 15 L 12 13.826172 A 3 3 0 0 0 14 11 A 3 3 0 0 0 12 8.1757812 L 12 1 L 10 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 747 B |
1
.local/share/icons/tokyo-night/16x16/actions/adress-book-new.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
address-book-new.svg
|
|
@ -0,0 +1 @@
|
|||
go-home.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/akonadiconsole.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
cm_runterm.svg
|
|
@ -0,0 +1 @@
|
|||
folder-new.svg
|
|
@ -0,0 +1 @@
|
|||
document-import.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/albumfolder-new.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
folder-new.svg
|
|
@ -0,0 +1 @@
|
|||
configure.svg
|
|
@ -0,0 +1 @@
|
|||
entry-delete.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1 0 L 1 16 L 3 16 L 3 15 L 3 0 L 1 0 z M 3 15 L 5.5 15 L 6.5625 12 L 11.4375 12 L 12.5 15 L 15.28125 15 L 10 1 L 8 1 L 3 15 z M 9 5 L 10.75 10 L 7.25 10 L 9 5 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 614 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 9 1 L 9 8 L 14 8 L 14 1 L 9 1 z M 2 3 L 2 8 L 7 8 L 7 3 L 2 3 z M 1 10 L 1 12 L 15 12 L 15 10 L 1 10 z M 9 13 L 9 15 L 14 15 L 14 13 L 9 13 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 595 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7 1 L 7 2 L 3 2 L 3 6 L 7 6 L 7 10 L 3 10 L 3 14 L 7 14 L 7 15 L 9 15 L 9 14 L 13 14 L 13 10 L 9 10 L 9 6 L 13 6 L 13 2 L 9 2 L 9 1 L 7 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 593 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 4 1 L 4 15 L 6 15 L 6 1 L 4 1 z M 8 2 L 8 7 L 15 7 L 15 2 L 8 2 z M 1 9 L 1 14 L 3 14 L 3 9 L 1 9 z M 8 9 L 8 14 L 13 14 L 13 9 L 8 9 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 589 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1 0 L 1 2 L 3 2 L 3 0 L 1 0 z M 3 2 L 3 16 L 5 16 L 5 15 L 15 15 L 15 11 L 5 11 L 5 7 L 15 7 L 15 3 L 5 3 L 5 2 L 3 2 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 573 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 1 L 2 15 L 4 15 L 4 14 L 14 14 L 14 10 L 4 10 L 4 6 L 14 6 L 14 2 L 4 2 L 4 1 L 2 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 541 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 10 1 L 10 15 L 12 15 L 12 1 L 10 1 z M 1 2 L 1 7 L 8 7 L 8 2 L 1 2 z M 3 9 L 3 14 L 8 14 L 8 9 L 3 9 z M 13 9 L 13 14 L 15 14 L 15 9 L 13 9 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 595 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 13 0 L 13 2 L 15 2 L 15 0 L 13 0 z M 13 2 L 11 2 L 11 3 L 1 3 L 1 7 L 11 7 L 11 11 L 1 11 L 1 15 L 11 15 L 11 16 L 13 16 L 13 2 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 583 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 12 1 L 12 2 L 2 2 L 2 6 L 12 6 L 12 10 L 2 10 L 2 14 L 12 14 L 12 15 L 14 15 L 14 1 L 12 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 546 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 9 1 L 9 3 L 14 3 L 14 1 L 9 1 z M 1 4 L 1 6 L 15 6 L 15 4 L 1 4 z M 2 8 L 2 15 L 7 15 L 7 8 L 2 8 z M 9 8 L 9 13 L 14 13 L 14 8 L 9 8 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 589 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 6.859375 0 L 1.859375 14 L 0 14 L 0 16 L 16 16 L 16 14 L 14.140625 14 L 8.859375 0 L 6.859375 0 z M 7.859375 4 L 9.609375 9 L 6.109375 9 L 7.859375 4 z M 5.421875 11 L 10.296875 11 L 11.359375 14 L 4.359375 14 L 5.421875 11 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 679 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 1 L 2 8 L 7 8 L 7 1 L 2 1 z M 9 3 L 9 8 L 14 8 L 14 3 L 9 3 z M 1 10 L 1 12 L 15 12 L 15 10 L 1 10 z M 9 13 L 9 15 L 14 15 L 14 13 L 9 13 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 595 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 1,1 0,10 -1,0 0,2 14,0 0,-2 -1,0 L 13,1 9,1 9,11 0,11 5,11 5,1 Z m 13,12 0,2 2,0 0,-2 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 541 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 2 L 2 12 L 1 12 L 1 14 L 15 14 L 15 12 L 14 12 L 14 2 L 10 2 L 10 12 L 6 12 L 6 2 L 2 2 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 545 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 3 L 2 7 L 1 7 L 1 9 L 2 9 L 2 13 L 6 13 L 6 9 L 10 9 L 10 13 L 14 13 L 14 9 L 15 9 L 15 7 L 14 7 L 14 3 L 10 3 L 10 7 L 6 7 L 6 3 L 2 3 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 593 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 9 1 L 9 3 L 14 3 L 14 1 L 9 1 z M 1 4 L 1 6 L 15 6 L 15 4 L 1 4 z M 2 8 L 2 13 L 7 13 L 7 8 L 2 8 z M 9 8 L 9 15 L 14 15 L 14 8 L 9 8 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 589 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 14,1 V 3 H 16 V 1 Z M 14,3 H 0 V 5 H 1 V 15 H 5 V 5 H 9 V 15 H 13 V 5 H 14 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 524 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1 2 L 1 4 L 2 4 L 2 14 L 6 14 L 6 4 L 10 4 L 10 14 L 14 14 L 14 4 L 15 4 L 15 2 L 1 2 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 541 B |
1
.local/share/icons/tokyo-night/16x16/actions/amarok_artist.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
user-identity.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5 1 C 4.446 1 4 1.446 4 2 L 4 5 L 2 5 C 1.446 5 1 5.446 1 6 L 1 14 C 1 14.554 1.446 15 2 15 L 9 15 L 9 11 L 11 11 L 11 9 L 15 9 L 15 6 C 15 5.446 14.554 5 14 5 L 12 5 L 12 2 C 12 1.446 11.554 1 11 1 L 5 1 z M 6 3 L 10 3 L 10 5 L 6 5 L 6 3 z M 12 10 L 12 12 L 10 12 L 10 14 L 12 14 L 12 16 L 14 16 L 14 14 L 16 14 L 16 12 L 14 12 L 14 10 L 12 10 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 800 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5 1 C 4.446 1 4 1.446 4 2 L 4 5 L 2 5 C 1.446 5 1 5.446 1 6 L 1 14 C 1 14.554 1.446 15 2 15 L 9 15 L 9 11 L 15 11 L 15 6 C 15 5.446 14.554 5 14 5 L 12 5 L 12 2 C 12 1.446 11.554 1 11 1 L 5 1 z M 6 3 L 10 3 L 10 5 L 6 5 L 6 3 z M 10 12 L 10 14 L 16 14 L 16 12 L 10 12 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 722 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5 1 C 4.446 1 4 1.446 4 2 L 4 5 L 2 5 C 1.446 5 1 5.446 1 6 L 1 14 C 1 14.554 1.446 15 2 15 L 14 15 C 14.554 15 15 14.554 15 14 L 15 6 C 15 5.446 14.554 5 14 5 L 12 5 L 12 2 C 12 1.446 11.554 1 11 1 L 5 1 z M 6 3 L 10 3 L 10 5 L 6 5 L 6 3 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 694 B |
|
@ -0,0 +1 @@
|
|||
flag.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/amarok_clock.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
clock.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/amarok_lyrics.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
view-media-lyrics.svg
|
|
@ -0,0 +1 @@
|
|||
view-statistics.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/amarok_playlist.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
view-media-playlist.svg
|
|
@ -0,0 +1 @@
|
|||
view-refresh.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/amarok_scripts.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
cm_runterm.svg
|
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<radialGradient id="radialGradient4475" cx="8" cy="8" r="7" fx="8" fy="8" gradientUnits="userSpaceOnUse">
|
||||
<stop style="stop-color:#a9b1d6;stop-opacity:0" offset="0" stop-opacity=".2"/>
|
||||
<stop style="stop-color:#a9b1d6" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#radialGradient4475)" d="M 1 1 L 1 15 L 15 15 L 15 1 L 1 1 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 468 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3 1 C 1.892 0.99998 1 1.892 1 3 L 1 5.9941406 L 3 6 L 3 3 L 13 3 L 13 13 L 3 13 L 3 10 L 1 9.9941406 L 1 13 C 1 14.108 1.892 15 3 15 L 13 15 C 14.108 15 15 14.108 15 13 L 15 3 C 15 1.892 14.108 1 13 1 L 3 1 z M 7.2109375 4 L 5.8242188 5.3867188 L 7.4589844 7.0214844 L -0.001953125 7 L -0.001953125 9 L 7.4589844 9.0214844 L 5.8242188 10.654297 L 7.2109375 12.041016 L 11.210938 8 L 7.2109375 4 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 850 B |
|
@ -0,0 +1 @@
|
|||
format-justify-fill.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1 0.99804688 L 1 3.1796875 C 7.5264 3.1796875 12.818359 8.4690468 12.818359 14.998047 L 14.998047 14.998047 C 14.998047 7.2654045 8.7303937 0.9991127 1 0.99804688 z M 1 5.359375 L 1 7.5429688 C 5.1174 7.5429688 8.4550781 10.880347 8.4550781 14.998047 L 10.636719 14.998047 C 10.636719 9.6762468 6.3216 5.359375 1 5.359375 z M 3.0898438 10.820312 C 1.9352436 10.820312 1 11.756879 1 12.912109 C 1 14.065009 1.9352037 15.003906 3.0898438 15.003906 C 4.2444836 15.003906 5.1816406 14.065019 5.1816406 12.912109 C 5.1816406 11.756809 4.2444836 10.820313 3.0898438 10.820312 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;opacity:.35" class="ColorScheme-Text" d="M 2 1 C 2 1 1 1 1 2 L 1 14 C 1 15 2 15 2 15 L 9 15 L 9 13 L 3 13 L 3 6 L 13 6 L 13 9 L 15 9 L 15 2 C 15 1 14 1 14 1 L 2 1 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 10,10 V 11.414 L 11.586,13 10,14.586 V 16 H 11.414 L 13,14.414 14.586,16 H 16 V 14.586 L 14.414,13 16,11.414 V 10 H 14.586 L 13,11.586 11.414,10 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 794 B |
1
.local/share/icons/tokyo-night/16x16/actions/appointment-new.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
window-new.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 12.5,9 A 3.5,3.5 0 0 0 9,12.5 3.5,3.5 0 0 0 12.5,16 3.5,3.5 0 0 0 16,12.5 3.5,3.5 0 0 0 12.5,9 Z M 12,10 H 13 V 12 H 15 V 13 H 13 12 V 12 Z M 2,1 C 2,1 1,1 1,2 V 14 C 1,15 2,15 2,15 H 8.7617 A 4.5,4.5 0 0 1 8.0332,13 H 3 V 6 H 13 V 8.0312 A 4.5,4.5 0 0 1 15,8.7598 V 2 C 15,1 14,1 14,1 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 735 B |
1
.local/share/icons/tokyo-night/16x16/actions/appointment.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
appointment-new.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/archive-extract.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
cm_extractfiles.svg
|
|
@ -0,0 +1 @@
|
|||
folder-new.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/archive-insert.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
document-new.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/archive-remove.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
action-unavailable.svg
|
8
.local/share/icons/tokyo-night/16x16/actions/archive.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 2.446,1 2.1749,1.4754 2,2 L 1,5 V 13 C 1,13.554 1.446,14 2,14 H 14 C 14.554,14 15,13.554 15,13 V 5 L 14,2 C 13.825,1.4744 13.554,1 13,1 Z M 3.6699,3 H 12.33 L 12.664,4 H 3.334 Z M 7,6 H 9 V 9 H 10.75 L 8,12 5.25,9 H 7 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 673 B |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 4 1 L 8 8 L 12 1 L 4 1 z M 8 8 L 4 8 L 8 15 L 12 8 L 8 8 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 512 B |
1
.local/share/icons/tokyo-night/16x16/actions/arrow-down.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
pan-down.svg
|
|
@ -0,0 +1 @@
|
|||
media-seek-backward.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/arrow-left.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
pan-start.svg
|
|
@ -0,0 +1 @@
|
|||
media-seek-forward.svg
|
1
.local/share/icons/tokyo-night/16x16/actions/arrow-right.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
pan-end.svg
|
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8 1 L 4 8 L 8 8 L 12 8 L 8 1 z M 8 8 L 4 15 L 12 15 L 8 8 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 513 B |
1
.local/share/icons/tokyo-night/16x16/actions/arrow-up.svg
Symbolic link
|
@ -0,0 +1 @@
|
|||
pan-up.svg
|
8
.local/share/icons/tokyo-night/16x16/actions/as.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m8 1c-3.878 0-7 3.122-7 7s3.122 7 7 7 7-3.122 7-7-3.122-7-7-7zm-1.5039 4.002c0.5381 0.0186 1.0732 0.2241 1.5019 0.6367 0.3306 0.3176 0.4769 0.5891 0.9747 1.791 0.5195 1.2569 0.6148 1.4535 0.7832 1.6211 0.1803 0.1782 0.3481 0.2383 0.6681 0.2383 0.525 0 0.9-0.3308 0.9-0.7911 0-0.3895-0.134-0.5137-0.822-0.7617-1.0472-0.3836-1.3855-0.7295-1.3868-1.4258 0-0.3714 0.0927-0.6202 0.3282-0.8769 0.3379-0.3664 0.9196-0.4867 1.4356-0.3047 0.22 0.0794 0.682 0.4928 0.682 0.6113 0 0.0576-0.268 0.2338-0.416 0.2754-0.079 0.0207-0.145-0.0059-0.235-0.0937-0.183-0.1782-0.306-0.2344-0.525-0.2344-0.378 0-0.6135 0.2308-0.6135 0.6035 0 0.3715 0.1502 0.4968 0.8945 0.752 1.026 0.3517 1.328 0.6712 1.334 1.4062 0.006 0.635-0.276 1.0922-0.836 1.3633-0.255 0.1223-0.342 0.1387-0.758 0.1387-0.5938-0.0013-0.8601-0.113-1.1931-0.4942-0.2238-0.2563-0.4504-0.7376-1.1777-2.4941-0.3017-0.7279-0.6902-1.0842-1.336-1.2246-0.3272-0.071-0.783-0.0046-1.0801 0.1543-0.2896 0.1538-0.6129 0.501-0.7656 0.8183-0.1262 0.2577-0.1367 0.3293-0.1367 0.7774 0 0.4274 0.0155 0.5292 0.1211 0.7637 0.1601 0.3579 0.476 0.687 0.8223 0.8652 0.2502 0.1282 0.3273 0.1445 0.7265 0.1445 0.3835 0 0.4823-0.0179 0.711-0.1289 0.261-0.1294 0.6127-0.4476 0.7558-0.6855l0.0742-0.1231 0.1465 0.3418c0.0819 0.1882 0.1485 0.3646 0.1485 0.3965 0 0.0941-0.3326 0.4021-0.6368 0.5937-0.4617 0.2896-0.9922 0.3968-1.5586 0.3184v0.002c-0.16-0.0219-0.4448-0.1162-0.6347-0.209-1.2374-0.6022-1.7443-2.119-1.1348-3.3965 0.4352-0.913 1.3414-1.4003 2.2383-1.3691z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path opacity=".35" style="fill:currentColor" class="ColorScheme-Text" d="m8 1c-3.878 0-7 3.122-7 7s3.122 7 7 7 7-3.122 7-7-3.122-7-7-7zm-1.5039 4.002c0.5381 0.0186 1.0732 0.2241 1.5019 0.6367 0.3306 0.3176 0.4769 0.5891 0.9747 1.791 0.5195 1.2569 0.6148 1.4535 0.7832 1.6211 0.1803 0.1782 0.3481 0.2383 0.6681 0.2383 0.525 0 0.9-0.3308 0.9-0.7911 0-0.3895-0.134-0.5137-0.822-0.7617-1.0472-0.3836-1.3855-0.7295-1.3868-1.4258 0-0.3714 0.0927-0.6202 0.3282-0.8769 0.3379-0.3664 0.9196-0.4867 1.4356-0.3047 0.22 0.0794 0.682 0.4928 0.682 0.6113 0 0.0576-0.268 0.2338-0.416 0.2754-0.079 0.0207-0.145-0.0059-0.235-0.0937-0.183-0.1782-0.306-0.2344-0.525-0.2344-0.378 0-0.6135 0.2308-0.6135 0.6035 0 0.3715 0.1502 0.4968 0.8945 0.752 1.026 0.3517 1.328 0.6712 1.334 1.4062 0.006 0.635-0.276 1.0922-0.836 1.3633-0.255 0.1223-0.342 0.1387-0.758 0.1387-0.5938-0.0013-0.8601-0.113-1.1931-0.4942-0.2238-0.2563-0.4504-0.7376-1.1777-2.4941-0.3017-0.7279-0.6902-1.0842-1.336-1.2246-0.3272-0.071-0.783-0.0046-1.0801 0.1543-0.2896 0.1538-0.6129 0.501-0.7656 0.8183-0.1262 0.2577-0.1367 0.3293-0.1367 0.7774 0 0.4274 0.0155 0.5292 0.1211 0.7637 0.1601 0.3579 0.476 0.687 0.8223 0.8652 0.2502 0.1282 0.3273 0.1445 0.7265 0.1445 0.3835 0 0.4823-0.0179 0.711-0.1289 0.261-0.1294 0.6127-0.4476 0.7558-0.6855l0.0742-0.1231 0.1465 0.3418c0.0819 0.1882 0.1485 0.3646 0.1485 0.3965 0 0.0941-0.3326 0.4021-0.6368 0.5937-0.4617 0.2896-0.9922 0.3968-1.5586 0.3184v0.002c-0.16-0.0219-0.4448-0.1162-0.6347-0.209-1.2374-0.6022-1.7443-2.119-1.1348-3.3965 0.4352-0.913 1.3414-1.4003 2.2383-1.3691z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-NegativeText" d="m8 1c-3.878 0-7 3.122-7 7s3.122 7 7 7 7-3.122 7-7-3.122-7-7-7zm-1.5039 4.002c0.5381 0.0186 1.0732 0.2241 1.5019 0.6367 0.3306 0.3176 0.4769 0.5891 0.9747 1.791 0.5195 1.2569 0.6148 1.4535 0.7832 1.6211 0.1803 0.1782 0.3481 0.2383 0.6681 0.2383 0.525 0 0.9-0.3308 0.9-0.7911 0-0.3895-0.134-0.5137-0.822-0.7617-1.0472-0.3836-1.3855-0.7295-1.3868-1.4258 0-0.3714 0.0927-0.6202 0.3282-0.8769 0.3379-0.3664 0.9196-0.4867 1.4356-0.3047 0.22 0.0794 0.682 0.4928 0.682 0.6113 0 0.0576-0.268 0.2338-0.416 0.2754-0.079 0.0207-0.145-0.0059-0.235-0.0937-0.183-0.1782-0.306-0.2344-0.525-0.2344-0.378 0-0.6135 0.2308-0.6135 0.6035 0 0.3715 0.1502 0.4968 0.8945 0.752 1.026 0.3517 1.328 0.6712 1.334 1.4062 0.006 0.635-0.276 1.0922-0.836 1.3633-0.255 0.1223-0.342 0.1387-0.758 0.1387-0.5938-0.0013-0.8601-0.113-1.1931-0.4942-0.2238-0.2563-0.4504-0.7376-1.1777-2.4941-0.3017-0.7279-0.6902-1.0842-1.336-1.2246-0.3272-0.071-0.783-0.0046-1.0801 0.1543-0.2896 0.1538-0.6129 0.501-0.7656 0.8183-0.1262 0.2577-0.1367 0.3293-0.1367 0.7774 0 0.4274 0.0155 0.5292 0.1211 0.7637 0.1601 0.3579 0.476 0.687 0.8223 0.8652 0.2502 0.1282 0.3273 0.1445 0.7265 0.1445 0.3835 0 0.4823-0.0179 0.711-0.1289 0.261-0.1294 0.6127-0.4476 0.7558-0.6855l0.0742-0.1231 0.1465 0.3418c0.0819 0.1882 0.1485 0.3646 0.1485 0.3965 0 0.0941-0.3326 0.4021-0.6368 0.5937-0.4617 0.2896-0.9922 0.3968-1.5586 0.3184v0.002c-0.16-0.0219-0.4448-0.1162-0.6347-0.209-1.2374-0.6022-1.7443-2.119-1.1348-3.3965 0.4352-0.913 1.3414-1.4003 2.2383-1.3691z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3.0625,7.3164 C 3.2875,7.5661 3.7141,7.5492 3.8124,7.91 3.9928,8.0191 4.1728,8.19 4.2806,7.942 4.6521,8.2711 4.2986,8.6106 4.1201,8.9203 4.2331,9.1153 3.9822,9.3125 4.2667,9.4853 4.4674,9.9269 4.6983,10.278 5.1544,10.459 5.2524,10.726 5.2344,11.032 5.2494,11.32 5.2224,11.598 5.3908,11.846 5.3114,12.129 5.1264,12.154 4.768,11.763 4.5519,11.585 3.4145,10.511 2.8069,8.8707 3.0625,7.3164 Z M 11.346,4.9727 C 11.276,5.4107 11.658,4.9287 11.346,4.9727 Z M 11.406,4.8164 C 11.277,4.9987 11.549,4.8454 11.406,4.8164 Z M 11.969,5.2537 C 11.559,5.1515 11.794,5.4786 11.969,5.2537 Z M 11.406,4.66 C 11.633,4.769 11.986,5.1626 12.03,5.2131 12.09,5.0794 12.408,5.6512 12.386,5.7424 12.306,6.2352 11.886,5.5816 11.601,5.6914 11.435,5.6074 11.747,5.2486 11.391,5.3164 10.972,5.2054 10.596,5.5622 10.23,5.4489 10.3,5.2952 10.688,5.3105 10.737,5.0355 10.922,4.722 11.136,4.8098 11.406,4.66 Z M 4.625,4.5037 C 4.678,4.5737 4.1102,5.1237 4.3748,4.6917 4.4678,4.6237 4.4781,4.4828 4.625,4.5037 Z M 4.875,4.4727 C 5.1501,4.5626 4.9857,4.6063 4.8118,4.7539 4.715,4.7055 4.766,4.4784 4.875,4.4727 Z M 4.6875,4.2852 C 4.9108,4.5258 4.3036,4.4953 4.6876,4.2852 Z M 10.156,3.6602 C 9.8371,3.7192 9.9179,4.1877 10.216,3.9072 10.246,3.7798 10.418,3.652 10.156,3.6602 Z M 5.9687,3.4727 C 5.8919,3.7914 5.4634,3.6326 5.4647,3.9778 4.9149,3.92 5.808,3.5373 5.9687,3.4727 Z M 8,3.0039 C 8.8027,3.0139 9.6083,3.2099 10.313,3.5974 10.447,3.7572 10.559,3.8274 10.343,3.9714 10.323,4.298 10.8,3.9194 10.96,4.0014 10.831,4.2561 10.391,4.1683 10.357,4.3418 10.797,4.3798 10.57,4.9259 10.206,4.7339 9.8734,4.6202 9.8218,5.1485 9.9364,5.3302 10.283,5.2847 10.057,5.6931 9.8545,5.7231 9.733,6.1636 9.2367,6.279 9.1146,6.7367 9.219,6.9695 9.0446,7.2497 9.0876,7.4696 9.0566,7.7285 9.4313,7.8805 9.5013,8.1227 9.878,8.4991 10.399,8.2869 10.863,8.1857 11.099,8.2017 11.196,8.444 11.458,8.4248 11.448,8.7084 11.378,9.033 11.684,9.2539 11.978,9.6527 11.35,9.9606 11.474,10.337 11.636,10.69 11.464,11.256 11.534,11.449 11.713,11.459 11.145,11.853 11.017,11.974 9.6741,13.008 7.756,13.302 6.1939,12.608 6.1289,12.499 6.4618,12.628 6.3504,12.39 6.6912,12.43 6.8132,12.144 6.5689,11.955 7.011,12.143 7.0688,11.561 7.2548,11.326 7.0969,10.813 8.0286,11.028 7.9737,10.497 7.832,10.046 8.2799,9.802 8.3336,9.4159 8.1511,8.972 7.5477,9.1102 7.2532,8.8415 6.7732,8.8765 6.9589,8.161 6.4566,8.2227 6.0549,8.2416 5.9922,7.6334 5.6598,7.8038 5.4615,7.8523 5.178,7.6347 4.9966,7.6952 5.0485,7.472 4.5257,7.9385 4.4515,7.9464 4.2234,7.9155 3.7706,7.9483 3.9372,7.5352 4.2129,7.1099 3.1833,7.4562 3.6554,7.0349 3.8484,6.664 3.3853,6.7277 3.2804,7.0047 2.8842,7.1122 3.3393,6.3995 3.3655,6.1735 3.4148,5.8935 3.6686,6.1117 3.8458,5.9416 4.1234,5.9334 4.2515,6.0168 4.2627,6.2525 4.6848,6.472 4.1809,5.7326 4.6247,5.7213 4.8519,5.6112 5.1336,5.4587 5.1084,5.2149 5.35,5.0376 5.6814,4.9507 5.8304,4.7101 6.0482,4.678 6.2478,4.4429 6.1838,4.7265 6.4159,4.634 6.9425,4.4039 6.47,4.4887 6.2278,4.4526 6.6334,4.1336 6.2835,4.1911 6.4604,3.9474 6.654,4.3307 6.658,4.1062 6.8701,4.1368 7.3455,3.8545 6.9818,4.2034 6.7059,4.3978 7.3296,4.3627 7.3571,4.3962 7.3532,4.2316 7.3468,4.1705 7.1918,4.1298 7.5227,3.8019 7.0067,3.706 7.0539,3.3877 7.0793,3.01 6.4457,3.6349 6.6601,3.1923 7.0962,3.0772 7.5481,3.0109 8,3.0039 Z M 8,1 C 4.134,0.9999 1,4.134 1,8 1,11.866 4.134,15 8,15 11.866,15 15,11.866 15,8 15,4.134 11.866,0.9999 8,1 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z M 10,5 V 11 C 11.06,10.42 11.789,9.3 11.789,8 11.789,6.7 11.07,5.58 10,5 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 683 B |
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z"/>
|
||||
<path style="opacity:.35;fill:currentColor" class="ColorScheme-Text" d="M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z M 10,5 V 11 C 11.06,10.42 11.789,9.3 11.789,8 11.789,6.7 11.07,5.58 10,5 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 759 B |
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#a9b1d6; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z M 10,5 V 11 C 11.06,10.42 11.79,9.3 11.79,8 11.79,6.7 11.07,5.58 10,5 Z"/>
|
||||
<path style="opacity:.35;fill:currentColor" class="ColorScheme-Text" d="M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 756 B |