25 Commits

Author SHA1 Message Date
vinceliuice
91901c71a3 Fixed #167 2025-02-09 21:00:04 +08:00
vinceliuice
9f238310a0 update 2025-02-08 18:20:56 +08:00
vinceliuice
f59b8bfd58 Merge branch 'main' of https://github.com/vinceliuice/Colloid-icon-theme 2025-02-08 17:43:56 +08:00
vinceliuice
277d444ddf Fixed plasma issues 2025-02-08 17:43:16 +08:00
Vince
b96d22c52d Create electron32.svg 2025-01-31 15:34:32 +08:00
Vince
c4b2743669 update 2025-01-29 17:28:20 +08:00
Vince
07865079c3 update 2025-01-29 17:15:40 +08:00
vinceliuice
d42f094a9f Fixed issues 2025-01-15 15:04:24 +08:00
vinceliuice
785765f9ac update 2025-01-15 14:33:15 +08:00
Vince
0989f21377 Merge pull request #160 from mtkennerly/feature/com.mtkennerly.ludusavi
Add com.mtkennerly.ludusavi alias for Ludusavi
2024-11-19 22:03:08 +08:00
Vince
379e2f5f08 Merge pull request #159 from BanHammerYKT/main
Fix Android Studio Canary icon
2024-11-19 22:01:52 +08:00
Vince
c5393390b6 Merge pull request #157 from shaoyuanyu/main
add icons for docker & docker-desktop
2024-11-19 22:01:17 +08:00
Vince
752d91cedd Merge pull request #153 from Robin864/main
Add deskflow icon
2024-11-19 22:00:53 +08:00
mtkennerly
32fa2f6366 Add com.mtkennerly.ludusavi alias for Ludusavi 2024-11-18 23:32:42 -05:00
BanHammerYKT
548bd413eb Add Android Studio Canary icon 2024-11-13 17:54:45 +09:00
BanHammerYKT
e6cc57e539 Update Android Studio icon 2024-11-13 17:54:32 +09:00
YSY
3ad44d66da feat: add icon for docker 2024-11-12 13:00:31 +08:00
vinceliuice
d79520223a Merge branch 'main' of github.com:vinceliuice/Colloid-icon-theme 2024-11-07 15:09:39 +08:00
vinceliuice
186e78a683 update 2024-11-07 15:09:33 +08:00
Vince
badfe40118 Merge pull request #155 from Burhanverse/main
Symlink materialgram
2024-11-03 21:55:09 +08:00
Burhanverse
74242ef499 Symlink materialgram 2024-11-02 21:12:52 +05:30
Robin864
b49613a971 Add deskflow icon 2024-11-02 14:45:31 +01:00
vinceliuice
47e6d9b03d Fixed #152 2024-11-01 22:41:43 +08:00
vinceliuice
d13365557c Update #151 2024-11-01 17:31:21 +08:00
vinceliuice
d0baf27b32 Fixed issues 2024-10-31 11:04:00 +08:00
232 changed files with 1844 additions and 538 deletions

View File

@@ -14,12 +14,14 @@ fi
SRC_DIR="$(cd "$(dirname "$0")" && pwd)"
source "${SRC_DIR}/lib_colors.sh"
THEME_NAME=Colloid
COLOR_VARIANTS=('-Light' '-Dark' '')
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest' '-Catppuccin')
COLOR_VARIANTS=('-Light' '-Dark' '')
themes=()
schemes=()
colors=()
usage() {
cat << EOF
@@ -62,9 +64,10 @@ install() {
colors_folder
if [[ "${theme}" != '' ]]; then
if [[ "${scheme}" != '' || "${theme}" != '' ]]; then
cp -r "${SRC_DIR}"/notint/*.svg "${THEME_DIR}"/places/scalable
sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/places/scalable/*.svg
sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/apps/scalable/*.svg
fi
cp -r "${SRC_DIR}"/links/* "${THEME_DIR}"
@@ -74,7 +77,7 @@ install() {
mkdir -p "${THEME_DIR}"/{apps,categories,devices,emblems,mimetypes,places,status}
cp -r "${SRC_DIR}"/src/actions "${THEME_DIR}"
cp -r "${SRC_DIR}"/src/apps/{22,symbolic} "${THEME_DIR}"/apps
cp -r "${SRC_DIR}"/src/categories/symbolic "${THEME_DIR}"/categories
cp -r "${SRC_DIR}"/src/categories/{22,symbolic} "${THEME_DIR}"/categories
cp -r "${SRC_DIR}"/src/emblems/symbolic "${THEME_DIR}"/emblems
cp -r "${SRC_DIR}"/src/mimetypes/symbolic "${THEME_DIR}"/mimetypes
cp -r "${SRC_DIR}"/src/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
@@ -85,6 +88,7 @@ install() {
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places,status}/{16,22,24}/*.svg
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices}/32/*.svg
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/apps/22/*.svg
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/categories/22/*.svg
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,devices,emblems,mimetypes,places,status}/symbolic/*.svg
cp -r "${SRC_DIR}"/links/actions/{16,22,24,32,symbolic} "${THEME_DIR}"/actions
@@ -92,7 +96,7 @@ install() {
cp -r "${SRC_DIR}"/links/places/{16,22,24,symbolic} "${THEME_DIR}"/places
cp -r "${SRC_DIR}"/links/status/{16,22,24,symbolic} "${THEME_DIR}"/status
cp -r "${SRC_DIR}"/links/apps/{22,symbolic} "${THEME_DIR}"/apps
cp -r "${SRC_DIR}"/links/categories/symbolic "${THEME_DIR}"/categories
cp -r "${SRC_DIR}"/links/categories/{22,symbolic} "${THEME_DIR}"/categories
cp -r "${SRC_DIR}"/links/mimetypes/symbolic "${THEME_DIR}"/mimetypes
cd "${dest}"
@@ -133,6 +137,198 @@ install() {
gtk-update-icon-cache "${THEME_DIR}"
}
colors_folder() {
case "$theme" in
'')
theme_color='#5b9bf8'
;;
-Purple)
theme_color='#BA68C8'
;;
-Pink)
theme_color='#F06292'
;;
-Red)
theme_color='#F44336'
;;
-Orange)
theme_color='#FB8C00'
;;
-Yellow)
theme_color='#FFD600'
;;
-Green)
theme_color='#66BB6A'
;;
-Teal)
theme_color='#4DB6AC'
;;
-Grey)
theme_color='#888888'
;;
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color='#89a3c2'
;;
-Purple)
theme_color='#c89dbf'
;;
-Pink)
theme_color='#dc98b1'
;;
-Red)
theme_color='#d4878f'
;;
-Orange)
theme_color='#dca493'
;;
-Yellow)
theme_color='#eac985'
;;
-Green)
theme_color='#a0c082'
;;
-Teal)
theme_color='#83b9b8'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color='#6272a4'
;;
-Purple)
theme_color='#bd93f9'
;;
-Pink)
theme_color='#ff79c6'
;;
-Red)
theme_color='#ff5555'
;;
-Orange)
theme_color='#ffb86c'
;;
-Yellow)
theme_color='#f1fa8c'
;;
-Green)
theme_color='#50fa7b'
;;
-Teal)
theme_color='#50fae9'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color='#83a598'
;;
-Purple)
theme_color='#d386cd'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#fb4934'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#fabd2f'
;;
-Green)
theme_color='#b8bb26'
;;
-Teal)
theme_color='#8ec07c'
;;
-Grey)
theme_color='#868686'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color='#7fbbb3'
;;
-Purple)
theme_color='#D699B6'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#E67E80'
;;
-Orange)
theme_color='#E69875'
;;
-Yellow)
theme_color='#DBBC7F'
;;
-Green)
theme_color='#A7C080'
;;
-Teal)
theme_color='#83C092'
;;
-Grey)
theme_color='#7a8478'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color='#8caaee'
;;
-Purple)
theme_color='#ca9ee6'
;;
-Pink)
theme_color='#f4b8e4'
;;
-Red)
theme_color='#ea999c'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#ef9f76'
;;
-Green)
theme_color='#a6d189'
;;
-Teal)
theme_color='#81c8be'
;;
-Grey)
theme_color='#7c7f93'
;;
esac
fi
}
while [[ "$#" -gt 0 ]]; do
case "${1:-}" in
-d|--dest)
@@ -164,32 +360,32 @@ while [[ "$#" -gt 0 ]]; do
;;
nord)
schemes+=("${SCHEME_VARIANTS[1]}")
echo -e "\nNord ColorScheme version! ..."
echo -e "\nNord ColorScheme version! ...\n"
shift
;;
dracula)
schemes+=("${SCHEME_VARIANTS[2]}")
echo -e "\nDracula ColorScheme version! ..."
echo -e "\nDracula ColorScheme version! ...\n"
shift
;;
gruvbox)
schemes+=("${SCHEME_VARIANTS[3]}")
echo -e "\nGruvbox ColorScheme version! ..."
echo -e "\nGruvbox ColorScheme version! ...\n"
shift
;;
everforest)
schemes+=("${SCHEME_VARIANTS[4]}")
echo -e "\nEverforest ColorScheme version! ..."
echo -e "\nEverforest ColorScheme version! ...\n"
shift
;;
catppuccin)
schemes+=("${SCHEME_VARIANTS[5]}")
echo -e "\nCatppuccin ColorScheme version! ..."
echo -e "\nCatppuccin ColorScheme version! ...\n"
shift
;;
all)
schemes+=("${SCHEME_VARIANTS[@]}")
echo -e "\All ColorSchemes version! ..."
echo -e "\All ColorSchemes version! ...\n"
shift
;;
-*|--*)

View File

@@ -1,191 +0,0 @@
colors_folder() {
case "$theme" in
'')
theme_color='#5b9bf8'
;;
-Purple)
theme_color='#BA68C8'
;;
-Pink)
theme_color='#F06292'
;;
-Red)
theme_color='#F44336'
;;
-Orange)
theme_color='#FB8C00'
;;
-Yellow)
theme_color='#FFD600'
;;
-Green)
theme_color='#66BB6A'
;;
-Teal)
theme_color='#4DB6AC'
;;
-Grey)
theme_color='#888888'
;;
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color='#89a3c2'
;;
-Purple)
theme_color='#c89dbf'
;;
-Pink)
theme_color='#dc98b1'
;;
-Red)
theme_color='#d4878f'
;;
-Orange)
theme_color='#dca493'
;;
-Yellow)
theme_color='#eac985'
;;
-Green)
theme_color='#a0c082'
;;
-Teal)
theme_color='#83b9b8'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color='#6272a4'
;;
-Purple)
theme_color='#bd93f9'
;;
-Pink)
theme_color='#ff79c6'
;;
-Red)
theme_color='#ff5555'
;;
-Orange)
theme_color='#ffb86c'
;;
-Yellow)
theme_color='#f1fa8c'
;;
-Green)
theme_color='#50fa7b'
;;
-Teal)
theme_color='#50fae9'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color='#83a598'
;;
-Purple)
theme_color='#d386cd'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#fb4934'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#fabd2f'
;;
-Green)
theme_color='#b8bb26'
;;
-Teal)
theme_color='#8ec07c'
;;
-Grey)
theme_color='#868686'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color='#7fbbb3'
;;
-Purple)
theme_color='#D699B6'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#E67E80'
;;
-Orange)
theme_color='#E69875'
;;
-Yellow)
theme_color='#DBBC7F'
;;
-Green)
theme_color='#A7C080'
;;
-Teal)
theme_color='#83C092'
;;
-Grey)
theme_color='#7a8478'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color='#8caaee'
;;
-Purple)
theme_color='#ca9ee6'
;;
-Pink)
theme_color='#f4b8e4'
;;
-Red)
theme_color='#ea999c'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#ef9f76'
;;
-Green)
theme_color='#a6d189'
;;
-Teal)
theme_color='#81c8be'
;;
-Grey)
theme_color='#7c7f93'
;;
esac
fi
}

View File

@@ -0,0 +1 @@
edit-redo.svg

View File

@@ -0,0 +1 @@
edit-undo.svg

View File

@@ -0,0 +1 @@
view-compact.svg

View File

@@ -0,0 +1 @@
view-dual.svg

View File

@@ -0,0 +1 @@
view-grid.svg

View File

@@ -0,0 +1 @@
view-list.svg

View File

@@ -0,0 +1 @@
view-refresh.svg

View File

@@ -0,0 +1 @@
zoom-in.svg

View File

@@ -0,0 +1 @@
zoom-original.svg

View File

@@ -0,0 +1 @@
zoom-out.svg

View File

@@ -0,0 +1 @@
edit-redo.svg

View File

@@ -0,0 +1 @@
edit-undo.svg

View File

@@ -0,0 +1 @@
akonadiconsole.svg

View File

@@ -0,0 +1 @@
view-compact.svg

View File

@@ -0,0 +1 @@
view-dual.svg

View File

@@ -0,0 +1 @@
view-grid.svg

View File

@@ -0,0 +1 @@
view-list.svg

View File

@@ -0,0 +1 @@
view-refresh.svg

View File

@@ -0,0 +1 @@
zoom-in.svg

View File

@@ -0,0 +1 @@
zoom-original.svg

View File

@@ -0,0 +1 @@
zoom-out.svg

View File

@@ -1 +0,0 @@
../../places/32/folder.svg

View File

@@ -1 +0,0 @@
../../mimes/symbolic/font-x-generic-symbolic.svg

View File

@@ -0,0 +1 @@
com.github.mtkennerly.ludusavi.svg

View File

@@ -0,0 +1 @@
docker.svg

View File

@@ -0,0 +1 @@
electron.svg

View File

@@ -1 +0,0 @@
application-default-icon.svg

View File

@@ -1 +0,0 @@
kate.svg

View File

@@ -1 +0,0 @@
application-default-icon.svg

View File

@@ -0,0 +1 @@
io.github.kukuruzka165.materialgram.svg

View File

@@ -1 +0,0 @@
application-default-icon.svg

View File

@@ -0,0 +1 @@
applications-utilities-symbolic.svg

View File

@@ -0,0 +1 @@
./applications-internet-symbolic.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
drive-removable-media-usb.svg

View File

@@ -0,0 +1 @@
application-x-bzip-compressed-tar.svg

View File

@@ -1 +1 @@
../apps/wine.svg
application-x-cd-image.svg

View File

@@ -1 +1 @@
application-x-archive.svg
application-x-bzip-compressed-tar.svg

View File

@@ -1 +1 @@
application-x-archive.svg
application-x-bzip-compressed.svg

View File

@@ -1 +1 @@
application-x-archive.svg
application-x-bzip.svg

View File

@@ -0,0 +1 @@
application-x-bzip-compressed.svg

View File

@@ -1 +0,0 @@
kate.svg

View File

@@ -1 +0,0 @@
clipit-trayicon.svg

View File

@@ -0,0 +1 @@
fcitx-pinyin.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -1 +0,0 @@
kate.svg

View File

@@ -0,0 +1 @@
fcitx-pinyin.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -0,0 +1 @@
fcitx-pinyin.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -0,0 +1 @@
qbittorrent-tray.svg

View File

@@ -0,0 +1 @@
../../actions/32/view-refresh.svg

View File

@@ -0,0 +1 @@
battery-010-charging.svg

View File

@@ -0,0 +1 @@
battery-010.svg

View File

@@ -0,0 +1 @@
battery-000-charging.svg

View File

@@ -0,0 +1 @@
battery-000.svg

View File

@@ -0,0 +1 @@
battery-100-charging.svg

View File

@@ -0,0 +1 @@
battery-100.svg

View File

@@ -0,0 +1 @@
battery-070-charging.svg

View File

@@ -0,0 +1 @@
battery-070.svg

View File

@@ -0,0 +1 @@
battery-030-charging.svg

View File

@@ -0,0 +1 @@
battery-030.svg

View File

@@ -0,0 +1 @@
../../actions/32/view-refresh.svg

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" d="m11.002 3.3647a0.50005 0.50005 0 0 0-0.46875 0.32031l-1.8711 4.8535-5.1875 0.27344a0.50005 0.50005 0 0 0-0.29102 0.88867l4.0352 3.2832-1.334 5.0215a0.50005 0.50005 0 0 0 0.75586 0.54883l4.3594-2.8242 4.3594 2.8242a0.50005 0.50005 0 0 0 0.75586-0.54883l-1.334-5.0215 4.0352-3.2832a0.50005 0.50005 0 0 0-0.29102-0.88867l-5.1875-0.27344-1.8711-4.8535a0.50005 0.50005 0 0 0-0.46484-0.32031zm-2e-3 1.8906 1.5215 3.9453a0.50005 0.50005 0 0 0 0.43945 0.32031l4.2148 0.22266-3.2754 2.668a0.50005 0.50005 0 0 0-0.16797 0.51562l1.084 4.084-3.5449-2.2969a0.50005 0.50005 0 0 0-0.54297 0l-3.5449 2.2969 1.084-4.084a0.50005 0.50005 0 0 0-0.16792-0.51562l-3.2754-2.668 4.2148-0.22266a0.50005 0.50005 0 0 0 0.43945-0.32031z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 965 B

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" d="m5 5c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-9c0-1.108-0.892-2-2-2zm0 1h12c0.554 0 1 0.446 1 1h-14c0-0.554 0.446-1 1-1zm-1 2h14v8c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1zm3 7h-1v1h10v-1h-1z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 478 B

View File

@@ -0,0 +1,3 @@
<svg width="22" height="22" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m19 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm-1-10v2h-5v-2zm0 5v2h-5v-2zm0 5v2h-5v-2zm-8-10c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm-1-10v2h-5v-2zm0 5v2h-5v-2zm0 5v2h-5v-2z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 781 B

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#565656; } .ColorScheme-Highlight { color:#5294e2; }</style>
</defs>
<path class="ColorScheme-Text" d="m6 3c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h4.5 1 4.5c1.662 0 3-1.338 3-3v-10c0-1.662-1.338-3-3-3h-4.5-1-4.5zm0 1h4.5v14h-4.5c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2zm5.5 0h4.5c1.108 0 2 0.892 2 2v10c0 1.108-0.892 2-2 2h-4.5v-14z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 558 B

View File

@@ -1,14 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
<defs id="defs3051">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}
</style>
</defs>
<path
style="fill:currentColor;fill-opacity:1;stroke:none"
d="M 3 3 L 3 4 L 4 4 L 4 3 L 3 3 z M 8 3 L 8 4 L 9 4 L 9 3 L 8 3 z M 13 3 L 13 4 L 14 4 L 14 3 L 13 3 z M 18 3 L 18 4 L 19 4 L 19 3 L 18 3 z M 3 6 L 3 7 L 4 7 L 4 6 L 3 6 z M 8 6 L 8 7 L 9 7 L 9 6 L 8 6 z M 13 6 L 13 7 L 14 7 L 14 6 L 13 6 z M 18 6 L 18 7 L 19 7 L 19 6 L 18 6 z M 3 9 L 3 10 L 4 10 L 4 9 L 3 9 z M 8 9 L 8 10 L 9 10 L 9 9 L 8 9 z M 13 9 L 13 10 L 14 10 L 14 9 L 13 9 z M 18 9 L 18 10 L 19 10 L 19 9 L 18 9 z M 3 12 L 3 13 L 4 13 L 4 12 L 3 12 z M 8 12 L 8 13 L 9 13 L 9 12 L 8 12 z M 13 12 L 13 13 L 14 13 L 14 12 L 13 12 z M 18 12 L 18 13 L 19 13 L 19 12 L 18 12 z M 3 15 L 3 16 L 4 16 L 4 15 L 3 15 z M 8 15 L 8 16 L 9 16 L 9 15 L 8 15 z M 13 15 L 13 16 L 14 16 L 14 15 L 13 15 z M 18 15 L 18 16 L 19 16 L 19 15 L 18 15 z M 3 18 L 3 19 L 4 19 L 4 18 L 3 18 z M 8 18 L 8 19 L 9 19 L 9 18 L 8 18 z M 13 18 L 13 19 L 14 19 L 14 18 L 13 18 z M 18 18 L 18 19 L 19 19 L 19 18 L 18 18 z "
class="ColorScheme-Text"
/>
}</style>
</defs>
<path class="ColorScheme-Text" d="m4 4v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2zm-12 6v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2zm-12 6v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2z" fill="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 380 B

View File

@@ -0,0 +1,8 @@
<svg width="22" height="22" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<rect x="6" y="5" width="12" height="1" fill="#363636" stroke-width=".8165"/>
<rect x="6" y="10" width="12" height="1" fill="#363636" stroke-width=".8165"/>
<rect x="6" y="15" width="12" height="1" fill="#363636" stroke-width=".8165"/>
<rect x="4" y="5" width="1" height="1" fill="#363636"/>
<rect x="4" y="10" width="1" height="1" fill="#363636"/>
<rect x="4" y="15" width="1" height="1" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 521 B

View File

@@ -0,0 +1,3 @@
<svg width="24" height="24" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m20 6c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm-1-10v2h-5v-2zm0 5v2h-5v-2zm0 5v2h-5v-2zm-8-10c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm0 5c0-0.554-0.446-1-1-1h-5c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1zm-1-10v2h-5v-2zm0 5v2h-5v-2zm0 5v2h-5v-2z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 781 B

View File

@@ -0,0 +1,6 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#565656; } .ColorScheme-Highlight { color:#5294e2; }</style>
</defs>
<path class="ColorScheme-Text" d="m7 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h10c1.662 0 3-1.338 3-3v-10c0-1.662-1.338-3-3-3h-5.5zm0 1h4.5v14h-4.5c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2zm5.5 0h4.5c1.108 0 2 0.892 2 2v10c0 1.108-0.892 2-2 2h-4.5z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 541 B

View File

@@ -1,13 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs id="defs3051">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}
</style>
</defs>
<path style="fill:currentColor;fill-opacity:1;stroke:none"
d="M 4 4 L 4 5 L 5 5 L 5 4 L 4 4 z M 9 4 L 9 5 L 10 5 L 10 4 L 9 4 z M 14 4 L 14 5 L 15 5 L 15 4 L 14 4 z M 19 4 L 19 5 L 20 5 L 20 4 L 19 4 z M 4 7 L 4 8 L 5 8 L 5 7 L 4 7 z M 9 7 L 9 8 L 10 8 L 10 7 L 9 7 z M 14 7 L 14 8 L 15 8 L 15 7 L 14 7 z M 19 7 L 19 8 L 20 8 L 20 7 L 19 7 z M 4 10 L 4 11 L 5 11 L 5 10 L 4 10 z M 9 10 L 9 11 L 10 11 L 10 10 L 9 10 z M 14 10 L 14 11 L 15 11 L 15 10 L 14 10 z M 19 10 L 19 11 L 20 11 L 20 10 L 19 10 z M 4 13 L 4 14 L 5 14 L 5 13 L 4 13 z M 9 13 L 9 14 L 10 14 L 10 13 L 9 13 z M 14 13 L 14 14 L 15 14 L 15 13 L 14 13 z M 19 13 L 19 14 L 20 14 L 20 13 L 19 13 z M 4 16 L 4 17 L 5 17 L 5 16 L 4 16 z M 9 16 L 9 17 L 10 17 L 10 16 L 9 16 z M 14 16 L 14 17 L 15 17 L 15 16 L 14 16 z M 19 16 L 19 17 L 20 17 L 20 16 L 19 16 z M 4 19 L 4 20 L 5 20 L 5 19 L 4 19 z M 9 19 L 9 20 L 10 20 L 10 19 L 9 19 z M 14 19 L 14 20 L 15 20 L 15 19 L 14 19 z M 19 19 L 19 20 L 20 20 L 20 19 L 19 19 z "
class="ColorScheme-Text"
/>
}</style>
</defs>
<path class="ColorScheme-Text" d="m5 5v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2zm-12 6v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2zm-12 6v2h2v-2zm6 0v2h2v-2zm6 0v2h2v-2z" fill="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 380 B

View File

@@ -0,0 +1,3 @@
<svg width="22" height="22" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m4 6v1h1v-1zm2 0v1h12v-1zm-2 5v1h1v-1zm2 0v1h12v-1zm-2 5v1h1v-1zm2 0v1h12v-1z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 215 B

View File

@@ -0,0 +1,7 @@
<svg width="32px" height="32px" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme"> .ColorScheme-Text { color:#363636; } </style>
</defs>
<path style="fill:currentColor" class="ColorScheme-Text" d="m4 3c-2.216 0-4 1.784-4 4v17c0 2.216 1.784 4 4 4h24c2.216 0 4-1.784 4-4v-17c0-2.216-1.784-4-4-4h-24zm0 1h24c1.662 0 3 1.338 3 3v17c0 1.662-1.338 3-3 3h-24c-1.662 0-3-1.338-3-3v-17c0-1.662 1.338-3 3-3z"/>
<path style="fill:currentColor" class="ColorScheme-Text" d="m7.25 22c-0.41406 0-0.75 0.33594-0.75 0.75v1.5c0 0.41406 0.33594 0.75 0.75 0.75h1.5c0.41406 0 0.75-0.33594 0.75-0.75v-1.5c0-0.41406-0.33594-0.75-0.75-0.75h-1.5zm4 0c-0.41406 0-0.75 0.33594-0.75 0.75v1.5c0 0.41406 0.33594 0.75 0.75 0.75h1.5c0.41406 0 0.75-0.33594 0.75-0.75v-1.5c0-0.41406-0.33594-0.75-0.75-0.75h-1.5zm4 0c-0.41406 0-0.75 0.33594-0.75 0.75v1.5c0 0.41406 0.33594 0.75 0.75 0.75h1.5c0.41406 0 0.75-0.33594 0.75-0.75v-1.5c0-0.41406-0.33594-0.75-0.75-0.75h-1.5zm4 0c-0.41406 0-0.75 0.33594-0.75 0.75v1.5c0 0.41406 0.33594 0.75 0.75 0.75h1.5c0.41406 0 0.75-0.33594 0.75-0.75v-1.5c0-0.41406-0.33594-0.75-0.75-0.75h-1.5zm4 0c-0.41406 0-0.75 0.33594-0.75 0.75v1.5c0 0.41406 0.33594 0.75 0.75 0.75h1.5c0.41406 0 0.75-0.33594 0.75-0.75v-1.5c0-0.41406-0.33594-0.75-0.75-0.75h-1.5z" opacity=".35"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m5.4688 3-3.6367 10h1.0645l1.1035-3.0352v0.035156h2.0352a4.5 4.5 0 0 1-0.035156-0.5 4.5 4.5 0 0 1 0.035156-0.5h-1.6855l1.8184-5h0.66406l0.75391 2.0742a4.5 4.5 0 0 1 0.85742-0.56641l-0.91211-2.5078h-0.53125-1-0.53125zm4.0254 5.3984a1.5 1.5 0 0 0-0.49414 1.1016 1.5 1.5 0 0 0 1.4375 1.4922l-0.94336-2.5938z" fill="#363636"/>
<path d="m10.5 6a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 2.6562-1.2207c0.30281 0.71831 1.0128 1.2207 1.8438 1.2207v-1c-0.554 0-1-0.446-1-1v-1-4h-1v1.0527a3.5 3.5 0 0 0-2.5-1.0527zm0 1a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 728 B

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
<path class="ColorScheme-Text" d="m9.1269 3.2601c-0.064351-0.00888-0.13038-0.00425-0.19727 0.013672-0.26756 0.071693-0.42521 0.34377-0.35352 0.61133l0.13672 0.50977a7 7 0 0 0-1.1719 0.5293c-0.013468 0.00627-0.027897 0.0061-0.041016 0.013672-0.01342 0.00775-0.020785 0.02055-0.033203 0.029297a7 7 0 0 0-1.0449 0.74805l-0.37109-0.37109c-0.19587-0.19587-0.51116-0.19587-0.70703 0s-0.19587 0.51116 0 0.70703l0.36914 0.36914a7 7 0 0 0-0.77539 1.0801 7 7 0 0 0-0.54883 1.2109l-0.50391-0.13477c-0.26756-0.071693-0.53964 0.085954-0.61133 0.35352s0.085954 0.53964 0.35352 0.61133l0.50586 0.13672a7 7 0 0 0-0.00195 2.6465l-0.50391 0.13477c-0.26756 0.07169-0.42521 0.34377-0.35352 0.61133 0.071693 0.26756 0.34377 0.42521 0.61133 0.35352l0.50977-0.13672a7 7 0 0 0 1.3203 2.291l-0.37109 0.37109c-0.19587 0.19587-0.19587 0.51116 0 0.70703s0.51116 0.19587 0.70703 0l0.36914-0.36914a7 7 0 0 0 1.0801 0.77539 7 7 0 0 0 1.2109 0.54883l-0.13477 0.50391c-0.071693 0.26756 0.085954 0.53964 0.35352 0.61133 0.26756 0.07169 0.53964-0.08595 0.61133-0.35352l0.13672-0.50586a7 7 0 0 0 2.6465 2e-3l0.13477 0.50391c0.07169 0.26756 0.34377 0.42521 0.61133 0.35352s0.42521-0.34377 0.35352-0.61133l-0.13672-0.50976a7 7 0 0 0 2.291-1.3203l0.37109 0.37109c0.19587 0.19587 0.51116 0.19587 0.70703 0s0.19587-0.51116 0-0.70703l-0.36914-0.36914a7 7 0 0 0 0.77539-1.0801 7 7 0 0 0 0.54883-1.2109l0.50391 0.13477c0.26756 0.07169 0.53964-0.08595 0.61133-0.35352 0.07169-0.26756-0.08595-0.53963-0.35352-0.61133l-0.50586-0.13672a7 7 0 0 0 0.12695-1.2949c5.42e-4 -0.0096 0.0059-0.01762 0.0059-0.02734 0-0.01252-0.0069-0.02287-0.0078-0.03516a7 7 0 0 0-0.12305-1.2891l0.50391-0.13477c0.26756-0.071693 0.42521-0.34377 0.35352-0.61133s-0.34377-0.42521-0.61133-0.35352l-0.50976 0.13672a7 7 0 0 0-1.3203-2.291l0.37109-0.37109c0.19587-0.19587 0.19587-0.51116 0-0.70703s-0.51116-0.19587-0.70703 0l-0.36914 0.36914a7 7 0 0 0-1.0801-0.77539 7 7 0 0 0-1.2109-0.54883l0.13477-0.50391c0.07169-0.26756-0.08595-0.53964-0.35352-0.61133-0.26762-0.07174-0.53969 0.085907-0.61139 0.35347l-0.13672 0.50586a7 7 0 0 0-2.6465-0.00195l-0.13477-0.50391c-0.05377-0.20067-0.22101-0.34054-0.41406-0.36719zm1.5898 1.7461a6 6 0 0 1 3.2832 0.79883 6 6 0 0 1 2.9727 4.6953h-4.0391a2 2 0 0 0-1.9336-1.5 2 2 0 0 0-0.5332 0.074219l-2.0215-3.5a6 6 0 0 1 2.2715-0.56836zm-3.1367 1.0723 2.0195 3.4961a2 2 0 0 0-0.59961 1.4258 2 2 0 0 0 0.59766 1.4258l-2.0195 3.498a6 6 0 0 1-1.7734-7.9238 6 6 0 0 1 1.7754-1.9219zm3.4199 3.9219a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1zm1.9355 1.5h4.0371a6 6 0 0 1-0.77734 2.5 6 6 0 0 1-7.75 2.4238l2.0195-3.4961a2 2 0 0 0 0.53516 0.07227 2 2 0 0 0 1.9355-1.5z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" fill="currentColor" d="m11 3a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7zm-1.0605 3.8105c-1.0372 0-2.0699 0.12637-3.0723 0.375-0.33188 0.082121-0.53329 0.48176-0.45117 0.8125 0.082121 0.33075 0.41812 0.53329 0.75 0.45117 0.9045-0.22388 1.8383-0.33789 2.7754-0.33789 1.7977 0 3.5194 0.40551 5.1191 1.2031 0.08775 0.04389 0.1812 0.064453 0.27344 0.064453 0.22838 0 0.44637-0.18913 0.55664-0.40625 0.15189-0.30491 0.026713-0.67819-0.2793-0.83008-1.773-0.88425-3.6796-1.332-5.6719-1.332zm0.0019531 2.7031c-0.9315 0-1.8595 0.12501-2.7539 0.36914-0.28799 0.07876-0.45763 0.56943-0.37891 0.85742 0.078758 0.28799 0.3769 0.45653 0.66602 0.37891 0.801-0.21826 1.6321-0.33008 2.4668-0.33008 1.5187 0 2.9656 0.35246 4.3066 1.0488 0.07876 0.04163 0.16366 0.0625 0.24805 0.0625 0.19688 0 0.38568-0.30376 0.48242-0.48828 0.13504-0.26434 0.030004-0.59043-0.23438-0.72656-1.4737-0.765-3.1332-1.1719-4.8027-1.1719zm-0.0019531 2.5293c-0.83586 0-1.66 0.12275-2.4531 0.36914-0.24526 0.07313-0.382 0.59344-0.30664 0.83984 0.07536 0.24413 0.33481 0.38232 0.58008 0.30469 0.70312-0.21826 1.4372-0.32812 2.1797-0.32812 1.2397 0 2.4677 0.31358 3.5488 0.91211l0.22461 0.056641c0.16424 0 0.32218-0.088068 0.4043-0.24219 0.12261-0.22389 0.044509-0.76605-0.18164-0.88867-1.2173-0.66833-2.6-1.0234-3.9961-1.0234z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,6 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; } .ColorScheme-Highlight { color:#5294e2; }</style>
</defs>
<path class="ColorScheme-Text" d="m7 3v4c-1.108 0-2 0.892-2 2v4c0 3.324 2.676 6 6 6s6-2.676 6-6v-4c0-1.108-0.892-2-2-2v-4zm1 1h6v3h-6zm1 1v1h1v-1zm3 0v1h1v-1zm-5 3h8c0.554 0 1 0.446 1 1v4c0 2.77-2.23 5-5 5s-5-2.23-5-5v-4c0-0.554 0.446-1 1-1z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 506 B

9
src/apps/22/kget.svg Normal file
View File

@@ -0,0 +1,9 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<rect class="ColorScheme-Text" x="4" y="18" width="14" height="1" rx=".5" ry=".5" fill="currentColor"/>
<path class="ColorScheme-Text" d="m10 3c-1.108 0-2 0.892-2 2v6.791l-2.3027-2.3027c-0.097934-0.097934-0.22766-0.14648-0.35547-0.14648-0.12781-1e-7 -0.25558 0.04855-0.35352 0.14648-0.19587 0.19587-0.19392 0.51116 0.0019532 0.70703l5.6562 5.6582c0.19587 0.19587 0.50921 0.19587 0.70508 0l5.6582-5.6582c0.19587-0.19587 0.19587-0.51116 0-0.70703-0.19587-0.19587-0.50921-0.19587-0.70508 0l-2.3047 2.3047v-6.793c0-1.108-0.892-2-2-2h-2zm0 1h2c0.554 0 1 0.446 1 1v7.793l-2 2-2-2v-7.793c0-0.554 0.446-1 1-1z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 859 B

View File

@@ -0,0 +1,10 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<g class="ColorScheme-Text" fill="currentColor">
<path d="m11 3c-4.3745 0-7.9384 3.5134-8 7.8867 0.029926-2.2832 2.2998-4.4023 5-4.4023 0.21866 0 1.4662 0.02091 2.625 0.62891 1.021 0.53629 1.5558 1.4579 1.9277 2.0996 0.54044 1.0198 0.56324 1.956-0.0332 2.7344-0.05037 0.06548-0.20508 0.15589-0.20508 0.35352 0 0.16296 0.10618 0.32158 0.29492 0.45312 0.89866 0.62518 2.593 0.54102 2.5977 0.54102a3.7229 3.7229 0 0 0 1.8906-0.52148c1.1751-0.68651 1.8996-1.5883 1.9023-2.9492 0.0163-1.4003-0.5001-2.3319-0.70898-2.7441-1.3244-2.5905-4.1826-4.0801-7.291-4.0801zm0 1c2.7889 0 5.2707 1.3256 6.4004 3.5352 0.23472 0.46291 0.61296 1.13 0.59961 2.2773a1.0001 1.0001 0 0 0 0 0.00977c-2e-3 1.0072-0.40654 1.5038-1.4062 2.0879a1.0001 1.0001 0 0 0-0.0059 0.0039c-0.41776 0.24797-0.8951 0.37907-1.3809 0.38086-0.0023 0-0.40186 0.01757-0.85742-0.03125-0.33301-0.0357-0.60651-0.14443-0.85547-0.24219 0.50107-1.0219 0.5006-2.2221-0.05859-3.2773a1.0001 1.0001 0 0 0-0.01758-0.033203c-0.3723-0.6424-1.017-1.7937-2.3281-2.4824-1.4117-0.74071-2.8061-0.74414-3.0898-0.74414-0.55098 0-1.0548 0.15955-1.5664 0.29297 1.2303-1.0738 2.8-1.7773 4.5664-1.7773z"/>
<path d="m10.031 9.2539c-2.8103 1.384-3.9311 4.9677-2.084 7.498a4.9499 4.9499 0 0 0 1.4199 1.334l0.00586 2e-3c1.0083 0.63063 2.3883 0.85357 3.5938 0.63867 0.05969-0.01266 0.12273-0.0236 0.17969-0.03711 0.14056-0.03335 0.27096-0.06818 0.38281-0.10352l0.08203-0.02734a8.0186 8.0186 0 0 0 4.1621-3.2988c0.13863-0.21845-0.10778-0.47734-0.33398-0.35352-0.76655 0.7535-1.9542 0.93276-2.9004 0.9375-2.957 0-5.5352-2.2728-5.5352-4.8828a1.9671 1.9671 0 0 1 1.0273-1.707zm-1.6641 3.2715c0.8018 2.4806 3.2928 4.3184 6.1719 4.3184a1.0001 1.0001 0 0 0 0.0059 0c0.05524-2.77e-4 0.12837-0.02028 0.18555-0.02148-0.46348 0.29648-0.91841 0.60896-1.4453 0.79102l-0.07226 0.02344c-0.07793 0.02416-0.1795 0.05223-0.29688 0.08008-0.01089 0.0026-0.06617 0.01332-0.125 0.02539h-2e-3c-0.95772 0.1702-2.1369-0.03296-2.8867-0.50195a1.0001 1.0001 0 0 0-0.00781-0.0039c-0.44453-0.27629-0.82937-0.63805-1.1328-1.0645a1.0001 1.0001 0 0 0-0.00586-0.0098c-0.80586-1.1039-0.84669-2.4451-0.38867-3.6367z" opacity=".5"/>
<path d="m8.0057 6.0078c-2.7437 0-5 2.6025-5 4.8867a8.1309 8.1309 0 0 0 0.75781 3.5c1.7221 3.674 5.9233 5.477 9.7734 4.1934-1.3182 0.4154-2.9926 0.23274-4.1641-0.5l-0.00586-2e-3a4.9499 4.9499 0 0 1-1.4199-1.334c-1.8471-2.5303-0.72634-6.114 2.084-7.498 0.19496-0.091851 0.52941-0.258 0.97266-0.25a2.0222 2.0222 0 0 1 1.6055 0.8125 1.992 1.992 0 0 1 0.39648 1.166c0-0.01304 1.5289-4.9746-5-4.9746zm0 1c1.5056 0 2.446 0.28722 3.0215 0.63281 0.22403 0.13454 0.24296 0.30951 0.38281 0.45898-0.1353-0.019932-0.25596-0.092442-0.39453-0.09375-0.69741-0.010187-1.2388 0.26105-1.4102 0.3418a1.0001 1.0001 0 0 0-0.015625 0.00781c-3.0315 1.4929-4.2742 5.1543-2.8184 8.1055-0.85288-0.66016-1.6143-1.4503-2.1016-2.4883v-2e-3l-0.00195-2e-3c-0.44538-0.95978-0.67154-2.0063-0.66211-3.0645a1.0001 1.0001 0 0 0 0-0.0019 1.0001 1.0001 0 0 0 0-2e-3 1.0001 1.0001 0 0 0 0-0.0019 1.0001 1.0001 0 0 0 0-2e-3 1.0001 1.0001 0 0 0 0-2e-3c0-0.81284 0.44076-1.8306 1.1895-2.6035 0.7487-0.77287 1.755-1.2832 2.8105-1.2832zm-0.87305 10.324c8.174e-4 0.0011 0.00309 7.6e-4 0.00391 2e-3 0.00166 0.0023 2.935e-4 0.0055 0.00195 0.0078z" opacity=".75"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 22 22">
<defs>
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text { color: #363636; }
</style>
</defs>
<path d="M13.5 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2M6 12.5a3.5 3.5 0 0 1 1.991-3.159l.891.891A2.351 2.351 0 1 0 11.797 13h1.168A3.5 3.5 0 0 1 6 12.5" style="fill:currentColor" class="ColorScheme-Text"/>
<path d="M9.931 7.769 8.85 8.85l-.175-.175C8.5 8.5 8.15 8.15 8.8 7.5l.65-.65c1 0 1.57.29 1.917.55l1.763 1.322S12.25 10 12.025 11l2.868-.1a.53.53 0 0 1 .545.596l-.361 2.889L16 15h-2.125L14 12h-3.867l-.063-.2a3 3 0 0 1 .163-2.208l.558-1.15h.383z" style="fill:currentColor" class="ColorScheme-Text"/>
<path fill-rule="evenodd" d="M20 11a9 9 0 1 0-18 0 9 9 0 0 0 18 0m-9-8a8 8 0 1 1 0 16 8 8 0 0 1 0-16" clip-rule="evenodd" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 885 B

View File

@@ -0,0 +1,20 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter9" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.22"/>
</filter>
</defs>
<linearGradient id="a" x2="0" y1="26" gradientUnits="userSpaceOnUse">
<stop stop-color="#7cbaf8" offset="0"/>
<stop stop-color="#f4fcff" offset="1"/>
</linearGradient>
<linearGradient id="c" x1="11.073" x2="10.959" y1="19.89" y2="1.9939" gradientUnits="userSpaceOnUse">
<stop stop-color="#197cf1" offset="0"/>
<stop stop-color="#21c9fb" offset="1"/>
</linearGradient>
<circle cx="10.984" cy="10.984" r="8.9838" fill="url(#c)" stroke-width=".8799"/>
<g stroke-width="2">
<path d="m11 5v1zm-3.5 2.5v1l0.5 1.5h1v-1h-1zm7 0-0.5 1.5h-1v1h1l0.5-1.5zm-4.25 0.5v1h1.5v-1zm-4.75 1.5v1l0.5 1.5h1v-1h-1zm11 0-0.5 1.5h-1v1h1l0.5-1.5zm-7.5 1.5v1zm-2 2v1c0 0.5304 0.21086 1.039 0.58594 1.4141 0.37507 0.3751 0.88363 0.58594 1.4141 0.58594s1.039-0.21084 1.4141-0.58594c0.3751-0.3751 0.58594-0.88366 0.58594-1.4141 0 0.5304 0.21084 1.039 0.58594 1.4141 0.3751 0.3751 0.88366 0.58594 1.4141 0.58594s1.039-0.21084 1.4141-0.58594c0.3751-0.3751 0.58594-0.88366 0.58594-1.4141v-1c0 0.5304-0.21084 1.039-0.58594 1.4141-0.3751 0.3751-0.88366 0.58594-1.4141 0.58594s-1.039-0.21084-1.4141-0.58594c-0.3751-0.3751-0.58594-0.88366-0.58594-1.4141 0 0.5304-0.21084 1.039-0.58594 1.4141-0.3751 0.3751-0.88363 0.58594-1.4141 0.58594s-1.039-0.21084-1.4141-0.58594c-0.37508-0.3751-0.58594-0.88366-0.58594-1.4141z" filter="url(#filter9)" opacity=".08"/>
<path d="m11 5-.75 1.5v1.5h1.5v-1.5zm-2.75 1-.75 1.5.5 1.5h1v-1.5zm5.5 0-.75 1.5v1.5h1l.5-1.5zm-7.5 2-.75 1.5.5 1.5h1v-1.5zm9.5 0-.75 1.5v1.5h1l.5-1.5zm-4.75 1a2 2 0 0 0 -2 2 2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0 -2-2 2 2 0 0 0 -2-2z" fill="url(#a)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,12 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}
.ColorScheme-ButtonFocus {
color:#3daee9;
}
.ColorScheme-NegativeText {
color:#da4453;
}</style>
<path class="ColorScheme-Text" d="m11 3a1 1 0 0 0-0.99414 1.0996 4.988 4.988 0 0 0-4.0059 4.9004v4.5l-2 2v0.5h14v-0.5l-2-2v-4.5a4.987 4.987 0 0 0-4.0059-4.9004 1 1 0 0 0-0.99414-1.0996zm0 2a4 4 0 0 1 4 4v4.9219l1 1.0781h-10l1-1.0781v-4.9219a4 4 0 0 1 4-4zm-2 12a2 2 0 0 0 2 2 2 2 0 0 0 2-2h-3.7305z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 668 B

View File

@@ -0,0 +1,8 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path class="ColorScheme-Text" d="m7 3c-2.216 0-4 1.784-4 4s1.784 4 4 4h8c2.216 0 4-1.784 4-4s-1.784-4-4-4h-8zm0 1h8c1.662 0 3 1.338 3 3s-1.338 3-3 3h-8c-1.662 0-3-1.338-3-3s1.338-3 3-3zm8 1a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2zm-8 7c-2.216 0-4 1.784-4 4s1.784 4 4 4h8c2.216 0 4-1.784 4-4s-1.784-4-4-4h-8zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 619 B

View File

@@ -0,0 +1,9 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path class="ColorScheme-Text" d="m10.992 4a8 8 0 0 0-8 8 8 8 0 0 0 3.3496 6.5098l0.58203-0.81445a7 7 0 0 1-2.9316-5.6953 7 7 0 0 1 6.9062-7 7 7 0 0 1 0.09375 0 7 7 0 0 1 7 7 7 7 0 0 1-2.9316 5.6973l0.58008 0.8125a8 8 0 0 0 3.3516-6.5098 8 8 0 0 0-8-8zm0.0059 3c-0.277 0-0.5 0.223-0.5 0.5v3.6328a1 1 0 0 0-0.50586 0.86719 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-0.49414-0.86133v-3.6387c0-0.277-0.223-0.5-0.5-0.5z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m14.992 12c-0.26024 1.5016-0.63096 2.471-1.8476 3.3888l2.4961 3.1211c2.1611-1.6767 3.0899-3.7887 3.3672-6.5098z" fill="currentColor" opacity=".25"/>
</svg>

After

Width:  |  Height:  |  Size: 845 B

9
src/apps/22/vlc.svg Normal file
View File

@@ -0,0 +1,9 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
<rect class="ColorScheme-Text" x="3" y="18" width="16" height="1" fill="currentColor"/>
<path class="ColorScheme-Text" d="m9.1191 2.9992-4.1191 15.001 0.96484 0.2656 3.916-14.266h2.2383l3.8809 14.266 0.96484-0.2656-4.084-15.001z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m9 6h4l1 3h-6z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m7.5 12h7l1 3h-9z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 597 B

View File

@@ -0,0 +1,9 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
<path class="ColorScheme-Text" d="m12.414 3.2217c-0.78348-0.78347-2.045-0.78347-2.8284 0l-1.4142 1.4142c-0.78347 0.78347-0.78347 2.045-1e-7 2.8284l1.4144 1.4144c0.78347 0.78347 2.045 0.78347 2.8284-1e-7l1.4142-1.4142c0.78347-0.78347 0.78347-2.045 0-2.8284zm-0.7071 0.7071 1.4144 1.4144c0.39174 0.39174 0.39174 1.0225 0 1.4142l-1.4142 1.4142c-0.39174 0.39174-1.0225 0.39174-1.4142 0l-1.4144-1.4144c-0.39174-0.39174-0.39174-1.0225 0-1.4142l1.4142-1.4142c0.39174-0.39174 1.0225-0.39174 1.4142 0z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m17.364 8.1716c-0.78348-0.78347-2.045-0.78347-2.8284-1e-7l-1.4142 1.4142c-0.78347 0.78347-0.78347 2.045 0 2.8284l1.4144 1.4144c0.78347 0.78347 2.045 0.78347 2.8284 0l1.4142-1.4142c0.78347-0.78347 0.78347-2.045 0-2.8284zm-0.7071 0.7071 1.4144 1.4144c0.39174 0.39174 0.39174 1.0225 0 1.4142l-1.4142 1.4142c-0.39174 0.39174-1.0225 0.39174-1.4142-1e-6l-1.4144-1.4144c-0.39174-0.39174-0.39174-1.0225-1e-6 -1.4142l1.4142-1.4142c0.39174-0.39174 1.0225-0.39174 1.4142 4e-7z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m7.4643 8.1715c-0.78348-0.78347-2.045-0.78347-2.8284 1e-7l-1.4142 1.4142c-0.78347 0.78347-0.78347 2.045-1e-7 2.8284l1.4144 1.4144c0.78347 0.78347 2.045 0.78347 2.8284 0l1.4142-1.4142c0.78347-0.78347 0.78347-2.045 2e-7 -2.8284zm-0.7071 0.7071 1.4144 1.4144c0.39174 0.39174 0.39174 1.0225 2e-7 1.4142l-1.4142 1.4142c-0.39174 0.39174-1.0225 0.39174-1.4142 0l-1.4144-1.4144c-0.39174-0.39174-0.39174-1.0225 4e-7 -1.4142l1.4142-1.4142c0.39174-0.39174 1.0225-0.39174 1.4142 3e-7z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m12.414 13.121c-0.78348-0.78347-2.045-0.78347-2.8284 0l-1.4142 1.4142c-0.78347 0.78347-0.78347 2.045 0 2.8284l1.4144 1.4144c0.78347 0.78347 2.045 0.78347 2.8284 0l1.4142-1.4142c0.78347-0.78347 0.78347-2.045 0-2.8284zm-0.7071 0.7071 1.4144 1.4144c0.39174 0.39174 0.39174 1.0225 0 1.4142l-1.4142 1.4142c-0.39174 0.39174-1.0225 0.39174-1.4142 0l-1.4144-1.4144c-0.39174-0.39174-0.39174-1.0225 0-1.4142l1.4142-1.4142c0.39174-0.39174 1.0225-0.39174 1.4142 1e-6z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

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