Add some app icons
14
install.sh
|
@ -91,15 +91,15 @@ install() {
|
||||||
|
|
||||||
if [[ ${color} == '-light' ]]; then
|
if [[ ${color} == '-light' ]]; then
|
||||||
mkdir -p "${THEME_DIR}"/status
|
mkdir -p "${THEME_DIR}"/status
|
||||||
cp -r "${SRC_DIR}"/src/status/{16,22,24} "${THEME_DIR}"/status
|
cp -r ${SRC_DIR}/src/status/{16,22,24,32} "${THEME_DIR}"/status
|
||||||
|
|
||||||
if [[ ${bold:-} == 'true' ]]; then
|
if [[ ${bold:-} == 'true' ]]; then
|
||||||
cp -r "${SRC_DIR}"/bold/status/{16,22,24} "${THEME_DIR}"/status
|
cp -r "${SRC_DIR}"/bold/status/{16,22,24} "${THEME_DIR}"/status
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Change icon color for light theme
|
# Change icon color for light theme
|
||||||
sed -i "s/#f2f2f2/#363636/g" "${THEME_DIR}"/status/{16,22,24}/*
|
sed -i "s/#f2f2f2/#363636/g" "${THEME_DIR}"/status/{16,22,24,32}/*
|
||||||
cp -r "${SRC_DIR}"/links/status/{16,22,24} "${THEME_DIR}"/status
|
cp -r "${SRC_DIR}"/links/status/{16,22,24,32} "${THEME_DIR}"/status
|
||||||
|
|
||||||
cd ${dest}
|
cd ${dest}
|
||||||
ln -s ../${name}${theme}/actions ${name}${theme}-light/actions
|
ln -s ../${name}${theme}/actions ${name}${theme}-light/actions
|
||||||
|
@ -112,7 +112,6 @@ install() {
|
||||||
ln -s ../${name}${theme}/mimes ${name}${theme}-light/mimes
|
ln -s ../${name}${theme}/mimes ${name}${theme}-light/mimes
|
||||||
ln -s ../${name}${theme}/places ${name}${theme}-light/places
|
ln -s ../${name}${theme}/places ${name}${theme}-light/places
|
||||||
ln -s ../${name}${theme}/preferences ${name}${theme}-light/preferences
|
ln -s ../${name}${theme}/preferences ${name}${theme}-light/preferences
|
||||||
ln -s ../../${name}${theme}/status/32 ${name}${theme}-light/status/32
|
|
||||||
ln -s ../../${name}${theme}/status/symbolic ${name}${theme}-light/status/symbolic
|
ln -s ../../${name}${theme}/status/symbolic ${name}${theme}-light/status/symbolic
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -121,7 +120,7 @@ install() {
|
||||||
|
|
||||||
cp -r "${SRC_DIR}"/src/actions "${THEME_DIR}"
|
cp -r "${SRC_DIR}"/src/actions "${THEME_DIR}"
|
||||||
cp -r "${SRC_DIR}"/src/apps/{22,32,symbolic} "${THEME_DIR}"/apps
|
cp -r "${SRC_DIR}"/src/apps/{22,32,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/emblems/symbolic "${THEME_DIR}"/emblems
|
||||||
cp -r "${SRC_DIR}"/src/mimes/symbolic "${THEME_DIR}"/mimes
|
cp -r "${SRC_DIR}"/src/mimes/symbolic "${THEME_DIR}"/mimes
|
||||||
cp -r "${SRC_DIR}"/src/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
|
cp -r "${SRC_DIR}"/src/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
|
||||||
|
@ -154,16 +153,17 @@ install() {
|
||||||
# Change icon color for dark theme
|
# Change icon color for dark theme
|
||||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places}/{16,22,24}/*
|
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places}/{16,22,24}/*
|
||||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/apps/{22,32}/*
|
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/apps/{22,32}/*
|
||||||
|
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/categories/22/*
|
||||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices}/32/*
|
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices}/32/*
|
||||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,emblems,devices,mimes,places,status}/symbolic/*
|
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,emblems,devices,mimes,places,status}/symbolic/*
|
||||||
|
|
||||||
cp -r "${SRC_DIR}"/links/actions/{16,22,24,32,symbolic} "${THEME_DIR}"/actions
|
cp -r "${SRC_DIR}"/links/actions/{16,22,24,32,symbolic} "${THEME_DIR}"/actions
|
||||||
cp -r "${SRC_DIR}"/links/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
|
cp -r "${SRC_DIR}"/links/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
|
||||||
cp -r "${SRC_DIR}"/links/places/{16,22,24,scalable,symbolic} "${THEME_DIR}"/places
|
cp -r "${SRC_DIR}"/links/places/{16,22,24,scalable,symbolic} "${THEME_DIR}"/places
|
||||||
cp -r "${SRC_DIR}"/links/status/symbolic "${THEME_DIR}"/status
|
|
||||||
cp -r "${SRC_DIR}"/links/apps/symbolic "${THEME_DIR}"/apps
|
cp -r "${SRC_DIR}"/links/apps/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/mimes/symbolic "${THEME_DIR}"/mimes
|
cp -r "${SRC_DIR}"/links/mimes/symbolic "${THEME_DIR}"/mimes
|
||||||
|
cp -r "${SRC_DIR}"/links/status/symbolic "${THEME_DIR}"/status
|
||||||
|
|
||||||
cd ${dest}
|
cd ${dest}
|
||||||
ln -s ../${name}${theme}/animations ${name}${theme}-dark/animations
|
ln -s ../${name}${theme}/animations ${name}${theme}-dark/animations
|
||||||
|
|
1
links/apps/scalable/Caprine.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./fbmessenger.svg
|
1
links/apps/scalable/FacebookMessenger-facebook.com.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./fbmessenger.svg
|
1
links/apps/scalable/appimagekit-caprine.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./fbmessenger.svg
|
1
links/apps/scalable/boxbuddy-rs.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
multisystem.svg
|
|
@ -0,0 +1 @@
|
||||||
|
fbmessenger.svg
|
|
@ -0,0 +1 @@
|
||||||
|
geogebra.svg
|
|
@ -0,0 +1 @@
|
||||||
|
tweetdeck.svg
|
|
@ -0,0 +1 @@
|
||||||
|
fbmessenger.svg
|
|
@ -0,0 +1 @@
|
||||||
|
twitter.svg
|
1
links/apps/scalable/com.dec05eba.gpu_screen_recorder.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
cs-drivers.svg
|
1
links/apps/scalable/com.exok.Celeste64.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
strawberry.svg
|
1
links/apps/scalable/com.fightcade.Fightcade.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./fightcade.svg
|
1
links/apps/scalable/com.github.d4nj1.tlpui.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
gnome-power-manager.svg
|
1
links/apps/scalable/com.github.halfmexican.Mingle.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
preferences-desktop-emoticons.svg
|
1
links/apps/scalable/com.helix_editor.Helix.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
helix.svg
|
1
links/apps/scalable/com.vscodium.codium-insiders.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
vscodium.svg
|
1
links/apps/scalable/deezer-enhanced.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
deezer.svg
|
1
links/apps/scalable/errands.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
com.github.georgekap1an.chores.svg
|
1
links/apps/scalable/eu.betterbird.Betterbird.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
betterbird.svg
|
1
links/apps/scalable/fcitx-mozc.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
mozc.svg
|
1
links/apps/scalable/io.github.gtkwave.GTKWave.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./gtkwave.svg
|
1
links/apps/scalable/io.github.tsmetana.mpk3-settings.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
vmpk.svg
|
1
links/apps/scalable/io.github.voxelcubes.panelcleaner.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
ubuntu-cleaner.svg
|
1
links/apps/scalable/io.gitlab.idevecore.Pomodoro.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
solanum.svg
|
1
links/apps/scalable/it.fabiodistasio.AntaresSQL.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
antaressql.svg
|
1
links/apps/scalable/it.mijorus.collector.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
gnome-documents.svg
|
1
links/apps/scalable/messengerfordekstop.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./fbmessenger.svg
|
1
links/apps/scalable/messengerfordesktop.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
fbmessenger.svg
|
1
links/apps/scalable/mozc-setup.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
mozc.svg
|
1
links/apps/scalable/mpk3-settings.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
vmpk.svg
|
1
links/apps/scalable/net.mancubus.SLADE.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
slade.svg
|
1
links/apps/scalable/net.mullvad.MullvadBrowser.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
mullvad-browser.svg
|
1
links/apps/scalable/org.gnome.Papers.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
evince.svg
|
1
links/apps/scalable/org.gnome.Prompt.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
roxterm.svg
|
1
links/apps/scalable/org.kde.palapeli.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
palapeli.svg
|
1
links/apps/scalable/org.qutebrowser.qutebrowser.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
qutebrowser.svg
|
1
links/apps/scalable/org.torproject.torbrowser-launcher.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
browser-tor.svg
|
1
links/apps/scalable/panelcleaner.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
ubuntu-cleaner.svg
|
1
links/apps/scalable/pcleaner-gui.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
ubuntu-cleaner.svg
|
1
links/apps/scalable/search.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
preferences-system-search.svg
|
1
links/apps/scalable/solstice-facebook-facebook-messenger.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
FacebookMessenger-facebook.com.svg
|
1
links/apps/scalable/sqldeveloper.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
oracle-sqldeveloper.svg
|
1
links/apps/scalable/vscodium-insiders.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
vscodium.svg
|
1
links/categories/22/applications-accessories-symbolic.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
applications-utilities-symbolic.svg
|
1
links/categories/22/applications-network-symbolic.svg
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
./applications-internet-symbolic.svg
|
6
src/actions/22/bookmarks-symbolic.svg
Normal 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 |
|
@ -1,4 +1,4 @@
|
||||||
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||||
<rect x="6" y="14" width="4" height=".418" ry=".209" fill="#353535" opacity=".45"/>
|
<rect x="6" y="14" width="4" height=".418" ry=".209" fill="#363636" opacity=".45"/>
|
||||||
<path d="m5 0c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h6c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-2-2-2zm0.025391 1h0.97461c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1h0.97461c0.56808 0 1.0254 0.45731 1.0254 1.0254v11.949c0 0.56808-0.45731 1.0254-1.0254 1.0254h-5.9492c-0.56808 0-1.0254-0.45731-1.0254-1.0254v-11.949c0-0.56808 0.45731-1.0254 1.0254-1.0254z" fill="#353535"/>
|
<path d="m5 0c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h6c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-2-2-2zm0.025391 1h0.97461c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1h0.97461c0.56808 0 1.0254 0.45731 1.0254 1.0254v11.949c0 0.56808-0.45731 1.0254-1.0254 1.0254h-5.9492c-0.56808 0-1.0254-0.45731-1.0254-1.0254v-11.949c0-0.56808 0.45731-1.0254 1.0254-1.0254z" fill="#363636"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 551 B |
6
src/apps/22/applications-system-symbolic.svg
Normal 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 |
8
src/apps/22/preferences-system-symbolic.svg
Normal 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:#232629;
|
||||||
|
}</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 |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.3 KiB |
2
src/apps/scalable/World-of-Warcraft.svg
Executable file → Normal file
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 14 KiB |
1
src/apps/scalable/antaressql.svg
Normal file
After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.1 KiB |
1
src/apps/scalable/arduino.svg
Normal file
After Width: | Height: | Size: 8.4 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 22 KiB |
1
src/apps/scalable/beeper.svg
Normal file
After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
1
src/apps/scalable/betterbird.svg
Normal file
After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 7 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 9.2 KiB |
1
src/apps/scalable/clash.svg
Normal file
After Width: | Height: | Size: 8.1 KiB |
1
src/apps/scalable/claude.svg
Normal file
After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 9 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.4 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
1
src/apps/scalable/com.github.mtkennerly.ludusavi.svg
Normal file
After Width: | Height: | Size: 10 KiB |
1
src/apps/scalable/com.leinardi.gst.svg
Normal file
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
1
src/apps/scalable/com.ticktick.TickTick.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |
1
src/apps/scalable/copilot.svg
Normal file
After Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 8.2 KiB |
1
src/apps/scalable/cs-actions.svg
Normal file
After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |