From a61401dc85052412eadef2f582381f3764b3df03 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 17 Apr 2026 11:01:25 -0400 Subject: [PATCH 01/16] [bin] Add script to re-index Notify.app --- bin/.local/bin/notify-add-indexes.sh | 52 ++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 bin/.local/bin/notify-add-indexes.sh diff --git a/bin/.local/bin/notify-add-indexes.sh b/bin/.local/bin/notify-add-indexes.sh new file mode 100755 index 0000000..348da2c --- /dev/null +++ b/bin/.local/bin/notify-add-indexes.sh @@ -0,0 +1,52 @@ +#!/bin/bash +# notify-add-indexes.sh - Add recommended indexes to Notify SQLite database +# Usage: ./notify-add-indexes.sh [db_path] [--cleanup] +# +# Options: +# --cleanup Also drops the now-redundant message_by_time index +# +# Default path for Flatpak: ~/.var/app/com.ranfdev.Notify/data/com.ranfdev.Notify.sqlite +# Default path for local build: ~/.local/share/com.ranfdev.Notify.sqlite +# +# Usage: +#./notify-add-indexes.sh # Just add indexes +#./notify-add-indexes.sh --cleanup # Add indexes + remove old one +#./notify-add-indexes.sh ~/.local/share/com.ranfdev.Notify.sqlite --cleanup +DB_PATH="" +CLEANUP=false +# Parse arguments +for arg in "$@"; do + case $arg in + --cleanup) + CLEANUP=true + ;; + *) + DB_PATH="$arg" + ;; + esac +done +DB_PATH="${DB_PATH:-$HOME/.var/app/com.ranfdev.Notify/data/com.ranfdev.Notify.sqlite}" +if [ ! -f "$DB_PATH" ]; then + echo "Error: Database not found at $DB_PATH" + exit 1 +fi +echo "Database: $DB_PATH" +echo "" +# Create composite index for message(server, topic) - used by delete_messages +echo "Creating message_server_topic index..." +sqlite3 "$DB_PATH" "CREATE INDEX IF NOT EXISTS message_server_topic ON message(server, topic);" +# Create covering index for list_messages query +echo "Creating message_list_covering index..." +sqlite3 "$DB_PATH" "CREATE INDEX IF NOT EXISTS message_list_covering ON message(server, topic, data ->> '\$.time');" +# Optional: drop redundant index +if [ "$CLEANUP" = true ]; then + echo "" + echo "Dropping redundant message_by_time index..." + sqlite3 "$DB_PATH" "DROP INDEX IF EXISTS message_by_time;" +fi +# Verify +echo "" +echo "Current indexes:" +sqlite3 "$DB_PATH" "SELECT name FROM sqlite_master WHERE type='index' ORDER BY name;" +echo "" +echo "Done!" From 59530ab13c36a74be08e061aad3ea87e20c16b54 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 4 May 2026 15:57:11 -0400 Subject: [PATCH 02/16] [zsh] Try to fix ssh problems --- bash/.aliases | 5 +++-- zsh/.zshrc | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bash/.aliases b/bash/.aliases index 676d976..f1aa5c7 100644 --- a/bash/.aliases +++ b/bash/.aliases @@ -19,8 +19,9 @@ alias gpghup='gpgconf --kill gpg-agent && gpgconf --launch gpg-agent' alias dotup='(cd ~/.dotfiles && git pull public master && make)' alias djlogs="tail -f -n 50 /tmp/django.log" alias clogs="tail -f -n 50 /tmp/celery.log" -alias pullkeys="SSH_ASKPASS_REQUIRE='' scp -r powellc@nfs.service:~/.gnupg ~/" -alias pullvar="SSH_ASKPASS_REQUIRE='' scp -r powellc@nfs.service:~/var ~/" +#alias pullkeys="SSH_ASKPASS_REQUIRE='' scp -r powellc@nfs.service:~/.gnupg ~/" +#alias pullvar="SSH_ASKPASS_REQUIRE='' scp -r powellc@nfs.service:~/var ~/" +#alias sshp="SSH_ASKPASS_REQUIRE='' ssh $*" # Vrobbler shortcuts diff --git a/zsh/.zshrc b/zsh/.zshrc index de7a697..654e862 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -6,7 +6,7 @@ export ZSH="$HOME/.oh-my-zsh" export GPG_TTY=$(tty) export SSH_ASKPASS="$HOME/.local/bin/ssh-askpass-load-keys" -export SSH_ASKPASS_REQUIRE=force +export SSH_ASKPASS_REQUIRE="" #force # This is a hack to make poetry not hang export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring @@ -86,4 +86,3 @@ source "$HOME/.aliases" # Added by LM Studio CLI (lms) export PATH="$PATH:/home/powellc/.lmstudio/bin" # End of LM Studio CLI section - From 1377c52fdb4f53c3894101b7536b33d3b91f03f4 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 4 May 2026 15:57:48 -0400 Subject: [PATCH 03/16] [git] Ignore agent binaries and update signing key --- git/.gitconfig-hungryroot | 2 +- git/.gitignore_global | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/git/.gitconfig-hungryroot b/git/.gitconfig-hungryroot index bc62ae4..daa2276 100644 --- a/git/.gitconfig-hungryroot +++ b/git/.gitconfig-hungryroot @@ -1,3 +1,3 @@ [user] email = colin.powell@hungryroot.com - signingkey = 087BAEDCEB065D3039A6B0840B9C9536EC0B6A3B + signingkey = BB257E06080FE639030D9291819A121699A1FD39 diff --git a/git/.gitignore_global b/git/.gitignore_global index dbca01b..2663604 100644 --- a/git/.gitignore_global +++ b/git/.gitignore_global @@ -37,3 +37,7 @@ ssh/.ssh/known_hosts emoijis SCRATCH.org personal-docs +bin/.local/bin/agent +bin/.local/bin/claude +bin/.local/bin/cursor +bin/.local/bin/cursor-agent From 509ac4a0cfe8ae687bf841b0102a933006bba557 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 4 May 2026 15:58:02 -0400 Subject: [PATCH 04/16] [pass] Add apple password --- .../.password-store/personal/apple.gpg | Bin 691 -> 738 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/password-store/.password-store/personal/apple.gpg b/password-store/.password-store/personal/apple.gpg index 64cb40ecf14c98aad6d42987d2f76255ce000f1e..399a42b78d056a526f803e3e450727e8157cba13 100644 GIT binary patch literal 738 zcmV<80v-K@0t^FCms>i{cG18A5C3AztB5-1uG$+WQYD^k3gXTt>zjN-WA@l4O`$Sa zwi#gFqfZQL)1;Z&BBZZ-zbC-dDoUXD^)@8d1Ls!}CKYF}xI67q#lTG*i#k@Z;aCfF+uZ@F<>@&V z@XBCpTgn5f>+pdaBE&H4dbzqAA{0Fz#?S9o1nj1OyK>z7gXBtp60hCHC%Czt zZi&we;B)TKrKR7Vnh<+P-j3Ra47A3C9}_Op7l`la7*3d;=O`)^FliR~Bm%1CuH0i#91i8C=j*fS<2 z8B5Cm0uwGL`&D0^RhV)6o@1y~lkj8`p!&NS_(F$aF`F9 ze~(9>ET~z7kC};39Xj;j(w|>8y{G&=Y0@}HO#!H#F=;4fANbPFBK~!(1_I^fqXo$? zV`2nU5CQwSd}g-<)xm!$x;le5agTs6Gz|LK5?6Qf(pa$KkzH}W zDW7d_DYz5%0eguhkV$+X4m#c~LM-Umz+B~Mn;5!ag9!2HEyksEQx|ehctOe0PpnPm zGOd91wX;c{lXpYR7`^V;QrFspIh(}u~x1AHO(4IW6h5<|gYDpT{# U^Ccy*7GpOKVTMqc(eoFbotR5-6#xJL literal 691 zcmV;k0!;md0t^FCms>i{cG18A5CEF22g6?D)+V$=Rpi;E*#7~fV5$H`n*JM>FUc*o zHzX^OZ#kHAHIA7sz^GZO2D*%gZt2a~2pGp>Q+rrE`ta}xk&adclX;sIlr7`(bX?$Z z1D$?@3F1O>OS(3d6^|R6{13M;(F;q(D)7IJ`Wy%dVpVOHOBs-GvS91*!Q`lxbnom7 zKwL|Fh0C8I=n=D|dYhw4=w{QGPk+)(^1hu)yI6N`2{m_?kV$dw+(cCuH&=V%T@@|K zT_NqFX;A~)pm86Tzb=HpV9<&9lm@3UA)+?0U?S$q-qL;@nMxev3in%7luQzFSA$4I zBxhJP=>NBG{!y_S(Y-k%1IQa9HmZ--xvTt?%9}b6N}4g#+d9GhFC5^NUVMCVC{2%Q z@OBLb2iy0Juz+Mgo~zsA2 zWj>&#yq0fCe}U@2I92aC|6jK0lQ)^1w@TQ&E5(@S|Z@#t#qS+86Q}!ynw4YZMg?RF6;yB)duu9 z1fHMrZSIl1U47zan&_=#GJk+g=JQ3;nGAo!ZLbc+)+EgQpoCu-NuCT#yhm9=8~OMq z>4TA-A!+O3bPF#!Ao0?o0e?F;^;A}eE)-g&c4b(Uld)mKIs#rxx6LFj382%6yj~%l zOQLMaCjwvJdb-%7N@cqIQ(Uh)zeNhXPn1J&R7P&&I27dQ3*JggLdB6lSwQ9)K+reC zsahJ0cK=}ex>Fx*Za*xn)YysXS0}dp);lkf_$XHnr&~#WXDCP?c&p+iKUszAS$#A| ZH1D<1Vam0MiW0EQ7KONe(|6UT(MV$#N(TS{ From b44666e31ecb750ea89bd66ff9a1cd39f5c6d387 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 24 May 2026 11:21:15 -0400 Subject: [PATCH 05/16] [systemd] Add a node@ service file --- systemd/.config/systemd/user/node@.service | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 systemd/.config/systemd/user/node@.service diff --git a/systemd/.config/systemd/user/node@.service b/systemd/.config/systemd/user/node@.service new file mode 100644 index 0000000..db9b37c --- /dev/null +++ b/systemd/.config/systemd/user/node@.service @@ -0,0 +1,18 @@ +[Unit] +Description=Node.js dev server for %I +After=network-online.target +Wants=network-online.target + +[Service] +Type=simple +Environment=PATH=%h/.local/bin:/home/linuxbrew/.linuxbrew/bin:/usr/local/bin:/usr/bin:/bin:/home/powellc/.asdf/shims +EnvironmentFile=%h/.local/etc/node/%i.env +ExecStartPre=/bin/bash -lc 'cd "$NODE_PATH" && if [ -f docker-compose.yml ]; then docker-compose start; fi' +ExecStart=/bin/bash -c 'cd "$NODE_PATH" && exec direnv exec "$NODE_PATH" just run' +Restart=on-failure +RestartSec=2 +StandardOutput=append:/tmp/node.log +StandardError=inherit + +[Install] +WantedBy=default.target From 85876213df5d3e2a7a52824adee3f324873e76a8 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 24 May 2026 11:24:26 -0400 Subject: [PATCH 06/16] [systemd] Add retroarch webdav playlog sync --- .../.config/systemd/user/retroarch-playlogs-sync.path | 9 +++++++++ .../.config/systemd/user/retroarch-playlogs-sync.service | 6 ++++++ .../.config/systemd/user/retroarch-playlogs-sync.timer | 9 +++++++++ 3 files changed, 24 insertions(+) create mode 100644 systemd/.config/systemd/user/retroarch-playlogs-sync.path create mode 100644 systemd/.config/systemd/user/retroarch-playlogs-sync.service create mode 100644 systemd/.config/systemd/user/retroarch-playlogs-sync.timer diff --git a/systemd/.config/systemd/user/retroarch-playlogs-sync.path b/systemd/.config/systemd/user/retroarch-playlogs-sync.path new file mode 100644 index 0000000..4295a58 --- /dev/null +++ b/systemd/.config/systemd/user/retroarch-playlogs-sync.path @@ -0,0 +1,9 @@ +[Unit] +Description=Watch RetroArch playlogs for changes + +[Path] +PathModified=%h/var/retroarch/playlogs/ +Unit=retroarch-playlogs-sync.service + +[Install] +WantedBy=default.target diff --git a/systemd/.config/systemd/user/retroarch-playlogs-sync.service b/systemd/.config/systemd/user/retroarch-playlogs-sync.service new file mode 100644 index 0000000..b4e8143 --- /dev/null +++ b/systemd/.config/systemd/user/retroarch-playlogs-sync.service @@ -0,0 +1,6 @@ +[Unit] +Description=Sync RetroArch playlogs to WebDAV + +[Service] +Type=oneshot +ExecStart=rclone copy %h/var/retroarch/playlogs/ retroarch-dav:/playlogs/ --retries 3 --verbose diff --git a/systemd/.config/systemd/user/retroarch-playlogs-sync.timer b/systemd/.config/systemd/user/retroarch-playlogs-sync.timer new file mode 100644 index 0000000..d6d0627 --- /dev/null +++ b/systemd/.config/systemd/user/retroarch-playlogs-sync.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Periodic RetroArch playlogs sync (fallback) + +[Timer] +OnCalendar=*:0/30 +Persistent=true + +[Install] +WantedBy=default.target From c5d04205937c1f36c008809aaa69fde79a71a181 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 29 May 2026 08:20:46 -0400 Subject: [PATCH 07/16] [systemd] Fix syncthing calling params --- bin/.local/bin/webcam-build-timelapses | 3 +++ systemd/.config/systemd/user/syncthing.service | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/.local/bin/webcam-build-timelapses b/bin/.local/bin/webcam-build-timelapses index 9bc653f..ead0dae 100755 --- a/bin/.local/bin/webcam-build-timelapses +++ b/bin/.local/bin/webcam-build-timelapses @@ -31,6 +31,9 @@ WEBCAMS=( "firewood" "garden" "diningroom" + "office" + "office_birds" + "ducks" ) TIMELAPSE_SCRIPT="/usr/local/bin/make_timelapse" diff --git a/systemd/.config/systemd/user/syncthing.service b/systemd/.config/systemd/user/syncthing.service index 47b28eb..5dc734a 100644 --- a/systemd/.config/systemd/user/syncthing.service +++ b/systemd/.config/systemd/user/syncthing.service @@ -4,7 +4,7 @@ Documentation=man:syncthing(1) After=network.target [Service] -ExecStart=/usr/bin/syncthing -no-browser -no-restart +ExecStart=/usr/bin/syncthing --no-browser --no-restart Restart=on-failure SuccessExitStatus=3 4 RestartForceExitStatus=3 4 From 20fc1e4e75145f79bfe26e8d6951ba281dc2deaf Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 1 Jun 2026 09:35:36 -0400 Subject: [PATCH 08/16] [systemd] Fix playlog sync call --- systemd/.config/systemd/user/retroarch-playlogs-sync.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/.config/systemd/user/retroarch-playlogs-sync.service b/systemd/.config/systemd/user/retroarch-playlogs-sync.service index b4e8143..d6d35a8 100644 --- a/systemd/.config/systemd/user/retroarch-playlogs-sync.service +++ b/systemd/.config/systemd/user/retroarch-playlogs-sync.service @@ -3,4 +3,4 @@ Description=Sync RetroArch playlogs to WebDAV [Service] Type=oneshot -ExecStart=rclone copy %h/var/retroarch/playlogs/ retroarch-dav:/playlogs/ --retries 3 --verbose +ExecStart=rclone copy %h/var/retroarch/playlogs/ retroarch-dav:/ --max-depth 1 --retries 3 --verbose --max-age 5m From 6c973853c68c5c5766936ad894b4476d96bebb95 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:03:09 -0400 Subject: [PATCH 09/16] [gnome] Update extensions --- .../BWClipboard.js | 34 - .../README.md | 22 +- .../BingWallpaper@ineffable-gmail.com/blur.js | 159 ---- .../carousel.js | 203 ------ .../extension.js | 53 +- .../locale/fr/LC_MESSAGES/BingWallpaper.mo | Bin 2849 -> 8117 bytes .../locale/fr_FR/LC_MESSAGES/BingWallpaper.mo | Bin 4792 -> 8117 bytes .../metadata.json | 6 +- .../prefs.js | 65 +- .../ui/carousel4.ui | 212 ------ .../ui/prefsadw.ui | 80 -- .../utils.js | 68 +- .../Vitals@CoreCoding.com/extension.js | 295 +++++++- .../icons/flags/1x1/ad.svg | 148 ++++ .../icons/flags/1x1/ae.svg | 6 + .../icons/flags/1x1/af.svg | 81 ++ .../icons/flags/1x1/ag.svg | 14 + .../icons/flags/1x1/ai.svg | 29 + .../icons/flags/1x1/al.svg | 5 + .../icons/flags/1x1/am.svg | 5 + .../icons/flags/1x1/ao.svg | 13 + .../icons/flags/1x1/aq.svg | 5 + .../icons/flags/1x1/ar.svg | 32 + .../icons/flags/1x1/arab.svg | 109 +++ .../icons/flags/1x1/as.svg | 73 ++ .../icons/flags/1x1/asean.svg | 13 + .../icons/flags/1x1/at.svg | 4 + .../icons/flags/1x1/au.svg | 8 + .../icons/flags/1x1/aw.svg | 186 +++++ .../icons/flags/1x1/ax.svg | 18 + .../icons/flags/1x1/az.svg | 8 + .../icons/flags/1x1/ba.svg | 12 + .../icons/flags/1x1/bb.svg | 6 + .../icons/flags/1x1/bd.svg | 4 + .../icons/flags/1x1/be.svg | 7 + .../icons/flags/1x1/bf.svg | 7 + .../icons/flags/1x1/bg.svg | 5 + .../icons/flags/1x1/bh.svg | 4 + .../icons/flags/1x1/bi.svg | 15 + .../icons/flags/1x1/bj.svg | 14 + .../icons/flags/1x1/bl.svg | 7 + .../icons/flags/1x1/bm.svg | 97 +++ .../icons/flags/1x1/bn.svg | 36 + .../icons/flags/1x1/bo.svg | 674 +++++++++++++++++ .../icons/flags/1x1/bq.svg | 5 + .../icons/flags/1x1/br.svg | 45 ++ .../icons/flags/1x1/bs.svg | 13 + .../icons/flags/1x1/bt.svg | 89 +++ .../icons/flags/1x1/bv.svg | 13 + .../icons/flags/1x1/bw.svg | 7 + .../icons/flags/1x1/by.svg | 18 + .../icons/flags/1x1/bz.svg | 145 ++++ .../icons/flags/1x1/ca.svg | 4 + .../icons/flags/1x1/cc.svg | 19 + .../icons/flags/1x1/cd.svg | 12 + .../icons/flags/1x1/cefta.svg | 13 + .../icons/flags/1x1/cf.svg | 15 + .../icons/flags/1x1/cg.svg | 12 + .../icons/flags/1x1/ch.svg | 9 + .../icons/flags/1x1/ci.svg | 7 + .../icons/flags/1x1/ck.svg | 9 + .../icons/flags/1x1/cl.svg | 13 + .../icons/flags/1x1/cm.svg | 15 + .../icons/flags/1x1/cn.svg | 11 + .../icons/flags/1x1/co.svg | 7 + .../icons/flags/1x1/cp.svg | 7 + .../icons/flags/1x1/cr.svg | 7 + .../icons/flags/1x1/cu.svg | 13 + .../icons/flags/1x1/cv.svg | 13 + .../icons/flags/1x1/cw.svg | 14 + .../icons/flags/1x1/cx.svg | 15 + .../icons/flags/1x1/cy.svg | 6 + .../icons/flags/1x1/cz.svg | 5 + .../icons/flags/1x1/de.svg | 5 + .../icons/flags/1x1/dg.svg | 130 ++++ .../icons/flags/1x1/dj.svg | 13 + .../icons/flags/1x1/dk.svg | 5 + .../icons/flags/1x1/dm.svg | 152 ++++ .../icons/flags/1x1/do.svg | 122 ++++ .../icons/flags/1x1/dz.svg | 5 + .../icons/flags/1x1/eac.svg | 48 ++ .../icons/flags/1x1/ec.svg | 138 ++++ .../icons/flags/1x1/ee.svg | 5 + .../icons/flags/1x1/eg.svg | 38 + .../icons/flags/1x1/eh.svg | 11 + .../icons/flags/1x1/er.svg | 13 + .../icons/flags/1x1/es-ct.svg | 4 + .../icons/flags/1x1/es-ga.svg | 187 +++++ .../icons/flags/1x1/es-pv.svg | 5 + .../icons/flags/1x1/es.svg | 547 ++++++++++++++ .../icons/flags/1x1/et.svg | 14 + .../icons/flags/1x1/eu.svg | 28 + .../icons/flags/1x1/fi.svg | 5 + .../icons/flags/1x1/fj.svg | 123 ++++ .../icons/flags/1x1/fk.svg | 89 +++ .../icons/flags/1x1/fm.svg | 11 + .../icons/flags/1x1/fo.svg | 12 + .../icons/flags/1x1/fr.svg | 5 + .../icons/flags/1x1/ga.svg | 7 + .../icons/flags/1x1/gb-eng.svg | 5 + .../icons/flags/1x1/gb-nir.svg | 131 ++++ .../icons/flags/1x1/gb-sct.svg | 4 + .../icons/flags/1x1/gb-wls.svg | 9 + .../icons/flags/1x1/gb.svg | 7 + .../icons/flags/1x1/gd.svg | 27 + .../icons/flags/1x1/ge.svg | 6 + .../icons/flags/1x1/gf.svg | 5 + .../icons/flags/1x1/gg.svg | 9 + .../icons/flags/1x1/gh.svg | 6 + .../icons/flags/1x1/gi.svg | 32 + .../icons/flags/1x1/gl.svg | 4 + .../icons/flags/1x1/gm.svg | 9 + .../icons/flags/1x1/gn.svg | 7 + .../icons/flags/1x1/gp.svg | 5 + .../icons/flags/1x1/gq.svg | 23 + .../icons/flags/1x1/gr.svg | 16 + .../icons/flags/1x1/gs.svg | 132 ++++ .../icons/flags/1x1/gt.svg | 204 ++++++ .../icons/flags/1x1/gu.svg | 19 + .../icons/flags/1x1/gw.svg | 15 + .../icons/flags/1x1/gy.svg | 9 + .../icons/flags/1x1/hk.svg | 8 + .../icons/flags/1x1/hm.svg | 8 + .../icons/flags/1x1/hn.svg | 18 + .../icons/flags/1x1/hr.svg | 56 ++ .../icons/flags/1x1/ht.svg | 116 +++ .../icons/flags/1x1/hu.svg | 7 + .../icons/flags/1x1/ic.svg | 7 + .../icons/flags/1x1/id.svg | 4 + .../icons/flags/1x1/ie.svg | 7 + .../icons/flags/1x1/il.svg | 14 + .../icons/flags/1x1/im.svg | 36 + .../icons/flags/1x1/in.svg | 25 + .../icons/flags/1x1/io.svg | 130 ++++ .../icons/flags/1x1/iq.svg | 10 + .../icons/flags/1x1/ir.svg | 219 ++++++ .../icons/flags/1x1/is.svg | 12 + .../icons/flags/1x1/it.svg | 7 + .../icons/flags/1x1/je.svg | 62 ++ .../icons/flags/1x1/jm.svg | 8 + .../icons/flags/1x1/jo.svg | 16 + .../icons/flags/1x1/jp.svg | 11 + .../icons/flags/1x1/ke.svg | 23 + .../icons/flags/1x1/kg.svg | 4 + .../icons/flags/1x1/kh.svg | 61 ++ .../icons/flags/1x1/ki.svg | 36 + .../icons/flags/1x1/km.svg | 16 + .../icons/flags/1x1/kn.svg | 14 + .../icons/flags/1x1/kp.svg | 15 + .../icons/flags/1x1/kr.svg | 17 + .../icons/flags/1x1/kw.svg | 13 + .../icons/flags/1x1/ky.svg | 103 +++ .../icons/flags/1x1/kz.svg | 36 + .../icons/flags/1x1/la.svg | 12 + .../icons/flags/1x1/lb.svg | 15 + .../icons/flags/1x1/lc.svg | 8 + .../icons/flags/1x1/li.svg | 43 ++ .../icons/flags/1x1/lk.svg | 22 + .../icons/flags/1x1/lr.svg | 14 + .../icons/flags/1x1/ls.svg | 8 + .../icons/flags/1x1/lt.svg | 7 + .../icons/flags/1x1/lu.svg | 5 + .../icons/flags/1x1/lv.svg | 6 + .../icons/flags/1x1/ly.svg | 13 + .../icons/flags/1x1/ma.svg | 4 + .../icons/flags/1x1/mc.svg | 6 + .../icons/flags/1x1/md.svg | 71 ++ .../icons/flags/1x1/me.svg | 118 +++ .../icons/flags/1x1/mf.svg | 5 + .../icons/flags/1x1/mg.svg | 7 + .../icons/flags/1x1/mh.svg | 8 + .../icons/flags/1x1/mk.svg | 5 + .../icons/flags/1x1/ml.svg | 7 + .../icons/flags/1x1/mm.svg | 10 + .../icons/flags/1x1/mn.svg | 14 + .../icons/flags/1x1/mo.svg | 9 + .../icons/flags/1x1/mp.svg | 86 +++ .../icons/flags/1x1/mq.svg | 5 + .../icons/flags/1x1/mr.svg | 6 + .../icons/flags/1x1/ms.svg | 25 + .../icons/flags/1x1/mt.svg | 56 ++ .../icons/flags/1x1/mu.svg | 8 + .../icons/flags/1x1/mv.svg | 6 + .../icons/flags/1x1/mw.svg | 15 + .../icons/flags/1x1/mx.svg | 377 ++++++++++ .../icons/flags/1x1/my.svg | 18 + .../icons/flags/1x1/mz.svg | 21 + .../icons/flags/1x1/na.svg | 16 + .../icons/flags/1x1/nc.svg | 12 + .../icons/flags/1x1/ne.svg | 6 + .../icons/flags/1x1/nf.svg | 11 + .../icons/flags/1x1/ng.svg | 6 + .../icons/flags/1x1/ni.svg | 129 ++++ .../icons/flags/1x1/nl.svg | 5 + .../icons/flags/1x1/no.svg | 7 + .../icons/flags/1x1/np.svg | 18 + .../icons/flags/1x1/nr.svg | 12 + .../icons/flags/1x1/nu.svg | 10 + .../icons/flags/1x1/nz.svg | 36 + .../icons/flags/1x1/om.svg | 115 +++ .../icons/flags/1x1/pa.svg | 13 + .../icons/flags/1x1/pc.svg | 33 + .../icons/flags/1x1/pe.svg | 4 + .../icons/flags/1x1/pf.svg | 18 + .../icons/flags/1x1/pg.svg | 16 + .../icons/flags/1x1/ph.svg | 6 + .../icons/flags/1x1/pk.svg | 15 + .../icons/flags/1x1/pl.svg | 6 + .../icons/flags/1x1/pm.svg | 5 + .../icons/flags/1x1/pn.svg | 53 ++ .../icons/flags/1x1/pr.svg | 13 + .../icons/flags/1x1/ps.svg | 6 + .../icons/flags/1x1/pt.svg | 57 ++ .../icons/flags/1x1/pw.svg | 11 + .../icons/flags/1x1/py.svg | 156 ++++ .../icons/flags/1x1/qa.svg | 4 + .../icons/flags/1x1/re.svg | 7 + .../icons/flags/1x1/ro.svg | 7 + .../icons/flags/1x1/rs.svg | 296 ++++++++ .../icons/flags/1x1/ru.svg | 5 + .../icons/flags/1x1/rw.svg | 13 + .../icons/flags/1x1/sa.svg | 25 + .../icons/flags/1x1/sb.svg | 13 + .../icons/flags/1x1/sc.svg | 7 + .../icons/flags/1x1/sd.svg | 13 + .../icons/flags/1x1/se.svg | 4 + .../icons/flags/1x1/sg.svg | 13 + .../icons/flags/1x1/sh-ac.svg | 690 ++++++++++++++++++ .../icons/flags/1x1/sh-hl.svg | 164 +++++ .../icons/flags/1x1/sh-ta.svg | 76 ++ .../icons/flags/1x1/sh.svg | 7 + .../icons/flags/1x1/si.svg | 18 + .../icons/flags/1x1/sj.svg | 7 + .../icons/flags/1x1/sk.svg | 9 + .../icons/flags/1x1/sl.svg | 12 + .../icons/flags/1x1/sm.svg | 73 ++ .../icons/flags/1x1/sn.svg | 8 + .../icons/flags/1x1/so.svg | 11 + .../icons/flags/1x1/sr.svg | 6 + .../icons/flags/1x1/ss.svg | 8 + .../icons/flags/1x1/st.svg | 16 + .../icons/flags/1x1/sv.svg | 593 +++++++++++++++ .../icons/flags/1x1/sx.svg | 56 ++ .../icons/flags/1x1/sy.svg | 6 + .../icons/flags/1x1/sz.svg | 34 + .../icons/flags/1x1/tc.svg | 50 ++ .../icons/flags/1x1/td.svg | 7 + .../icons/flags/1x1/tf.svg | 15 + .../icons/flags/1x1/tg.svg | 14 + .../icons/flags/1x1/th.svg | 7 + .../icons/flags/1x1/tj.svg | 26 + .../icons/flags/1x1/tk.svg | 5 + .../icons/flags/1x1/tl.svg | 13 + .../icons/flags/1x1/tm.svg | 205 ++++++ .../icons/flags/1x1/tn.svg | 4 + .../icons/flags/1x1/to.svg | 10 + .../icons/flags/1x1/tr.svg | 8 + .../icons/flags/1x1/tt.svg | 7 + .../icons/flags/1x1/tv.svg | 9 + .../icons/flags/1x1/tw.svg | 32 + .../icons/flags/1x1/tz.svg | 15 + .../icons/flags/1x1/ua.svg | 6 + .../icons/flags/1x1/ug.svg | 30 + .../icons/flags/1x1/um.svg | 9 + .../icons/flags/1x1/un.svg | 16 + .../icons/flags/1x1/us.svg | 9 + .../icons/flags/1x1/uy.svg | 28 + .../icons/flags/1x1/uz.svg | 30 + .../icons/flags/1x1/va.svg | 190 +++++ .../icons/flags/1x1/vc.svg | 8 + .../icons/flags/1x1/ve.svg | 26 + .../icons/flags/1x1/vg.svg | 59 ++ .../icons/flags/1x1/vi.svg | 28 + .../icons/flags/1x1/vn.svg | 11 + .../icons/flags/1x1/vu.svg | 21 + .../icons/flags/1x1/wf.svg | 5 + .../icons/flags/1x1/ws.svg | 7 + .../icons/flags/1x1/xk.svg | 5 + .../icons/flags/1x1/xx.svg | 4 + .../icons/flags/1x1/ye.svg | 7 + .../icons/flags/1x1/yt.svg | 5 + .../icons/flags/1x1/za.svg | 17 + .../icons/flags/1x1/zm.svg | 27 + .../icons/flags/1x1/zw.svg | 21 + .../icons/flags/flag-icons.LICENSE | 23 + .../locale/ka/LC_MESSAGES/vitals.mo | Bin 0 -> 18533 bytes .../Vitals@CoreCoding.com/menuItem.js | 9 +- .../Vitals@CoreCoding.com/metadata.json | 2 +- .../extensions/Vitals@CoreCoding.com/prefs.js | 7 +- .../extensions/Vitals@CoreCoding.com/prefs.ui | 68 +- .../schemas/gschemas.compiled | Bin 1972 -> 2084 bytes ....gnome.shell.extensions.vitals.gschema.xml | 8 + .../Vitals@CoreCoding.com/sensors.js | 10 +- .../Vitals@CoreCoding.com/values.js | 63 +- .../components/applications.js | 46 +- .../blur-my-shell@aunetx/components/panel.js | 49 +- .../conveniences/dummy_pipeline.js | 9 +- .../blur-my-shell@aunetx/conveniences/keys.js | 7 +- .../conveniences/settings_updater.js | 3 +- .../conveniences/utils.js | 6 +- .../blur-my-shell@aunetx/effects/corner.glsl | 5 +- .../blur-my-shell@aunetx/effects/corner.js | 13 + .../blur-my-shell@aunetx/effects/effects.js | 66 +- .../effects/luminosity.glsl | 33 + .../effects/luminosity.js | 141 ++++ .../effects/monte_carlo_blur.glsl | 4 +- .../effects/native_dynamic_gaussian_blur.js | 36 +- .../blur-my-shell@aunetx/extension.js | 25 + .../af/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 7989 -> 7817 bytes .../ar/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16821 -> 17338 bytes .../bg/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16153 -> 15897 bytes .../ca/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17615 -> 17426 bytes .../cs/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16877 -> 16716 bytes .../de/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17826 -> 17602 bytes .../el/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 15541 -> 15294 bytes .../eo/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 0 -> 367 bytes .../es/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17367 -> 17198 bytes .../fi/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 10156 -> 9980 bytes .../fr/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17531 -> 17362 bytes .../hi/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 25812 -> 25486 bytes .../hr/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 8690 -> 8514 bytes .../hu/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17520 -> 17350 bytes .../id/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16481 -> 16293 bytes .../it/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17361 -> 17199 bytes .../ja/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 18455 -> 18237 bytes .../ka/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 6964 -> 6826 bytes .../ko/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 14985 -> 14804 bytes .../nb_NO/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 7966 -> 7795 bytes .../nl/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17331 -> 17158 bytes .../pl/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 15190 -> 15041 bytes .../pt/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16967 -> 16752 bytes .../pt_BR/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17153 -> 16986 bytes .../ro/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 10249 -> 10058 bytes .../ru/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 22437 -> 22226 bytes .../sl/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 11678 -> 11489 bytes .../sv/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 16934 -> 16753 bytes .../ta/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 28773 -> 28451 bytes .../tr/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 17288 -> 17095 bytes .../uk/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 21663 -> 21475 bytes .../vi/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 18415 -> 18184 bytes .../zh_CN/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 15517 -> 15371 bytes .../zh_TW/LC_MESSAGES/blur-my-shell@aunetx.mo | Bin 15248 -> 15054 bytes .../blur-my-shell@aunetx/metadata.json | 2 +- .../preferences/applications.js | 19 +- .../blur-my-shell@aunetx/preferences/dash.js | 11 +- .../blur-my-shell@aunetx/preferences/panel.js | 11 +- .../pipelines_management/effect_row.js | 12 +- .../extensions/blur-my-shell@aunetx/prefs.js | 12 + .../schemas/gschemas.compiled | Bin 9976 -> 10240 bytes ...shell.extensions.blur-my-shell.gschema.xml | 24 +- .../blur-my-shell@aunetx/ui/applications.ui | 47 ++ .../blur-my-shell@aunetx/ui/dash.ui | 34 +- .../blur-my-shell@aunetx/ui/effects-dialog.ui | 5 + .../blur-my-shell@aunetx/ui/panel.ui | 32 + .../metadata.json | 4 +- .../gsconnect@andyholmes.github.io/config.js | 2 +- .../gsconnect-preferences | 115 +-- .../gsconnect-preferences.js | 102 +++ .../org.gnome.Shell.Extensions.GSConnect.mo | Bin 17085 -> 17467 bytes .../org.gnome.Shell.Extensions.GSConnect.mo | Bin 18476 -> 20126 bytes .../org.gnome.Shell.Extensions.GSConnect.mo | Bin 0 -> 19498 bytes .../metadata.json | 5 +- .../gsconnect@andyholmes.github.io/prefs.js | 5 +- .../service/backends/lan.js | 12 +- .../service/components/contacts.js | 4 +- .../service/components/index.js | 2 +- .../service/components/notification.js | 40 +- .../service/components/pulseaudio.js | 2 +- .../service/core.js | 4 +- .../service/daemon.js | 62 +- .../service/device.js | 6 +- .../service/init.js | 10 +- .../service/manager.js | 2 +- .../service/plugins/contacts.js | 2 +- .../service/plugins/mousepad.js | 2 +- .../service/plugins/runcommand.js | 4 +- .../service/plugins/sftp.js | 4 +- .../service/plugins/sms.js | 2 +- .../service/plugins/systemvolume.js | 2 +- .../service/ui/contacts.js | 8 +- .../service/ui/messaging.js | 8 +- .../service/utils/dbus.js | 23 +- .../service/utils/uri.js | 4 +- .../shell/clipboard.js | 22 +- .../shell/gmenu.js | 2 +- .../shell/keybindings.js | 9 +- .../shell/notification.js | 2 +- .../wl_clipboard.js | 17 +- .../extension.js | 140 ++-- .../isMatch.js | 36 - .../metadata.json | 4 +- .../prefs.js | 373 ++++++---- .../schemas/gschemas.compiled | Bin 496 -> 560 bytes ...ions.junk-notification-cleaner.gschema.xml | 10 +- 394 files changed, 12513 insertions(+), 1340 deletions(-) delete mode 100644 gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/BWClipboard.js delete mode 100644 gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/blur.js delete mode 100644 gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/carousel.js delete mode 100644 gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/carousel4.ui create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ad.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ae.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/af.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ag.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ai.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/al.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/am.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ao.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aq.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ar.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/arab.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/as.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/asean.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/at.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/au.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ax.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/az.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ba.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bb.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bd.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/be.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bi.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bj.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bo.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bq.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/br.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bs.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/by.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ca.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cd.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cefta.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ch.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ci.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ck.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/co.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cp.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cx.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cy.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/de.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dj.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/do.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eac.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ec.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ee.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/er.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ct.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ga.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-pv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/et.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fi.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fj.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fo.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ga.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-eng.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-nir.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-sct.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-wls.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gd.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ge.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gi.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gp.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gq.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gs.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gy.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ht.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ic.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/id.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ie.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/il.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/im.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/in.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/io.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/iq.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ir.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/is.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/it.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/je.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jo.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jp.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ke.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ki.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/km.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kp.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ky.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/la.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lb.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/li.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ls.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ly.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ma.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/md.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/me.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ml.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mo.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mp.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mq.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ms.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mx.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/my.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/na.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ne.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ng.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ni.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/no.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/np.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/om.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pa.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pe.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ph.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ps.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/py.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/qa.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/re.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ro.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rs.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ru.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sa.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sb.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sd.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/se.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ac.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-hl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ta.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/si.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sj.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/so.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ss.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/st.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sx.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sy.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/td.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/th.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tj.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tl.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/to.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tr.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tv.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ua.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ug.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/um.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/un.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/us.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uy.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uz.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/va.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vc.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ve.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vg.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vi.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vn.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vu.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/wf.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ws.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xk.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xx.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ye.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/yt.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/za.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zm.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zw.svg create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/flag-icons.LICENSE create mode 100644 gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/locale/ka/LC_MESSAGES/vitals.mo create mode 100644 gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.glsl create mode 100644 gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.js create mode 100644 gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/eo/LC_MESSAGES/blur-my-shell@aunetx.mo create mode 100644 gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences.js create mode 100644 gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/ro/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo delete mode 100644 gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/isMatch.js diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/BWClipboard.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/BWClipboard.js deleted file mode 100644 index 25ceae3..0000000 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/BWClipboard.js +++ /dev/null @@ -1,34 +0,0 @@ -// Bing Wallpaper GNOME extension -// Copyright (C) 2017-2025 Michael Carroll -// This extension is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// See the GNU General Public License, version 3 or later for details. - -import St from 'gi://St'; -import Gio from 'gi://Gio'; - -const CLIPBOARD_TYPE = St.ClipboardType.CLIPBOARD; - -export default class BWClipboard { - constructor() { - this.clipboard = St.Clipboard.get_default(); - } - - setImage(filename) { - try { - let file = Gio.File.new_for_path(filename); - let [success, image_data] = file.load_contents(null); - //console.log('error: '+success); - if (success) - this.clipboard.set_content(CLIPBOARD_TYPE, 'image/jpeg', image_data); - } catch (err) { - console.log('unable to set clipboard to data in '+filename); - } - } - - setText(text) { - this.clipboard.set_text(CLIPBOARD_TYPE, text); - } -}; diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/README.md b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/README.md index 192b114..5eccc3f 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/README.md +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/README.md @@ -15,11 +15,9 @@ Also, check out my related [Google Earth View wallpaper extension](https://githu * Automatically sets the Bing [Image of the Day](https://www.microsoft.com/en-us/bing/bing-wallpaper) as both lock screen and desktop wallpapers * Only attempts to download wallpapers when they have been updated - doesn't poll continuously * Shuffle/randomise wallpapers at adjustable intervals (including from your stored Bing images) -* Image gallery to view, select and curate stored images * Optionally delete old images after a week, or you can keep (and curate) them forever -* Override the lockscreen blur (NEW: lockscreen blur is now dynamic!) * Language support: English (en), German (de), Dutch (nl), Italian (it), Polish (pl), Chinese (zh_CN, zh_TW), French (fr_FR), Portuguese (pt, pt_BR), Ukrainian (uk), Russian (ru_RU), Spanish (es), Korean (ko), Indonesian (id), Catalan (ca), Norwegian Bokmål (nb) & Nynorsk (nn), Swedish (sv), Arabic (ar), Hungarian (hu), Japanese (ja), Czech (cs_CZ), Finnish (fi_FI) and Turkish (tr), Persian (fa_ir) - a HUGE thanks to the translators -* Image preview in menus & ability to manually set wallpapers individually or copy image to clipboard +* Image preview in menus & ability to manually set wallpapers individually * A selection of different theme-aware indicator (tray) icons to choose (or hide it completely) ## Quickstart guide @@ -69,7 +67,7 @@ The 5 buttons in the gallery (3rd page in the preferences) do have tool-tips but ## System Requirements -GNOME 3.36+ or 40+ (Ubuntu 20.04 LTS or later, older versions of the extension work with 3.18+, but are no longer supported). +GNOME 45+ (Ubuntu 24.04 LTS or later, older versions of the extension work with 3.18+, but are no longer supported). ## Package dependencies @@ -110,26 +108,12 @@ GSETTINGS_SCHEMA_DIR=$HOME/.local/share/gnome-shell/extensions/BingWallpaper@ine Please include logs from your journal when submitting bug notices (make sure nothing sensitive is included in the text!). ## Screenshots - -### Image gallery - -![Settings](/screenshot/settings5.png) - ### Preferences ![Settings](/screenshot/settings.png) -![Settings](/screenshot/settings2.png) ![Settings](/screenshot/settings3.png) ![Settings](/screenshot/settings4.png) - -### Lockscreen blur control -From left to right: -* no blur/no dimming -* slight blur/default dimming -* default blur/default dimming -![Blur example](/screenshot/blurexample.jpg) - ## Toss a coin to your coder Do you like this extension and want to show that you appreciate the work that goes into adding new features and keeping it maintained? Please consider buying me a coffee on [GitHub Sponsors](https://github.com/sponsors/neffo) or on [Flattr](https://flattr.com/@neffo). @@ -141,7 +125,7 @@ This extension is unofficial and not affiliated with Bing or Microsoft in any wa ## Special Thanks This extension is based on the NASA APOD extension by [Elinvention](https://github.com/Elinvention) -and inspired by Bing Desktop WallpaperChanger by [Utkarsh Gupta](https://github.com/UtkarshGpta). Lockscreen blur code is based on [Pratap-Kumar's extension](https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen). I'd like to give a special shout out to those who have [contributed code and translations](https://github.com/neffo/bing-wallpaper-gnome-extension/graphs/contributors) as well as everyone who has reported bugs or provided feedback and suggestions for improvements. Also, thanks to Microsoft for this great API and wallpaper collection. +and inspired by Bing Desktop WallpaperChanger by [Utkarsh Gupta](https://github.com/UtkarshGpta). I'd like to give a special shout out to those who have [contributed code and translations](https://github.com/neffo/bing-wallpaper-gnome-extension/graphs/contributors) as well as everyone who has reported bugs or provided feedback and suggestions for improvements. Also, thanks to Microsoft for this great API and wallpaper collection. ## License diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/blur.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/blur.js deleted file mode 100644 index 355d841..0000000 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/blur.js +++ /dev/null @@ -1,159 +0,0 @@ -// Bing Wallpaper GNOME extension -// Copyright (C) 2017-2025 Michael Carroll -// This extension is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// See the GNU General Public License, version 3 or later for details. -// Based on GNOME shell extension NASA APOD by Elia Argentieri https://github.com/Elinvention/gnome-shell-extension-nasa-apod -// This code based on https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen -// and https://github.com/sunwxg/gnome-shell-extension-unlockDialogBackground - -import St from 'gi://St'; -import * as UnlockDialog from 'resource:///org/gnome/shell/ui/unlockDialog.js'; -import * as Config from 'resource:///org/gnome/shell/misc/config.js'; -var _updateBackgroundEffects = UnlockDialog.UnlockDialog.prototype._updateBackgroundEffects; -var _showClock = UnlockDialog.UnlockDialog.prototype._showClock; -var _showPrompt = UnlockDialog.UnlockDialog.prototype._showPrompt; - -var shellVersionMajor = parseInt(Config.PACKAGE_VERSION.split('.')[0]); -var shellVersionMinor = parseInt(Config.PACKAGE_VERSION.split('.')[1]); -var shellVersionPoint = parseInt(Config.PACKAGE_VERSION.split('.')[2]); - -var blurField = shellVersionMajor >= 46 ? "radius" : "sigma"; -// default BWP mild blur -var BWP_BLUR_SIGMA = 2; -var BWP_BLUR_BRIGHTNESS = 55; -// GNOME defaults -var BLUR_BRIGHTNESS = 0.55; -var BLUR_SIGMA = 60; -var debug = false; - -var promptActive = false; // default GNOME method of testing this relies on state of a transisiton - // so we are being explicit here (do not want any races, thanks) - -function BingLog(msg) { - if (debug) // set 'debug' above to false to keep the noise down in journal - console.log("BingWallpaper extension/Blur: " + msg); -} - -// we patch UnlockDialog._updateBackgroundEffects() -export function _updateBackgroundEffects_BWP(monitorIndex) { - // GNOME shell 3.36.4 and above - BingLog("_updateBackgroundEffects_BWP() called for shell >= 3.36.4"); - const themeContext = St.ThemeContext.get_for_stage(global.stage); - for (const widget of this._backgroundGroup.get_children()) { - // set blur effects, we have two modes in lockscreen: login prompt or clock - // blur on when clock is visible is adjustable - const effect = widget.get_effect('blur'); - if (promptActive) { - BingLog('default blur active'); - if (effect) { - effect.set({ // GNOME defaults when login prompt is visible - brightness: BLUR_BRIGHTNESS, - [blurField]: BLUR_SIGMA * themeContext.scale_factor, - }); - } - } - else { - BingLog('adjustable blur active'); - if (effect) { - effect.set({ // adjustable blur when clock is visible - brightness: BWP_BLUR_BRIGHTNESS * 0.01, // we use 0-100 rather than 0-1, so divide by 100 - [blurField]: BWP_BLUR_SIGMA * themeContext.scale_factor, - }); - } - } - } -} - -// we patch both UnlockDialog._showClock() and UnlockDialog._showPrompt() to let us -// adjustable blur in a Windows-like way (this ensures login prompt is readable) -export function _showClock_BWP() { - promptActive = false; - this._showClock_GNOME(); // pass to default GNOME function - this._updateBackgroundEffects(); -} - -export function _showPrompt_BWP() { - promptActive = true; - this._showPrompt_GNOME(); // pass to default GNOME function - this._updateBackgroundEffects(); -} - -export function _clampValue(value) { - // valid values are 0 to 100 - if (value > 100) - value = 100; - if (value < 0 ) - value = 0; - return value; -} -export default class Blur { - constructor() { - this.enabled = false; - BingLog('Bing Wallpaper adjustable blur is '+(supportedVersion()?'available':'not available')); - } - - set_blur_strength(value) { - BWP_BLUR_SIGMA = _clampValue(value); - BingLog("lockscreen blur strength set to "+BWP_BLUR_SIGMA); - } - - set_blur_brightness(value) { - BWP_BLUR_BRIGHTNESS = _clampValue(value); - BingLog("lockscreen brightness set to " + BWP_BLUR_BRIGHTNESS); - } - - _switch(enabled) { - if (enabled && !this.enabled) { - this._enable(); - } - else { - this._disable(); - } - } - - _enable() { - if (supportedVersion()) { - BingLog("Blur._enable() called on GNOME "+Config.PACKAGE_VERSION); - UnlockDialog.UnlockDialog.prototype._updateBackgroundEffects = _updateBackgroundEffects_BWP; - // we override _showClock and _showPrompt to patch in updates to blur effect before calling the GNOME functions - UnlockDialog.UnlockDialog.prototype._showClock = _showClock_BWP; - UnlockDialog.UnlockDialog.prototype._showPrompt = _showPrompt_BWP; - - // this are the original functions which we call into from our versions above - UnlockDialog.UnlockDialog.prototype._showClock_GNOME = _showClock; - UnlockDialog.UnlockDialog.prototype._showPrompt_GNOME = _showPrompt; - - } - this.enabled = true; - } - - _disable() { - if (!this.enabled) - return; - BingLog("_lockscreen_blur_disable() called"); - if (supportedVersion()) { - // restore default functions - UnlockDialog.UnlockDialog.prototype._updateBackgroundEffects = _updateBackgroundEffects; - UnlockDialog.UnlockDialog.prototype._showClock = _showClock; - UnlockDialog.UnlockDialog.prototype._showPrompt = _showPrompt; - // clean up unused functions we created - UnlockDialog.UnlockDialog.prototype._showClock_GNOME = null; - delete UnlockDialog.UnlockDialog.prototype._showClock_GNOME; - UnlockDialog.UnlockDialog.prototype._showPrompt_GNOME = null; - delete UnlockDialog.UnlockDialog.prototype._showPrompt_GNOME; - } - this.enabled = false; - } -}; - -function supportedVersion() { // when current lockscren blur implementation was first shipped (we ignore earlier weird version) - if (shellVersionMajor >= 40 || - (shellVersionMajor == 3 && shellVersionMinor == 36 && shellVersionPoint >= 4)) { - return true; - } - - return false; -} diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/carousel.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/carousel.js deleted file mode 100644 index 6b0c106..0000000 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/carousel.js +++ /dev/null @@ -1,203 +0,0 @@ -// Bing Wallpaper GNOME extension -// Copyright (C) 2017-2025 Michael Carroll -// This extension is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// See the GNU General Public License, version 3 or later for details. -// Based on GNOME shell extension NASA APOD by Elia Argentieri https://github.com/Elinvention/gnome-shell-extension-nasa-apod - -import Gtk from 'gi://Gtk'; -import GdkPixbuf from 'gi://GdkPixbuf'; -import Gio from 'gi://Gio'; -import * as Utils from './utils.js'; -import {gettext as _} from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js'; - -const default_dimensions = [30, 30, 1650, 800]; // TODO: pull from and save dimensions to settings, but perhaps verify that dimensions are ok - -const GALLERY_THUMB_WIDTH = 320; -const GALLERY_THUMB_HEIGHT = 180; - -export default class Carousel { - constructor(settings, button = null, callbackfunc = null, prefs_flowbox = null, extensionPath = null) { - //create_gallery(widget, settings); - this.settings = settings; - this.button = button; - this.callbackfunc = callbackfunc; - this.flowBox = null; - this.window = null; - this.imageList = Utils.imageListSortByDate(Utils.getImageList(this.settings)).reverse(); // get images and reverse order - this.searchEntry = null; - this.extensionPath = extensionPath - - this._log('create carousel...'); - - this.flowBox = prefs_flowbox; - this.flowBox.insert(this._create_placeholder_item(), -1); - } - - _enable_button() { - if (this.button) { - this.button.set_sensitive(state); - } - } - - _create_gallery() { - this.imageList.forEach((image) => { - let item = this._create_gallery_item(image); - this.flowBox.insert(item, -1); - }); - } - - _create_gallery_item(image) { - let buildable = new Gtk.Builder(); - - // grab appropriate object from UI file - buildable.add_objects_from_file(this.extensionPath + '/ui/carousel4.ui', ["flowBoxChild"]); - - // assign variables to the UI objects we've just loaded - let galleryImage = buildable.get_object('galleryImage'); - let filename = Utils.imageToFilename(this.settings, image); - let viewButton = buildable.get_object('viewButton'); - let applyButton = buildable.get_object('applyButton'); - let infoButton = buildable.get_object('infoButton'); - let deleteButton = buildable.get_object('deleteButton'); - let favButton = buildable.get_object('favButton'); - let unfavButton = buildable.get_object('unfavButton'); - - if (Utils.isFavourite(image)) { - favButton.set_visible(false); - this._log('image is favourited'); - } - else { - unfavButton.set_visible(false); - } - - try { - this._load_image(galleryImage, filename); - } - catch (e) { - galleryImage.set_from_icon_name('image-missing'); - galleryImage.set_icon_size = 2; // Gtk.GTK_ICON_SIZE_LARGE; - this._log('create_gallery_image: '+e); - } - - galleryImage.set_tooltip_text(image.copyright); - - // set up actions for when a image button is clicked - viewButton.connect('clicked', () => { - Utils.openInSystemViewer(filename); - }); - - applyButton.connect('clicked', () => { - this.settings.set_string('selected-image', Utils.getImageUrlBase(image)); - this._log('gallery selected '+Utils.getImageUrlBase(image)); - }); - - infoButton.connect('clicked', () => { - Utils.openInSystemViewer(image.copyrightlink, false); - this._log('info page link opened '+image.copyrightlink); - }); - - deleteButton.connect('clicked', (widget) => { - this._log('Delete requested for '+filename); - Utils.deleteImage(filename); - Utils.setImageHiddenStatus(this.settings, image.urlbase, true); - Utils.purgeImages(this.settings); // hide image instead - widget.get_parent().get_parent().set_visible(false); // bit of a hack - if (this.callbackfunc) - this.callbackfunc(); - }); - - // button is unchecked, so we want to make the checked one visible - favButton.connect('clicked', (widget) => { - this._log('favourited '+Utils.getImageUrlBase(image)); - widget.set_visible(false); - unfavButton.set_visible(true); - Utils.setImageFavouriteStatus(this.settings, image.urlbase, true); - }); - - // button is checked, so we want to make the unchecked one visible - unfavButton.connect('clicked', (widget) => { - this._log('unfavourited '+Utils.getImageUrlBase(image)); - widget.set_visible(false); - favButton.set_visible(true); - Utils.setImageFavouriteStatus(this.settings, image.urlbase, false); - }); - - let item = buildable.get_object('flowBoxChild'); - return item; - } - - _create_placeholder_item() { - let buildable = new Gtk.Builder(); - this.flowBox.set_max_children_per_line(1); - - // grab appropriate object from UI file - buildable.add_objects_from_file(this.extensionPath + '/ui/carousel4.ui', ["flowBoxPlaceholder"]); - - let loadButton = buildable.get_object('loadButton'); - - loadButton.connect('clicked', (widget) => { - widget.set_label(_("Loading...")); // does this work??? - this.flowBox.remove(widget.get_parent()); - this.flowBox.set_max_children_per_line(2); - this._create_gallery(); - - }); - - let item = buildable.get_object('flowBoxPlaceholder'); - return item; - } - - _load_image(galleryImage, filename) { - let thumb_path = Utils.getWallpaperDir(this.settings)+'.thumbs/'; - let thumb_dir = Gio.file_new_for_path(thumb_path); - let save_thumbs = !this.settings.get_boolean('delete-previous') && this.settings.get_boolean('create-thumbs'); // create thumbs only if not deleting previous and thumbs are enabled - - if (!thumb_dir.query_exists(null)) { - thumb_dir.make_directory_with_parents(null); - } - - let image_file = Gio.file_new_for_path(filename); - - // load gallery image or create new thumbnail if it doesn't - if (!image_file.query_exists(null)){ - this._set_blank_image(galleryImage); - } - else { - let image_thumb_path = thumb_path + image_file.get_basename(); - let image_thumb = Gio.file_new_for_path(image_thumb_path); - - try { - let pixbuf; - - // use thumbnail if available - if (image_thumb.query_exists(null)) { - pixbuf = GdkPixbuf.Pixbuf.new_from_file(image_thumb_path); - } - else { // save changed thumbnail significantly speeds up gallery loading, but costs some addtional disk space - pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(filename, GALLERY_THUMB_WIDTH, GALLERY_THUMB_HEIGHT); - if (save_thumbs) - pixbuf.savev(image_thumb_path,'jpeg',['quality'], ['90']); - } - - galleryImage.set_pixbuf(pixbuf); - } - catch (e) { - this._set_blank_image(galleryImage); - this._log('create_gallery_image: '+e); - } - } - } - - _set_blank_image(galleryImage) { - //galleryImage.set_from_icon_name('image-missing'); - //galleryImage.set_icon_size = 2; // Gtk.GTK_ICON_SIZE_LARGE; - } - - _log(msg) { - if (this.settings.get_boolean('debug-logging')) - console.log("BingWallpaper extension: " + msg); // disable to keep the noise down in journal - } -}; diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/extension.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/extension.js index 1109e56..09ff599 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/extension.js +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/extension.js @@ -23,9 +23,7 @@ import * as Config from 'resource:///org/gnome/shell/misc/config.js'; import {Extension, gettext as _} from 'resource:///org/gnome/shell/extensions/extension.js'; import * as Utils from './utils.js'; -import Blur from './blur.js'; import Thumbnail from './thumbnail.js'; -import BWClipboard from './BWClipboard.js'; const BingImageURL = Utils.BingImageURL; const BingURL = 'https://www.bing.com'; @@ -38,7 +36,6 @@ const ICON_NEXT_BUTTON = 'media-seek-forward-symbolic'; const ICON_CURRENT_BUTTON = 'media-skip-forward-symbolic'; let bingWallpaperIndicator = null; -let blur = null; const newMenuItem = (label) => { return new PopupMenu.PopupMenuItem(label); @@ -107,7 +104,6 @@ class BingWallpaperIndicator extends Button { this.thumbnail = null; this.thumbnailItem = null; this.selected_image = "current"; - this.clipboard = new BWClipboard(); this.imageIndex = null; this.logger = null; this.favourite_status = false; @@ -121,9 +117,6 @@ class BingWallpaperIndicator extends Button { this.ICON_UNFAVE_BUTTON = extensionIconsPath + '/'+'unfav-symbolic.svg'; this.ICON_TRASH_BUTTON = extensionIconsPath + '/'+'trash-empty-symbolic.svg'; this.ICON_UNTRASH_BUTTON = extensionIconsPath + '/'+'trash-full-symbolic.svg'; - - if (!blur) // as Blur isn't disabled on screen lock (like the rest of the extension is) - blur = new Blur(); // take a variety of actions when the gsettings values are modified by prefs this._settings = this._extension.getSettings(); @@ -136,8 +129,6 @@ class BingWallpaperIndicator extends Button { this.refreshDueItem = newMenuItem(_("")); this.explainItem = newMenuItem(_("Awaiting refresh...")); this.copyrightItem = newMenuItem(_("Awaiting refresh...")); - this.clipboardImageItem = newMenuItem(_("Copy image to clipboard")); - this.clipboardURLItem = newMenuItem(_("Copy image URL to clipboard")); this.folderItem = newMenuItem(_("Open image folder")); this.dwallpaperItem = newMenuItem(_("Set background image")); this.swallpaperItem = newMenuItem(_("Set lock screen image")); @@ -149,7 +140,7 @@ class BingWallpaperIndicator extends Button { this.titleItem = new PopupMenu.PopupSubMenuMenuItem(_("Awaiting refresh..."), false); [this.imageResolutionItem, this.openImageInfoLinkItem, this.openImageItem, this.folderItem, - this.clipboardImageItem, this.clipboardURLItem, this.dwallpaperItem] + this.dwallpaperItem] .forEach(e => this.titleItem.menu.addMenuItem(e)); // quick settings submenu @@ -238,9 +229,6 @@ class BingWallpaperIndicator extends Button { {signal: 'changed::icon-name', call: this._setIcon}, {signal: 'changed::market', call: this._refresh}, {signal: 'changed::set-background', call: this._setBackground}, - {signal: 'changed::override-lockscreen-blur', call: this._setBlur}, - {signal: 'changed::lockscreen-blur-strength', call: this._setBlur}, - {signal: 'changed::lockscreen-blur-brightness', call: this._setBlur}, {signal: 'changed::selected-image', call: this._setImage}, {signal: 'changed::delete-previous', call: this._cleanUpImages}, {signal: 'changed::notify', call: this._notifyCurrentImage}, @@ -263,7 +251,6 @@ class BingWallpaperIndicator extends Button { // ensure we're in a sensible initial state this._setIcon(); - this._setBlur(); this._setImage(); this._cleanUpImages(); @@ -307,14 +294,6 @@ class BingWallpaperIndicator extends Button { }); this.folderItem.connect('activate', Utils.openImageFolder.bind(this, this._settings)); - if (this.clipboard.clipboard) { // only if we have a clipboard - this.clipboardImageItem.connect('activate', this._copyImageToClipboard.bind(this)); - this.clipboardURLItem.connect('activate', this._copyURLToClipboard.bind(this)); - } - else { - [this.clipboardImageItem, this.clipboardURLItem]. - forEach(e => e.setSensitive(false)); - } } _setBooleanSetting(key, state) { @@ -349,8 +328,6 @@ class BingWallpaperIndicator extends Button { _openMenu() { // Grey out menu items if an update is pending this.refreshItem.setSensitive(!this._updatePending); - this.clipboardImageItem.setSensitive(!this._updatePending && this.imageURL != ""); - this.clipboardURLItem.setSensitive(!this._updatePending && this.imageURL != ""); this.thumbnailItem.setSensitive(!this._updatePending && this.imageURL != ""); this.dwallpaperItem.setSensitive(!this._updatePending && this.filename != ""); this.swallpaperItem.setSensitive(!this._updatePending && this.filename != ""); @@ -370,12 +347,6 @@ class BingWallpaperIndicator extends Button { this.refreshDueItem.label.set_text(this.refreshduetext); } - _setBlur() { - blur._switch(this._settings.get_boolean('override-lockscreen-blur')); - blur.set_blur_strength(this._settings.get_int('lockscreen-blur-strength')); - blur.set_blur_brightness(this._settings.get_int('lockscreen-blur-brightness')); - } - _setImage() { Utils.validate_imagename(this._settings); this.selected_image = this._settings.get_string('selected-image'); @@ -421,14 +392,6 @@ class BingWallpaperIndicator extends Button { doSetBackground(this.filename, Utils.DESKTOP_SCHEMA); } - _copyURLToClipboard() { - this.clipboard.setText(this.imageURL); - } - - _copyImageToClipboard() { - this.clipboard.setImage(this.filename); - } - // set a timer on when the current image is going to expire _restartTimeoutFromLongDate(longdate) { // all Bing times are in UTC (+0) @@ -680,7 +643,7 @@ class BingWallpaperIndicator extends Button { } // download Bing metadata - _refresh() { + async _refresh() { if (this._updatePending) return; this._updatePending = true; @@ -703,7 +666,7 @@ class BingWallpaperIndicator extends Button { request.request_headers.append('Accept', 'application/json'); try { - this.httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { + await this.httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { this._processMessageRefresh(message); }); } @@ -1074,7 +1037,7 @@ class BingWallpaperIndicator extends Button { // download and process new image // FIXME: improve error handling - _downloadImage(url, file, set_background) { + async _downloadImage(url, file, set_background) { let BingWallpaperDir = Utils.getWallpaperDir(this._settings); let dir = Gio.file_new_for_path(BingWallpaperDir); if (!dir.query_exists(null)) { @@ -1088,7 +1051,7 @@ class BingWallpaperIndicator extends Button { // queue the http request try { if (Soup.MAJOR_VERSION >= 3) { - this.httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { + await this.httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { this._processFileDownload(message, file, set_background); }); } @@ -1104,13 +1067,13 @@ class BingWallpaperIndicator extends Button { } } - _processFileDownload(message, file, set_background) { + async _processFileDownload(message, file, set_background) { try { let data = (Soup.MAJOR_VERSION >= 3) ? this.httpSession.send_and_read_finish(message).get_data(): message.response_body.flatten().get_as_bytes(); - file.replace_contents_bytes_async( + const [etag] = await file.replace_contents_bytes_async( data, null, false, @@ -1157,8 +1120,6 @@ class BingWallpaperIndicator extends Button { this._timeout = undefined; this._shuffleTimeout = undefined; this.menu.removeAll(); - blur._disable(); // disable blur (blur.js) override and cleanup - blur = null; } }); diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/locale/fr/LC_MESSAGES/BingWallpaper.mo b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/locale/fr/LC_MESSAGES/BingWallpaper.mo index 23f8821a30069ed8e40c07eeb7b7f8ae339e49cf..e885729e1731cc7b6c9d105d14f802d637c53ccd 100644 GIT binary patch literal 8117 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 QgG9}D9Q~Ao>RCVeKl0oPy#N3J literal 2849 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 QgG9}D9Q~Ao>RCVeKl0oPy#N3J literal 4792 zcmbW4OKcri8GuhAq+s5qEv4mg5*~Kjj2~$uQYSHS?8FJ!j^#%SNC?fHIrrWZ&z*BK zXU2&)RaS`ZibO@(L_(rc%>p(BA+bSRR8=gxDlA!)MRzO!u|PuN`_IhvwG&GqM!EO% zJ#!xa`#<^fL&siGJkRj?ET1EPzXb2V$Kh*G*8dhh0sjOi;NRd$_{4Fg#^D@10o(B7@cU5Y zeHDHJ{t|u^z6s^rci=~;q}0A;SkjXbii z*l>!E=stXK-ToswihNHuBQp&}R(YoRh+QY;2haQXh@IpSJBttGImJg(R(vCV7TX+r zFn4$)=HxlX2UiE*J_W@Gs1R&}Ny8)llSkr&bPV~fq1Z=kAo@!#iQP!E@L;asKZyy6 zM|mEUuk));7p7ep-_<_pnzYJHI;ZA!ZpvG(*w&^fT%lc(RE0^^e9Kj(x)dkdox)Xl zs#{rAXq%TN_qNSx*IE`C2LvGnNa~+#&UiJE=S~xH-ad}z9zPx`@H_kg8=53xBoyn9P zQ+VrgwcvU^muI`W63zRFWJ=Fyf0yIqj?r7|%er(r$!x#n;v!XOnoS{^;m4y4GnrZmjwvpw@cU8xhrkkCUJ?*UR^O|(iL~5 zaT!lePO5sZv=&$$?efNAT3xlN3BI*?DqG^+Ys0^^#R+QJCEI!oKlScBZ>qt?Ek(L%$o?+Ky+Xq`{({7uD@Y zUuvxh$MrZ*(I*6?T5pQLs=K9X8y{G#Hn3)El=bxz85A)n9O9E^BSs}oz1rxyTeZb~ z)$hBal<=11MZB)mlw6;Wb(iXM;bgZg`+jz6s-4AUS%@d5F6QXvPR?BkL+7XBInAQ` zR&;FHty*D)?-PZt@KeporSM8`G{dsRq}r%mbf3RAyH&516DxRcloc<;yBSteo6hN8 zobO_jo0ajUCvx-|Y)V|FUTt|p0+G7Cx*)Pdw?_4EsNDfsgNRct3>EGBI_gMKjP}bR zj&e8fS#&Lpp05kbtR7o8V#{d7cWfG6syaT}bPTUukJd?dsXoynRbW=1o<2PjO`nOT zpVKqX&YnK=^vv}1^w=_GD%vdK++$Z)%<6@1VUfI#W4>-Ed*>4wklz=R8w^agi#b;1 zor<~@ZJM~pX~W;Mq{MfxtdFf+Te&=vab|LQY=NptJ&87V`^ZwF)KotsVb4ig6qLgY zTboy+v!i(;Qri^K@TeckgX0&8-Q`EAqIg{E_pPqbna%OCel#8?IiYt14 zR_Fcj(_c7!PS<~4n8@{$-W++%pi*w4?V9(5{E#8t|hWbE; z6@xu*;!5Lb?W@2b9Gg=xVJkl8wv-(mU8xBFTsYPJc(F0q}KKMQj5-e zdTE$ccOP~-+*hTxjttYhRc{c1<)JzVgrRTMIo325I4ECaQu-CRZQxdd|d$LMX z^AHg?O4AkPi{joCI~*%@n*phOvbWe`o^Bl@Wuyl$(WiYx(`N4&$Dja3QEkX<+Y@Oy zAh?PNsF)1)Qd292#WM!Tp$>sdujeqr+F}tgQDc}8>D;Y?kwY6EMFCxQw1*LEsrlgs z9DAsz*UmM%#jPr?)H)|u{lOmTh(_2F@8D|@WYq5uYSfgiq1BI$aBf@NJZl#<&7V9} z*OI{-WTk}mfziQBAx|?*pW1u;&rifuu{M<|4C|HetgpM*OzpN?eVN z!=-?lf=c7zS|D*fx)-==C)l$|AcPtQK*)8eYQ#pJbxp*|VyWT0;-Yf6_^7p5B0J>Q zDUC-v7(ng~%{XhgTh<9sq9!pFl36FT*PwfdsW4j%6vA1uo$e}`pN@AcJE=n5yRSry zY#_%Gv6@>wR* vROnE_2i#KzKjS|Gnv2=+qJrLQ)Hjz)sYiLrL#Xd^kE5iIx|RBWZ!G@-TlS*6 diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/metadata.json b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/metadata.json index 959dcb7..17834eb 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/metadata.json @@ -1,6 +1,6 @@ { "_generated": "Generated by SweetTooth, do not edit", - "description": "Sync your wallpaper to today's Microsoft Bing image of the day (the image you see when you visit Bing.com).\n\n *Disclaimer*: this extension is unofficial and not affiliated with Bing or Microsoft in any way. Images are protected by copyright and are licensed only for use as wallpapers.\n\nFeatures:\n* UHD resolution wallpapers\n* Automatically fetches current Bing wallpaper of the day and sets as both lock screen and desktop wallpaper (user selectable on GNOME versions that support it)\n* Doesn't poll continuously - only once per day and on startup (schedules a refresh when Bing is due to update)\n * random mode (from previously downloaded wallpapers)\n *NEW: select/cycle wallpaper through previously downloaded images\n* Language support: English (en), German (de), Dutch (nl), Italian (it), Polish (pl), Chinese (zh_CN, zh_TW), French (fr), Portuguese (pt), Ukrainian (uk), Russian (ru_RU), Spanish (es), Korean (ko), Indonesian (id), Catalan (ca), Norwegian Bokm\u00e5l (nb) & Nynorsk (ni), Swedish (sv), Arabic (ar), Hungarian (hu) and Japanese (ja) - a HUGE thanks to the translators\n\nThis extension was forked from the NASA APOD extension by Elinvention (https://github.com/Elinvention) and inspired by Bing Desktop Wallpaper Changer by Utkarsh Gupta (https://github.com/UtkarshGpta).\n\nAlways restart GNOME after manually updating extensions. Please report bugs to the GitHub page below:", + "description": "Sync your wallpaper to today's Microsoft Bing image of the day (the image you see when you visit Bing.com).\n\n *Disclaimer*: this extension is unofficial and not affiliated with Bing or Microsoft in any way. Images are protected by copyright and are licensed only for use as wallpapers.\n\nFeatures:\n* UHD resolution wallpapers\n* Automatically fetches current Bing wallpaper of the day and sets as both lock screen and desktop wallpaper (user selectable on GNOME versions that support it)\n* Doesn't poll continuously - only once per day and on startup (schedules a refresh when Bing is due to update)\n * random mode (from previously downloaded wallpapers)\n * select/cycle wallpaper through previously downloaded images\n* Language support: English (en), German (de), Dutch (nl), Italian (it), Polish (pl), Chinese (zh_CN, zh_TW), French (fr), Portuguese (pt), Ukrainian (uk), Russian (ru_RU), Spanish (es), Korean (ko), Indonesian (id), Catalan (ca), Norwegian Bokm\u00e5l (nb) & Nynorsk (ni), Swedish (sv), Arabic (ar), Hungarian (hu) and Japanese (ja) - a HUGE thanks to the translators\n\nThis extension was forked from the NASA APOD extension by Elinvention (https://github.com/Elinvention) and inspired by Bing Desktop Wallpaper Changer by Utkarsh Gupta (https://github.com/UtkarshGpta).\n\nAlways restart GNOME after manually updating extensions. Please report bugs to the GitHub page below:", "gettext-domain": "BingWallpaper", "name": "Bing Wallpaper", "settings-schema": "org.gnome.shell.extensions.bingwallpaper", @@ -14,5 +14,5 @@ ], "url": "https://github.com/neffo/bing-wallpaper-gnome-extension", "uuid": "BingWallpaper@ineffable-gmail.com", - "version": 52 -} + "version": 53 +} \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/prefs.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/prefs.js index 3b81047..2ab1f64 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/prefs.js +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/prefs.js @@ -15,7 +15,7 @@ import Adw from 'gi://Adw'; import {ExtensionPreferences, gettext as _} from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js'; import * as Config from 'resource:///org/gnome/Shell/Extensions/js/misc/config.js'; import * as Utils from './utils.js'; -import Carousel from './carousel.js'; +/*import Carousel from './carousel.js';*/ const BingImageURL = Utils.BingImageURL; @@ -41,7 +41,7 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); - let carousel = null; + /*let carousel = null;*/ let httpSession = null; let BingLog = (msg) => { // avoids need for globals @@ -62,13 +62,6 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen const shuffleSwitch = buildable.get_object('shuffleSwitch'); const shuffleInterval = buildable.get_object('shuffleInterval'); const folderRow = buildable.get_object('folderRow'); - const lockscreen_page = buildable.get_object('lockscreen_page'); - const overrideSwitch = buildable.get_object('overrideSwitch'); - const blurPresets = buildable.get_object('blurPresets'); - const strengthEntry = buildable.get_object('strengthEntry'); - const brightnessEntry = buildable.get_object('brightnessEntry'); - const blurAdjustment = buildable.get_object('blurAdjustment'); - const brightnessAdjustment = buildable.get_object('brightnessAdjustment'); const resolutionEntry = buildable.get_object('resolutionEntry'); const debugSwitch = buildable.get_object('debug_switch'); const revertSwitch = buildable.get_object('revert_switch'); @@ -76,8 +69,6 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen const delete_previous_switch = buildable.get_object('delete_previous_switch'); const delete_previous_adjustment = buildable.get_object('delete_previous_adjustment'); const always_export_switch = buildable.get_object('always_export_switch'); - const gallery_page = buildable.get_object('gallery_page'); - const carouselFlowBox = buildable.get_object('carouselFlowBox'); const randomIntervalEntry = buildable.get_object('entry_random_interval'); const debug_page = buildable.get_object('debug_page'); const json_actionrow = buildable.get_object('json_actionrow'); @@ -86,8 +77,8 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen const change_log = buildable.get_object('change_log'); window.add(settings_page); - window.add(lockscreen_page); - window.add(gallery_page); + /*window.add(lockscreen_page); + window.add(gallery_page);*/ window.add(debug_page); window.add(about_page); @@ -116,30 +107,6 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen folderRow.add_suffix(openBtn); folderRow.add_suffix(changeBtn); - - blurAdjustment.set_value(settings.get_int('lockscreen-blur-strength')); - brightnessAdjustment.set_value(settings.get_int('lockscreen-blur-brightness')); - - const defaultBtn = new Gtk.Button( { - label: _('Default'), - valign: Gtk.Align.CENTER, - halign: Gtk.Align.CENTER, - }); - const noBlurBtn = new Gtk.Button( { - label: _('No blur, slight dim'), - valign: Gtk.Align.CENTER, - halign: Gtk.Align.CENTER, - }); - const slightBlurBtn = new Gtk.Button( { - label: _('Slight blur & dim'), - valign: Gtk.Align.CENTER, - halign: Gtk.Align.CENTER, - }); - - // add to presets row - blurPresets.add_suffix(defaultBtn); - blurPresets.add_suffix(noBlurBtn); - blurPresets.add_suffix(slightBlurBtn); randomIntervalEntry.set_value(settings.get_int('random-interval')); @@ -201,10 +168,7 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen openBtn.connect('clicked', (widget) => { Utils.openImageFolder(settings); }); - - // we populate the tab (gtk4+, gnome 40+), this was previously a button to open a new window in gtk3 - carousel = new Carousel(settings, null, null, carouselFlowBox, this.dir.get_path()); // auto load carousel - + // this is intended for migrating image folders between computers (or even sharing) or backups // we export the Bing JSON data to the image directory, so this folder becomes portable buttonImportData.connect('clicked', () => { @@ -254,24 +218,7 @@ export default class BingWallpaperExtensionPreferences extends ExtensionPreferen settings.connect('changed::random-interval-mode', () => { shuffleInterval.set_selected(Utils.randomIntervals.map( e => e.value).indexOf(settings.get_string('random-interval-mode'))); }); - - // GDM3 lockscreen blur override - settings.bind('override-lockscreen-blur', overrideSwitch, 'active', Gio.SettingsBindFlags.DEFAULT); - settings.bind('lockscreen-blur-strength', strengthEntry, 'value', Gio.SettingsBindFlags.DEFAULT); - settings.bind('lockscreen-blur-brightness', brightnessEntry, 'value', Gio.SettingsBindFlags.DEFAULT); - settings.bind('previous-days', delete_previous_adjustment, 'value', Gio.SettingsBindFlags.DEFAULT); - - // add a couple of preset buttons - defaultBtn.connect('clicked', (widget) => { - Utils.set_blur_preset(settings, Utils.PRESET_GNOME_DEFAULT); - }); - noBlurBtn.connect('clicked', (widget) => { - Utils.set_blur_preset(settings, Utils.PRESET_NO_BLUR); - }); - slightBlurBtn.connect('clicked', (widget) => { - Utils.set_blur_preset(settings, Utils.PRESET_SLIGHT_BLUR); - }); - + // fetch change log (on about page) if (httpSession) diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/carousel4.ui b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/carousel4.ui deleted file mode 100644 index 3df7cb6..0000000 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/carousel4.ui +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - never - - - 0 - 0 - 500 - - - 0 - center - 1 - - 2 - 10 - 4 - - - - - - - 0 - - - 0 - 0 - 5 - - - - 320 - 120 - 0 - 1 - 1 - - - - - 0 - vertical - 1 - center - - - - Favorite - checkbox - - 1 - 0 - center - - - - - Favorite - checkbox-checked - - 1 - 0 - center - - - - - Apply - preferences-desktop-wallpaper - 1 - 0 - center - - - - - View - view-reveal - 1 - 0 - center - - - - - Info - preferences-system-details - 1 - 0 - center - - - - - Delete - edit-delete - 1 - 0 - center - - - - - - - - - 0 - - - 0 - center - - - 320 - 120 - 0 - media-playlist-shuffle - 2 - - 0 - 0 - 2 - - - - - - 0 - <image name here> - - 0 - 1 - 2 - - - - - - Image shuffle mode - 1 - - 0 - 2 - 2 - - - - - - - - 0 - - - 0 - center - - - 320 - 120 - 0 - preferences-desktop-wallpaper-symbolic - 2 - - 0 - 0 - - - - - - Load image gallery - 1 - - 0 - 1 - - - - - - - \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/prefsadw.ui b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/prefsadw.ui index 3efdf8d..f34351e 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/prefsadw.ui +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/ui/prefsadw.ui @@ -109,86 +109,6 @@ Bing Wallpaper GNOME extension by: Michael Carroll - - system-lock-screen-symbolic - Lock screen - - - Lockscreen blur - - - Dynamic lockscreen blur - Whether to enable dynamic blur mode on lock screen - - - - - Blur strength - Blur strength when login prompt is not visible - - - 0 - 50 - 10 - 1 - - - - - - - Wallpaper brightness - Dim wallpaper when login prompt is not visible - - - 0 - 100 - 10 - 1 - - - - - - - - - - - - Presets - - - - - - - emblem-photos-symbolic - Gallery - - - 0 - 500 - 0 - 0 - - - - - 0 - center - 1 - 2 - 2 - 2 - 2 - - - - - - - preferences-other-symbolic Debug diff --git a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/utils.js b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/utils.js index 98e289f..134593d 100644 --- a/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/utils.js +++ b/gnome/.local/share/gnome-shell/extensions/BingWallpaper@ineffable-gmail.com/utils.js @@ -12,16 +12,9 @@ import GLib from 'gi://GLib'; import Soup from 'gi://Soup'; import GdkPixbuf from 'gi://GdkPixbuf'; -export var PRESET_GNOME_DEFAULT = { blur: 45, dim: 65 }; // as at GNOME 40 -export var PRESET_NO_BLUR = { blur: 0, dim: 65 }; -export var PRESET_SLIGHT_BLUR = { blur: 2, dim: 30 }; - export var BING_SCHEMA = 'org.gnome.shell.extensions.bingwallpaper'; export var DESKTOP_SCHEMA = 'org.gnome.desktop.background'; -var vertical_blur = null; -var horizontal_blur = null; - let gitreleaseurl = 'https://api.github.com/repos/neffo/bing-wallpaper-gnome-extension/releases/tags/'; let debug = false; @@ -111,7 +104,7 @@ export function get_current_bg(schema) { return (cur); } -export function fetch_change_log(version, label, httpSession) { +export async function fetch_change_log(version, label, httpSession) { const decoder = new TextDecoder(); // create an http message let url = gitreleaseurl + "v" + version; @@ -121,7 +114,7 @@ export function fetch_change_log(version, label, httpSession) { // queue the http request try { if (Soup.MAJOR_VERSION >= 3) { - httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { + await httpSession.send_and_read_async(request, GLib.PRIORITY_DEFAULT, null, (httpSession, message) => { let data = decoder.decode(httpSession.send_and_read_finish(message).get_data()); let text = JSON.parse(data).body; if (text) @@ -143,12 +136,6 @@ export function fetch_change_log(version, label, httpSession) { } } -export function set_blur_preset(settings, preset) { - settings.set_int('lockscreen-blur-strength', preset.blur); - settings.set_int('lockscreen-blur-brightness', preset.dim); - BingLog("Set blur preset to " + preset.blur + " brightness to " + preset.dim); -} - export function imageHasBasename(image_item, i, b) { //log("imageHasBasename : " + image_item.urlbase + " =? " + this); if (this && this.search(image_item.urlbase.replace('th?id=OHR.', ''))) @@ -595,33 +582,48 @@ export function openInSystemViewer(filename, is_file = true) { Gio.AppInfo.launch_default_for_uri(filename, context); } -export function exportBingJSON(settings) { +export async function exportBingJSON(settings) { let json = settings.get_string('bing-json'); let filepath = getWallpaperDir(settings) + 'bing.json'; let file = Gio.file_new_for_path(filepath); - let [success, error] = file.replace_contents(json, null, false, Gio.FileCreateFlags.REPLACE_DESTINATION, null); - if (!success) { - BingLog('error saving bing-json from '+filepath+': '+error); - } + + const [etag] = await file.replace_contents_async( + json, + null, + false, + Gio.FileCreateFlags.REPLACE_DESTINATION, + null, + (file, res) => { + try { + file.replace_contents_finish(res); + } + catch(e) { + BingLog('error saving bing-json from '+filepath+': '+e); + } + } + ); } -export function importBingJSON(settings) { +export async function importBingJSON(settings) { const decoder = new TextDecoder(); let filepath = getWallpaperDir(settings) + 'bing.json'; let file = Gio.file_new_for_path(filepath); if (file.query_exists(null)) { - let [success, contents, etag_out] = file.load_contents(null); - if (!success) { - BingLog('error loading bing-json '+filepath+' - '+etag_out); - } - else { - BingLog('JSON import success'); - let parsed = JSON.parse(decoder.decode(contents)); // FIXME: triggers GJS warning without the conversion, need to investigate - // need to implement some checks for validity here - mergeImageLists(settings, parsed); - purgeImages(settings); // remove the older missing images - //cleanupImageList(settings); - } + const [contents, etag] = await file.load_contents_async(null, + (file, res) => { + try { + BingLog('JSON import success'); + let parsed = JSON.parse(decoder.decode(contents)); // FIXME: triggers GJS warning without the conversion, need to investigate + // need to implement some checks for validity here + mergeImageLists(settings, parsed); + purgeImages(settings); // remove the older missing images + file.load_contents_finish(res); + } + catch (e) { + BingLog('error loading bing-json '+filepath+' - '+e); + } + } + ); } else { BingLog('JSON import file not found'); diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/extension.js b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/extension.js index 642c4d7..0306a11 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/extension.js +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/extension.js @@ -38,13 +38,263 @@ var VitalsMenuButton = GObject.registerClass({ 'system' : { 'icon': 'system-symbolic.svg' }, 'network' : { 'icon': 'network-symbolic.svg', 'icon-rx': 'network-download-symbolic.svg', - 'icon-tx': 'network-upload-symbolic.svg' }, + 'icon-tx': 'network-upload-symbolic.svg', + 'icon-ad': '../flags/1x1/ad.svg', + 'icon-ae': '../flags/1x1/ae.svg', + 'icon-af': '../flags/1x1/af.svg', + 'icon-ag': '../flags/1x1/ag.svg', + 'icon-ai': '../flags/1x1/ai.svg', + 'icon-al': '../flags/1x1/al.svg', + 'icon-am': '../flags/1x1/am.svg', + 'icon-ao': '../flags/1x1/ao.svg', + 'icon-ar': '../flags/1x1/ar.svg', + 'icon-at': '../flags/1x1/at.svg', + 'icon-au': '../flags/1x1/au.svg', + 'icon-aw': '../flags/1x1/aw.svg', + 'icon-ax': '../flags/1x1/ax.svg', + 'icon-az': '../flags/1x1/az.svg', + 'icon-ba': '../flags/1x1/ba.svg', + 'icon-bb': '../flags/1x1/bb.svg', + 'icon-bd': '../flags/1x1/bd.svg', + 'icon-be': '../flags/1x1/be.svg', + 'icon-bf': '../flags/1x1/bf.svg', + 'icon-bg': '../flags/1x1/bg.svg', + 'icon-bh': '../flags/1x1/bh.svg', + 'icon-bi': '../flags/1x1/bi.svg', + 'icon-bj': '../flags/1x1/bj.svg', + 'icon-bl': '../flags/1x1/bl.svg', + 'icon-bm': '../flags/1x1/bm.svg', + 'icon-bn': '../flags/1x1/bn.svg', + 'icon-bo': '../flags/1x1/bo.svg', + 'icon-bq': '../flags/1x1/bq.svg', + 'icon-br': '../flags/1x1/br.svg', + 'icon-bs': '../flags/1x1/bs.svg', + 'icon-bt': '../flags/1x1/bt.svg', + 'icon-bv': '../flags/1x1/bv.svg', + 'icon-bw': '../flags/1x1/bw.svg', + 'icon-by': '../flags/1x1/by.svg', + 'icon-bz': '../flags/1x1/bz.svg', + 'icon-ca': '../flags/1x1/ca.svg', + 'icon-cc': '../flags/1x1/cc.svg', + 'icon-cd': '../flags/1x1/cd.svg', + 'icon-cf': '../flags/1x1/cf.svg', + 'icon-cg': '../flags/1x1/cg.svg', + 'icon-ch': '../flags/1x1/ch.svg', + 'icon-ci': '../flags/1x1/ci.svg', + 'icon-ck': '../flags/1x1/ck.svg', + 'icon-cl': '../flags/1x1/cl.svg', + 'icon-cm': '../flags/1x1/cm.svg', + 'icon-cn': '../flags/1x1/cn.svg', + 'icon-co': '../flags/1x1/co.svg', + 'icon-cr': '../flags/1x1/cr.svg', + 'icon-cu': '../flags/1x1/cu.svg', + 'icon-cv': '../flags/1x1/cv.svg', + 'icon-cw': '../flags/1x1/cw.svg', + 'icon-cx': '../flags/1x1/cx.svg', + 'icon-cy': '../flags/1x1/cy.svg', + 'icon-cz': '../flags/1x1/cz.svg', + 'icon-de': '../flags/1x1/de.svg', + 'icon-dj': '../flags/1x1/dj.svg', + 'icon-dk': '../flags/1x1/dk.svg', + 'icon-dm': '../flags/1x1/dm.svg', + 'icon-do': '../flags/1x1/do.svg', + 'icon-dz': '../flags/1x1/dz.svg', + 'icon-ec': '../flags/1x1/ec.svg', + 'icon-ee': '../flags/1x1/ee.svg', + 'icon-eg': '../flags/1x1/eg.svg', + 'icon-eh': '../flags/1x1/eh.svg', + 'icon-er': '../flags/1x1/er.svg', + 'icon-es': '../flags/1x1/es.svg', + 'icon-et': '../flags/1x1/et.svg', + 'icon-eu': '../flags/1x1/eu.svg', + 'icon-fi': '../flags/1x1/fi.svg', + 'icon-fj': '../flags/1x1/fj.svg', + 'icon-fk': '../flags/1x1/fk.svg', + 'icon-fm': '../flags/1x1/fm.svg', + 'icon-fo': '../flags/1x1/fo.svg', + 'icon-fr': '../flags/1x1/fr.svg', + 'icon-ga': '../flags/1x1/ga.svg', + 'icon-gb': '../flags/1x1/gb.svg', + 'icon-gd': '../flags/1x1/gd.svg', + 'icon-ge': '../flags/1x1/ge.svg', + 'icon-gf': '../flags/1x1/gf.svg', + 'icon-gg': '../flags/1x1/gg.svg', + 'icon-gh': '../flags/1x1/gh.svg', + 'icon-gi': '../flags/1x1/gi.svg', + 'icon-gl': '../flags/1x1/gl.svg', + 'icon-gm': '../flags/1x1/gm.svg', + 'icon-gn': '../flags/1x1/gn.svg', + 'icon-gp': '../flags/1x1/gp.svg', + 'icon-gq': '../flags/1x1/gq.svg', + 'icon-gr': '../flags/1x1/gr.svg', + 'icon-gs': '../flags/1x1/gs.svg', + 'icon-gt': '../flags/1x1/gt.svg', + 'icon-gu': '../flags/1x1/gu.svg', + 'icon-gw': '../flags/1x1/gw.svg', + 'icon-gy': '../flags/1x1/gy.svg', + 'icon-hk': '../flags/1x1/hk.svg', + 'icon-hm': '../flags/1x1/hm.svg', + 'icon-hn': '../flags/1x1/hn.svg', + 'icon-hr': '../flags/1x1/hr.svg', + 'icon-ht': '../flags/1x1/ht.svg', + 'icon-hu': '../flags/1x1/hu.svg', + 'icon-id': '../flags/1x1/id.svg', + 'icon-ie': '../flags/1x1/ie.svg', + 'icon-il': '../flags/1x1/il.svg', + 'icon-im': '../flags/1x1/im.svg', + 'icon-in': '../flags/1x1/in.svg', + 'icon-io': '../flags/1x1/io.svg', + 'icon-iq': '../flags/1x1/iq.svg', + 'icon-ir': '../flags/1x1/ir.svg', + 'icon-is': '../flags/1x1/is.svg', + 'icon-it': '../flags/1x1/it.svg', + 'icon-je': '../flags/1x1/je.svg', + 'icon-jm': '../flags/1x1/jm.svg', + 'icon-jo': '../flags/1x1/jo.svg', + 'icon-jp': '../flags/1x1/jp.svg', + 'icon-ke': '../flags/1x1/ke.svg', + 'icon-kg': '../flags/1x1/kg.svg', + 'icon-kh': '../flags/1x1/kh.svg', + 'icon-ki': '../flags/1x1/ki.svg', + 'icon-km': '../flags/1x1/km.svg', + 'icon-kn': '../flags/1x1/kn.svg', + 'icon-kp': '../flags/1x1/kp.svg', + 'icon-kr': '../flags/1x1/kr.svg', + 'icon-kw': '../flags/1x1/kw.svg', + 'icon-ky': '../flags/1x1/ky.svg', + 'icon-kz': '../flags/1x1/kz.svg', + 'icon-la': '../flags/1x1/la.svg', + 'icon-lb': '../flags/1x1/lb.svg', + 'icon-lc': '../flags/1x1/lc.svg', + 'icon-li': '../flags/1x1/li.svg', + 'icon-lk': '../flags/1x1/lk.svg', + 'icon-lr': '../flags/1x1/lr.svg', + 'icon-ls': '../flags/1x1/ls.svg', + 'icon-lt': '../flags/1x1/lt.svg', + 'icon-lu': '../flags/1x1/lu.svg', + 'icon-lv': '../flags/1x1/lv.svg', + 'icon-ly': '../flags/1x1/ly.svg', + 'icon-ma': '../flags/1x1/ma.svg', + 'icon-mc': '../flags/1x1/mc.svg', + 'icon-md': '../flags/1x1/md.svg', + 'icon-me': '../flags/1x1/me.svg', + 'icon-mf': '../flags/1x1/mf.svg', + 'icon-mg': '../flags/1x1/mg.svg', + 'icon-mh': '../flags/1x1/mh.svg', + 'icon-mk': '../flags/1x1/mk.svg', + 'icon-ml': '../flags/1x1/ml.svg', + 'icon-mm': '../flags/1x1/mm.svg', + 'icon-mn': '../flags/1x1/mn.svg', + 'icon-mo': '../flags/1x1/mo.svg', + 'icon-mp': '../flags/1x1/mp.svg', + 'icon-mq': '../flags/1x1/mq.svg', + 'icon-mr': '../flags/1x1/mr.svg', + 'icon-ms': '../flags/1x1/ms.svg', + 'icon-mt': '../flags/1x1/mt.svg', + 'icon-mu': '../flags/1x1/mu.svg', + 'icon-mv': '../flags/1x1/mv.svg', + 'icon-mw': '../flags/1x1/mw.svg', + 'icon-mx': '../flags/1x1/mx.svg', + 'icon-my': '../flags/1x1/my.svg', + 'icon-mz': '../flags/1x1/mz.svg', + 'icon-na': '../flags/1x1/na.svg', + 'icon-nc': '../flags/1x1/nc.svg', + 'icon-ne': '../flags/1x1/ne.svg', + 'icon-nf': '../flags/1x1/nf.svg', + 'icon-ng': '../flags/1x1/ng.svg', + 'icon-ni': '../flags/1x1/ni.svg', + 'icon-nl': '../flags/1x1/nl.svg', + 'icon-no': '../flags/1x1/no.svg', + 'icon-np': '../flags/1x1/np.svg', + 'icon-nr': '../flags/1x1/nr.svg', + 'icon-nu': '../flags/1x1/nu.svg', + 'icon-nz': '../flags/1x1/nz.svg', + 'icon-om': '../flags/1x1/om.svg', + 'icon-pa': '../flags/1x1/pa.svg', + 'icon-pe': '../flags/1x1/pe.svg', + 'icon-pf': '../flags/1x1/pf.svg', + 'icon-pg': '../flags/1x1/pg.svg', + 'icon-ph': '../flags/1x1/ph.svg', + 'icon-pk': '../flags/1x1/pk.svg', + 'icon-pl': '../flags/1x1/pl.svg', + 'icon-pm': '../flags/1x1/pm.svg', + 'icon-pn': '../flags/1x1/pn.svg', + 'icon-pr': '../flags/1x1/pr.svg', + 'icon-ps': '../flags/1x1/ps.svg', + 'icon-pt': '../flags/1x1/pt.svg', + 'icon-pw': '../flags/1x1/pw.svg', + 'icon-py': '../flags/1x1/py.svg', + 'icon-qa': '../flags/1x1/qa.svg', + 'icon-re': '../flags/1x1/re.svg', + 'icon-ro': '../flags/1x1/ro.svg', + 'icon-rs': '../flags/1x1/rs.svg', + 'icon-ru': '../flags/1x1/ru.svg', + 'icon-rw': '../flags/1x1/rw.svg', + 'icon-sa': '../flags/1x1/sa.svg', + 'icon-sb': '../flags/1x1/sb.svg', + 'icon-sc': '../flags/1x1/sc.svg', + 'icon-sd': '../flags/1x1/sd.svg', + 'icon-se': '../flags/1x1/se.svg', + 'icon-sg': '../flags/1x1/sg.svg', + 'icon-sh': '../flags/1x1/sh.svg', + 'icon-si': '../flags/1x1/si.svg', + 'icon-sj': '../flags/1x1/sj.svg', + 'icon-sk': '../flags/1x1/sk.svg', + 'icon-sl': '../flags/1x1/sl.svg', + 'icon-sm': '../flags/1x1/sm.svg', + 'icon-sn': '../flags/1x1/sn.svg', + 'icon-so': '../flags/1x1/so.svg', + 'icon-sr': '../flags/1x1/sr.svg', + 'icon-ss': '../flags/1x1/ss.svg', + 'icon-st': '../flags/1x1/st.svg', + 'icon-sv': '../flags/1x1/sv.svg', + 'icon-sx': '../flags/1x1/sx.svg', + 'icon-sy': '../flags/1x1/sy.svg', + 'icon-sz': '../flags/1x1/sz.svg', + 'icon-tc': '../flags/1x1/tc.svg', + 'icon-td': '../flags/1x1/td.svg', + 'icon-tf': '../flags/1x1/tf.svg', + 'icon-tg': '../flags/1x1/tg.svg', + 'icon-th': '../flags/1x1/th.svg', + 'icon-tj': '../flags/1x1/tj.svg', + 'icon-tk': '../flags/1x1/tk.svg', + 'icon-tl': '../flags/1x1/tl.svg', + 'icon-tm': '../flags/1x1/tm.svg', + 'icon-tn': '../flags/1x1/tn.svg', + 'icon-to': '../flags/1x1/to.svg', + 'icon-tr': '../flags/1x1/tr.svg', + 'icon-tt': '../flags/1x1/tt.svg', + 'icon-tv': '../flags/1x1/tv.svg', + 'icon-tw': '../flags/1x1/tw.svg', + 'icon-tz': '../flags/1x1/tz.svg', + 'icon-ua': '../flags/1x1/ua.svg', + 'icon-ug': '../flags/1x1/ug.svg', + 'icon-um': '../flags/1x1/um.svg', + 'icon-us': '../flags/1x1/us.svg', + 'icon-uy': '../flags/1x1/uy.svg', + 'icon-uz': '../flags/1x1/uz.svg', + 'icon-va': '../flags/1x1/va.svg', + 'icon-vc': '../flags/1x1/vc.svg', + 'icon-ve': '../flags/1x1/ve.svg', + 'icon-vg': '../flags/1x1/vg.svg', + 'icon-vi': '../flags/1x1/vi.svg', + 'icon-vn': '../flags/1x1/vn.svg', + 'icon-vu': '../flags/1x1/vu.svg', + 'icon-wf': '../flags/1x1/wf.svg', + 'icon-ws': '../flags/1x1/ws.svg', + 'icon-xk': '../flags/1x1/xk.svg', + 'icon-ye': '../flags/1x1/ye.svg', + 'icon-yt': '../flags/1x1/yt.svg', + 'icon-za': '../flags/1x1/za.svg', + 'icon-zm': '../flags/1x1/zm.svg', + 'icon-zw': '../flags/1x1/zw.svg' + }, 'storage' : { 'icon': 'storage-symbolic.svg' }, 'battery' : { 'icon': 'battery-symbolic.svg' }, 'gpu' : { 'icon': 'gpu-symbolic.svg' } } - // list with the prefixes for the according themes, the index of each + // list with the prefixes for the according themes, the index of each // item must match the index on the combo box this._sensorsIconPathPrefix = ['/icons/original/', '/icons/gnome/']; @@ -81,7 +331,12 @@ var VitalsMenuButton = GObject.registerClass({ this._addSettingChangedSignal('menu-centered', this._positionInPanelChanged.bind(this)); this._addSettingChangedSignal('icon-style', this._iconStyleChanged.bind(this)); - let settings = [ 'use-higher-precision', 'alphabetize', 'hide-zeros', 'fixed-widths', 'hide-icons', 'unit', 'memory-measurement', 'include-public-ip', 'network-speed-format', 'storage-measurement', 'include-static-info', 'include-static-gpu-info' ]; + let settings = [ 'use-higher-precision', 'alphabetize', 'hide-zeros', + 'fixed-widths', 'hide-icons', 'unit', + 'memory-measurement', 'include-public-ip', 'network-public-ip-interval', + 'network-public-ip-show-flag', 'network-speed-format', 'storage-measurement', + 'include-static-info', 'include-static-gpu-info' ]; + for (let setting of Object.values(settings)) this._addSettingChangedSignal(setting, this._redrawMenu.bind(this)); @@ -252,7 +507,7 @@ var VitalsMenuButton = GObject.registerClass({ ); } - _createHotItem(key, value) { + _createHotItem(key, value, gicon) { let item = new St.BoxLayout({ style_class: 'vitals-panel-item', }); @@ -261,6 +516,7 @@ var VitalsMenuButton = GObject.registerClass({ if (!this._settings.get_boolean('hide-icons') || key == '_default_icon_') { let icon = this._defaultIcon(key); + if (gicon) icon.gicon = gicon; item.add_child(icon); } @@ -311,7 +567,7 @@ var VitalsMenuButton = GObject.registerClass({ } _redrawDetailsMenuIcons() { - // updates the icons on the 'details' menu, the one + // updates the icons on the 'details' menu, the one // you have to click to appear this._sensors.resetHistory(); for (const sensor in this._sensorIcons) { @@ -323,7 +579,7 @@ var VitalsMenuButton = GObject.registerClass({ const gpuKeys = Object.keys(this._groups).filter(key => key.startsWith("gpu#")); gpuKeys.forEach((gpuKey) => { this._groups[gpuKey].icon.gicon = Gio.icon_new_for_string(this._sensorIconPath("gpu")); - }); + }); } _iconStyleChanged() { @@ -443,7 +699,7 @@ var VitalsMenuButton = GObject.registerClass({ if (self.checked) { // add selected sensor to panel hotSensors.push(self.key); - this._createHotItem(self.key, self.value); + this._createHotItem(self.key, self.value, self.gicon); } else { // remove selected sensor from panel hotSensors.splice(hotSensors.indexOf(self.key), 1); @@ -573,7 +829,8 @@ var VitalsMenuButton = GObject.registerClass({ this._last_query = now; this._sensors.query((label, value, type, format) => { - const typeKey = type.replace('-group', ''); + let typeKey = type.replace('-group', ''); + if (/^network-(?!rx$|tx$)/.test(typeKey)) typeKey = 'network'; let key = '_' + typeKey + '_' + label.replace(' ', '_').toLowerCase() + '_'; // if a sensor is disabled, gray it out @@ -585,7 +842,7 @@ var VitalsMenuButton = GObject.registerClass({ } // add/initialize any gpu groups that we haven't added yet - if(typeKey.startsWith('gpu') && typeKey !== 'gpu#1') { + if (typeKey.startsWith('gpu') && typeKey !== 'gpu#1') { const split = typeKey.split('#'); if(split.length == 2 && this._numGpus < parseInt(split[1])) { // occasionally two lines from nvidia-smi will be read at once @@ -608,8 +865,24 @@ var VitalsMenuButton = GObject.registerClass({ } let items = this._values.returnIfDifferent(dwell, label, value, type, format, key); - for (let item of Object.values(items)) - this._updateDisplay(_(item[0]), item[1], item[2], item[3]); + for (let item of items) { + if (item.type.startsWith('network-') && item.type.length == 10 && item.type != 'network-rx' && item.type != 'network-tx') { + // Geo / flags: stable key (no country in key); type stays network- for icon-us etc. + const stem = item.type.slice('network-'.length); + let flagGIcon = Gio.icon_new_for_string(this._sensorIconPath('network', 'icon-' + stem)); + if (this._hotItems[item.key] && !this._settings.get_boolean('hide-icons')) { + // change icon in menu bar + let icon = this._hotItems[item.key].get_first_child(); + if (icon instanceof St.Icon) + icon.gicon = flagGIcon; + } + // change icon in dropdown + let menuRow = this._sensorMenuItems[item.key]; + if (menuRow) menuRow.gicon = flagGIcon; + } + + this._updateDisplay(_(item.label), item.value, item.type, item.key); + } }, dwell); //if a new gpu has been detected during the last query, then increment the amount of times we've detected a new gpu diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ad.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ad.svg new file mode 100644 index 0000000..f10067e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ae.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ae.svg new file mode 100644 index 0000000..b59e113 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/af.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/af.svg new file mode 100644 index 0000000..9f382e0 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ag.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ag.svg new file mode 100644 index 0000000..9b951b6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ai.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ai.svg new file mode 100644 index 0000000..dfde89a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ai.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/al.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/al.svg new file mode 100644 index 0000000..1056793 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/am.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/am.svg new file mode 100644 index 0000000..a188adf --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ao.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ao.svg new file mode 100644 index 0000000..067ffc4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aq.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aq.svg new file mode 100644 index 0000000..28acee5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ar.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ar.svg new file mode 100644 index 0000000..1cfbbd9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ar.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/arab.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/arab.svg new file mode 100644 index 0000000..aa7c958 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/arab.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/as.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/as.svg new file mode 100644 index 0000000..4c7a9bc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/as.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/asean.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/asean.svg new file mode 100644 index 0000000..8536142 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/asean.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/at.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/at.svg new file mode 100644 index 0000000..758ced6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/at.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/au.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/au.svg new file mode 100644 index 0000000..38bb245 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/au.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aw.svg new file mode 100644 index 0000000..1f03d61 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ax.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ax.svg new file mode 100644 index 0000000..481d2a3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/az.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/az.svg new file mode 100644 index 0000000..d692e22 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ba.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ba.svg new file mode 100644 index 0000000..456ca12 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bb.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bb.svg new file mode 100644 index 0000000..9a42841 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bd.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bd.svg new file mode 100644 index 0000000..86fcfba --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/be.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/be.svg new file mode 100644 index 0000000..31d6210 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bf.svg new file mode 100644 index 0000000..a5078df --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bg.svg new file mode 100644 index 0000000..78412c5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bh.svg new file mode 100644 index 0000000..2d131aa --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bh.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bi.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bi.svg new file mode 100644 index 0000000..36a0d3a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bj.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bj.svg new file mode 100644 index 0000000..bb27414 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bl.svg new file mode 100644 index 0000000..65550d9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bm.svg new file mode 100644 index 0000000..0274d14 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bm.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bn.svg new file mode 100644 index 0000000..8cb06d1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bo.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bo.svg new file mode 100644 index 0000000..b4830ed --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bo.svg @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bq.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bq.svg new file mode 100644 index 0000000..4b9168e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/br.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/br.svg new file mode 100644 index 0000000..d6095d7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bs.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bs.svg new file mode 100644 index 0000000..0faa4bb --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bt.svg new file mode 100644 index 0000000..15eafc7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bv.svg new file mode 100644 index 0000000..dcc6ad1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bw.svg new file mode 100644 index 0000000..328e13c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/by.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/by.svg new file mode 100644 index 0000000..7d2ef67 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/by.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bz.svg new file mode 100644 index 0000000..913392e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ca.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ca.svg new file mode 100644 index 0000000..1c0864c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cc.svg new file mode 100644 index 0000000..73fc800 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cd.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cd.svg new file mode 100644 index 0000000..ea17728 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cefta.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cefta.svg new file mode 100644 index 0000000..ff1a19b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cefta.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cf.svg new file mode 100644 index 0000000..b0625db --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cg.svg new file mode 100644 index 0000000..f786884 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ch.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ch.svg new file mode 100644 index 0000000..52578bf --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ci.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ci.svg new file mode 100644 index 0000000..2abf641 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ck.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ck.svg new file mode 100644 index 0000000..43a1057 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cl.svg new file mode 100644 index 0000000..5fb6096 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cm.svg new file mode 100644 index 0000000..ed4952b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cn.svg new file mode 100644 index 0000000..e152f01 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/co.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/co.svg new file mode 100644 index 0000000..5804bfe --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cp.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cp.svg new file mode 100644 index 0000000..ea3bfdc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cr.svg new file mode 100644 index 0000000..4e7889e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cu.svg new file mode 100644 index 0000000..a284902 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cv.svg new file mode 100644 index 0000000..1170cd7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cw.svg new file mode 100644 index 0000000..57062ab --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cx.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cx.svg new file mode 100644 index 0000000..73c0240 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cy.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cy.svg new file mode 100644 index 0000000..3165d2d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cz.svg new file mode 100644 index 0000000..dcd0a6b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/cz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/de.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/de.svg new file mode 100644 index 0000000..05a0a69 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dg.svg new file mode 100644 index 0000000..8085a08 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dg.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dj.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dj.svg new file mode 100644 index 0000000..f5534d2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dk.svg new file mode 100644 index 0000000..5aaaa19 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dm.svg new file mode 100644 index 0000000..cb7c958 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/do.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/do.svg new file mode 100644 index 0000000..727d669 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/do.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dz.svg new file mode 100644 index 0000000..8abcd25 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eac.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eac.svg new file mode 100644 index 0000000..ee6905e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eac.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ec.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ec.svg new file mode 100644 index 0000000..e11e6ef --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ee.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ee.svg new file mode 100644 index 0000000..5a6a7e3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ee.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eg.svg new file mode 100644 index 0000000..0ce9c65 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eh.svg new file mode 100644 index 0000000..ae509fa --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/er.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/er.svg new file mode 100644 index 0000000..1a4891e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ct.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ct.svg new file mode 100644 index 0000000..a06a2e3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ga.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ga.svg new file mode 100644 index 0000000..ccbb9f5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-ga.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-pv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-pv.svg new file mode 100644 index 0000000..7d383ed --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es-pv.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es.svg new file mode 100644 index 0000000..6bfa092 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/es.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/et.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/et.svg new file mode 100644 index 0000000..eb7f3c4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eu.svg new file mode 100644 index 0000000..4a07fbe --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fi.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fi.svg new file mode 100644 index 0000000..aba2ef3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fj.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fj.svg new file mode 100644 index 0000000..e1c44ee --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fk.svg new file mode 100644 index 0000000..352eb51 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fm.svg new file mode 100644 index 0000000..4f7d313 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fo.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fo.svg new file mode 100644 index 0000000..eec9945 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fr.svg new file mode 100644 index 0000000..0f60170 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/fr.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ga.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ga.svg new file mode 100644 index 0000000..113a5b5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-eng.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-eng.svg new file mode 100644 index 0000000..ee48fed --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-nir.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-nir.svg new file mode 100644 index 0000000..b92e69f --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-nir.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-sct.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-sct.svg new file mode 100644 index 0000000..44d38cc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-wls.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-wls.svg new file mode 100644 index 0000000..5115b59 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb.svg new file mode 100644 index 0000000..ce4d1e0 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gd.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gd.svg new file mode 100644 index 0000000..3159c67 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ge.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ge.svg new file mode 100644 index 0000000..d3dc729 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gf.svg new file mode 100644 index 0000000..9cf5aa2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gg.svg new file mode 100644 index 0000000..480f550 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gh.svg new file mode 100644 index 0000000..a64271b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gi.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gi.svg new file mode 100644 index 0000000..fe465ea --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gl.svg new file mode 100644 index 0000000..eaa817b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gm.svg new file mode 100644 index 0000000..2a8f724 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gn.svg new file mode 100644 index 0000000..ae81f9d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gp.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gp.svg new file mode 100644 index 0000000..9dd8e3b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gq.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gq.svg new file mode 100644 index 0000000..3a991a1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gr.svg new file mode 100644 index 0000000..a268830 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gr.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gs.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gs.svg new file mode 100644 index 0000000..cf596f6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gs.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gt.svg new file mode 100644 index 0000000..b736d28 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gu.svg new file mode 100644 index 0000000..3f4d3da --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gu.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gw.svg new file mode 100644 index 0000000..61a0548 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gy.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gy.svg new file mode 100644 index 0000000..35e2f08 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hk.svg new file mode 100644 index 0000000..eef02a1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hk.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hm.svg new file mode 100644 index 0000000..1f4d007 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hn.svg new file mode 100644 index 0000000..847df20 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hr.svg new file mode 100644 index 0000000..d8719a4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ht.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ht.svg new file mode 100644 index 0000000..101bd59 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hu.svg new file mode 100644 index 0000000..088242d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ic.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ic.svg new file mode 100644 index 0000000..096603d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/id.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/id.svg new file mode 100644 index 0000000..df08018 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/id.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ie.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ie.svg new file mode 100644 index 0000000..e13de22 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/il.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/il.svg new file mode 100644 index 0000000..0a2a6d9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/im.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/im.svg new file mode 100644 index 0000000..05c3fa4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/in.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/in.svg new file mode 100644 index 0000000..26a02cf --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/io.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/io.svg new file mode 100644 index 0000000..9ce776a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/io.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/iq.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/iq.svg new file mode 100644 index 0000000..d354c99 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ir.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ir.svg new file mode 100644 index 0000000..66537b6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/is.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/is.svg new file mode 100644 index 0000000..26510b9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/it.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/it.svg new file mode 100644 index 0000000..b9596d0 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/je.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/je.svg new file mode 100644 index 0000000..52c6645 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/je.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jm.svg new file mode 100644 index 0000000..07f023c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jo.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jo.svg new file mode 100644 index 0000000..fbbd681 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jp.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jp.svg new file mode 100644 index 0000000..118686a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ke.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ke.svg new file mode 100644 index 0000000..09168c2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kg.svg new file mode 100644 index 0000000..732b2f1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kg.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kh.svg new file mode 100644 index 0000000..567577a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ki.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ki.svg new file mode 100644 index 0000000..02d7569 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/km.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/km.svg new file mode 100644 index 0000000..b19fd10 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kn.svg new file mode 100644 index 0000000..42d5adf --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kp.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kp.svg new file mode 100644 index 0000000..67f3338 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kr.svg new file mode 100644 index 0000000..af3d35e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kr.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kw.svg new file mode 100644 index 0000000..b2fe54f --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ky.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ky.svg new file mode 100644 index 0000000..72e5164 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ky.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kz.svg new file mode 100644 index 0000000..c65c5d5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/kz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/la.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/la.svg new file mode 100644 index 0000000..af70d0d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lb.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lb.svg new file mode 100644 index 0000000..a5ffc76 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lc.svg new file mode 100644 index 0000000..aa18fac --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/li.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/li.svg new file mode 100644 index 0000000..436dfc5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lk.svg new file mode 100644 index 0000000..2ac8183 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lr.svg new file mode 100644 index 0000000..74382ab --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ls.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ls.svg new file mode 100644 index 0000000..605c087 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lt.svg new file mode 100644 index 0000000..52ada94 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lu.svg new file mode 100644 index 0000000..037c315 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lv.svg new file mode 100644 index 0000000..5af883c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ly.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ly.svg new file mode 100644 index 0000000..4375a9e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ma.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ma.svg new file mode 100644 index 0000000..8041667 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mc.svg new file mode 100644 index 0000000..04173a4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/md.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/md.svg new file mode 100644 index 0000000..f204511 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/md.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/me.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/me.svg new file mode 100644 index 0000000..25c6b28 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mf.svg new file mode 100644 index 0000000..8d3285b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mg.svg new file mode 100644 index 0000000..4f901ca --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mh.svg new file mode 100644 index 0000000..1db268d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mk.svg new file mode 100644 index 0000000..0ee923a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ml.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ml.svg new file mode 100644 index 0000000..665d6b2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mm.svg new file mode 100644 index 0000000..391f0c7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mm.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mn.svg new file mode 100644 index 0000000..0df5211 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mo.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mo.svg new file mode 100644 index 0000000..50624d7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mp.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mp.svg new file mode 100644 index 0000000..27e8980 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mq.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mq.svg new file mode 100644 index 0000000..dcf0054 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mr.svg new file mode 100644 index 0000000..d06c5b8 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ms.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ms.svg new file mode 100644 index 0000000..53baf7c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ms.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mt.svg new file mode 100644 index 0000000..bcc01dd --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mt.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mu.svg new file mode 100644 index 0000000..2afe1d3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mv.svg new file mode 100644 index 0000000..c9a6c5b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mw.svg new file mode 100644 index 0000000..576ba8c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mx.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mx.svg new file mode 100644 index 0000000..2b371e7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mx.svg @@ -0,0 +1,377 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/my.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/my.svg new file mode 100644 index 0000000..4f62c7d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/my.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mz.svg new file mode 100644 index 0000000..e1e1569 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/na.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/na.svg new file mode 100644 index 0000000..36ac8d7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nc.svg new file mode 100644 index 0000000..6226ebc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ne.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ne.svg new file mode 100644 index 0000000..a96b027 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nf.svg new file mode 100644 index 0000000..c9e5743 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ng.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ng.svg new file mode 100644 index 0000000..62813e8 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ni.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ni.svg new file mode 100644 index 0000000..7ea3eb6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nl.svg new file mode 100644 index 0000000..49ca5bc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/no.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/no.svg new file mode 100644 index 0000000..939920d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/np.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/np.svg new file mode 100644 index 0000000..f0e0b5d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/np.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nr.svg new file mode 100644 index 0000000..c8c827e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nu.svg new file mode 100644 index 0000000..ce31672 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nu.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nz.svg new file mode 100644 index 0000000..ee617d6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/nz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/om.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/om.svg new file mode 100644 index 0000000..038631f --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pa.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pa.svg new file mode 100644 index 0000000..108c40b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pc.svg new file mode 100644 index 0000000..e0d561b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pc.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pe.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pe.svg new file mode 100644 index 0000000..9ba4c61 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pe.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pf.svg new file mode 100644 index 0000000..2580dd2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pg.svg new file mode 100644 index 0000000..1b6e536 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ph.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ph.svg new file mode 100644 index 0000000..390f1fd --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ph.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pk.svg new file mode 100644 index 0000000..1a573af --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pl.svg new file mode 100644 index 0000000..8c43577 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pm.svg new file mode 100644 index 0000000..950c6e8 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pn.svg new file mode 100644 index 0000000..886abca --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pn.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pr.svg new file mode 100644 index 0000000..eb302ad --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ps.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ps.svg new file mode 100644 index 0000000..5d28cc8 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ps.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pt.svg new file mode 100644 index 0000000..6c8334b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pw.svg new file mode 100644 index 0000000..ef6be79 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/py.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/py.svg new file mode 100644 index 0000000..107bd1d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/py.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/qa.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/qa.svg new file mode 100644 index 0000000..897a21b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/re.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/re.svg new file mode 100644 index 0000000..41d87d9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ro.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ro.svg new file mode 100644 index 0000000..e6cf0f6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rs.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rs.svg new file mode 100644 index 0000000..3610fd1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ru.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ru.svg new file mode 100644 index 0000000..f428b0c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ru.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rw.svg new file mode 100644 index 0000000..3d484fd --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sa.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sa.svg new file mode 100644 index 0000000..8bf5eda --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sa.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sb.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sb.svg new file mode 100644 index 0000000..398c708 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sc.svg new file mode 100644 index 0000000..2996bac --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sd.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sd.svg new file mode 100644 index 0000000..0b9abdc --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/se.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/se.svg new file mode 100644 index 0000000..8f3f134 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/se.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sg.svg new file mode 100644 index 0000000..60625e9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ac.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ac.svg new file mode 100644 index 0000000..5f82d66 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ac.svg @@ -0,0 +1,690 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-hl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-hl.svg new file mode 100644 index 0000000..179fed6 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-hl.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ta.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ta.svg new file mode 100644 index 0000000..619301b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh-ta.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh.svg new file mode 100644 index 0000000..2fd3727 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/si.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/si.svg new file mode 100644 index 0000000..ba67e19 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sj.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sj.svg new file mode 100644 index 0000000..ecb9c79 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sk.svg new file mode 100644 index 0000000..4846127 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sl.svg new file mode 100644 index 0000000..b649f1b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sm.svg new file mode 100644 index 0000000..7fe8b14 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sm.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sn.svg new file mode 100644 index 0000000..ff9cf2e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/so.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/so.svg new file mode 100644 index 0000000..4848dbe --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sr.svg new file mode 100644 index 0000000..0ca3596 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ss.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ss.svg new file mode 100644 index 0000000..bb50fac --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/st.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/st.svg new file mode 100644 index 0000000..c5e7c5c --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sv.svg new file mode 100644 index 0000000..110f78d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sv.svg @@ -0,0 +1,593 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sx.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sx.svg new file mode 100644 index 0000000..fbf7468 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sy.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sy.svg new file mode 100644 index 0000000..b2fdc2f --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sz.svg new file mode 100644 index 0000000..bd5e237 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/sz.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tc.svg new file mode 100644 index 0000000..52a2452 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/td.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/td.svg new file mode 100644 index 0000000..8201312 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tf.svg new file mode 100644 index 0000000..1ab7f6a --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tg.svg new file mode 100644 index 0000000..6ed03c5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/th.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/th.svg new file mode 100644 index 0000000..35141d3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tj.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tj.svg new file mode 100644 index 0000000..9232ec1 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tk.svg new file mode 100644 index 0000000..9ff92e5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tl.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tl.svg new file mode 100644 index 0000000..4fbb245 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tm.svg new file mode 100644 index 0000000..0272d71 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tm.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tn.svg new file mode 100644 index 0000000..ab3e36e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tn.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/to.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/to.svg new file mode 100644 index 0000000..3f1b600 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tr.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tr.svg new file mode 100644 index 0000000..0fe9017 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tt.svg new file mode 100644 index 0000000..0f7f26e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tv.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tv.svg new file mode 100644 index 0000000..098b916 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tv.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tw.svg new file mode 100644 index 0000000..83f4e44 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tw.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tz.svg new file mode 100644 index 0000000..846cbb5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ua.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ua.svg new file mode 100644 index 0000000..7ceb894 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ug.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ug.svg new file mode 100644 index 0000000..fd377df --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/um.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/um.svg new file mode 100644 index 0000000..b8d4502 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/um.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/un.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/un.svg new file mode 100644 index 0000000..fc75c91 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/us.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/us.svg new file mode 100644 index 0000000..a722047 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/us.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uy.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uy.svg new file mode 100644 index 0000000..f6b08b2 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uz.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uz.svg new file mode 100644 index 0000000..3385bc5 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/va.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/va.svg new file mode 100644 index 0000000..04e6d50 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/va.svg @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vc.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vc.svg new file mode 100644 index 0000000..21d41a8 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ve.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ve.svg new file mode 100644 index 0000000..665135b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vg.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vg.svg new file mode 100644 index 0000000..31fcae3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vg.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vi.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vi.svg new file mode 100644 index 0000000..4509ac9 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vn.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vn.svg new file mode 100644 index 0000000..49a68f0 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vu.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vu.svg new file mode 100644 index 0000000..3dbcf95 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/vu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/wf.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/wf.svg new file mode 100644 index 0000000..5ba64e4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/wf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ws.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ws.svg new file mode 100644 index 0000000..ab08fdb --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xk.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xk.svg new file mode 100644 index 0000000..b5403e3 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xx.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xx.svg new file mode 100644 index 0000000..5a44cb7 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/xx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ye.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ye.svg new file mode 100644 index 0000000..2ccb23b --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/yt.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/yt.svg new file mode 100644 index 0000000..41a4408 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/yt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/za.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/za.svg new file mode 100644 index 0000000..397696e --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zm.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zm.svg new file mode 100644 index 0000000..9b20601 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zw.svg b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zw.svg new file mode 100644 index 0000000..f9f65ee --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/flag-icons.LICENSE b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/flag-icons.LICENSE new file mode 100644 index 0000000..22bf5cf --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/icons/flags/flag-icons.LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) 2013 Panayiotis Lipiridis + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Vendored from https://github.com/lipis/flag-icons (MIT License). diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/locale/ka/LC_MESSAGES/vitals.mo b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/locale/ka/LC_MESSAGES/vitals.mo new file mode 100644 index 0000000000000000000000000000000000000000..ad5d7e3da495f34ca94b0934f28abe01e1a9a8f6 GIT binary patch literal 18533 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 WE3jzdv8LvwyLc!6Em;3+@c#ihB>74J literal 0 HcmV?d00001 diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/menuItem.js b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/menuItem.js index cf112ab..81b6eab 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/menuItem.js +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/menuItem.js @@ -21,7 +21,8 @@ export const MenuItem = GObject.registerClass({ this._gIcon = icon; // add icon - this.add_child(new St.Icon({ style_class: 'popup-menu-icon', gicon : this._gIcon })); + this._iconActor = new St.Icon({ style_class: 'popup-menu-icon', gicon : this._gIcon }); + this.add_child(this._iconActor); // add label this._labelActor = new St.Label({ text: label }); @@ -49,6 +50,12 @@ export const MenuItem = GObject.registerClass({ return this._gIcon; } + set gicon(icon) { + this._gIcon = icon; + if (this._iconActor) + this._iconActor.gicon = icon; + } + set value(value) { this._valueLabel.text = value; } diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/metadata.json b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/metadata.json index bb2e767..0bb8476 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/metadata.json @@ -17,5 +17,5 @@ ], "url": "https://github.com/corecoding/Vitals", "uuid": "Vitals@CoreCoding.com", - "version": 75 + "version": 76 } \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.js b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.js index 07916bd..bdeb9a8 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.js +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.js @@ -47,8 +47,8 @@ const Settings = new GObject.Class({ 'show-memory', 'show-processor', 'show-system', 'show-network', 'show-storage', 'use-higher-precision', 'alphabetize', 'hide-zeros', 'include-public-ip', - 'show-battery', 'fixed-widths', 'hide-icons', - 'menu-centered', 'include-static-info', + 'network-public-ip-show-flag', 'show-battery', 'fixed-widths', + 'hide-icons', 'menu-centered', 'include-static-info', 'show-gpu', 'include-static-gpu-info' ]; for (let key in sensors) { @@ -75,6 +75,9 @@ const Settings = new GObject.Class({ this._settings.bind('update-time', this.builder.get_object('update-time'), 'value', Gio.SettingsBindFlags.DEFAULT); + this._settings.bind('network-public-ip-interval', this.builder.get_object('network-public-ip-interval'), + 'value', Gio.SettingsBindFlags.DEFAULT); + // process individual text entry sensor preferences sensors = [ 'storage-path', 'monitor-cmd' ]; for (let key in sensors) { diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.ui b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.ui index 950c1b0..156799b 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.ui +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/prefs.ui @@ -8,7 +8,7 @@ 10 - 0 + 1 12 12 6 @@ -16,10 +16,10 @@ vertical - 0 + 1 - 0 + 1 none @@ -52,6 +52,68 @@ + + + 1 + + + horizontal + 12 + 6 + + + 1 + start + Update in minutes + + + + + + 1 + 1 + if-valid + + + 15 + 1440 + 1 + + + + + + + + + + + True + + + True + 10 + 10 + 10 + 10 + + + True + Show country flag + 0 + + + + + True + end + True + + + + + + 100 diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/gschemas.compiled b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/gschemas.compiled index 936fdb3a506ffb8d2405e995628fbde747e729c0..b84716f2279c87ea5ad1ad1bc993508bb54a2564 100644 GIT binary patch literal 2084 zcmZWqO^g&p7%h|)++|rnz|3ZctD7KKz8yYyKmGSXB>PG*fsa$GRL8& ze*`=MJl)t=rccfFdf*tiIX8NZJ~iV{fZqkaeC}?IJ~h`n3qAvke{svFPfhmvMeq{v=gfY4Uetr|S%`hW*iX+M zV?6av_$BaOVC3XePtd2{0Dl~O5LmqU^~dz7?LL4ffaYj@nm#r2e--Qj-))~ePM>-; z{21H;2A78_^r@NuDex@t`hn$P`qabl&x7ZI^KW~1=u>ZnzW}}pEWNnwFoJQCb_O3f-+N3IUiVvuGQ}O(!a%NPb ziyJS>^@{QIloP5@C)2C=?l*Mgm~=W&m<3PS&qG==%D+dAAj2?mRuBA!8_Q zay-B7slXGcn;F?wu5j~A-9XExI~u}pBb83+q;}_ZG!{y`0 z+W0BX0(m;Ij1=;;|0Ourx=fM!v||Fj@}I-}We|I^u2O#{uYun9`AOM#TT3h!Cc(NX z>cXTlWnDxqZGD5P#6Do|?lJ{dfnp3*lsOH>-BZmXV~q3v4YoVi3S_&N2MRk@iA=ME z8TR~QvVX5Xi<>f4PU?q>^}+RJxGF`6eeb3iDrqnx63aicwiut6D=x`@KV#nf`#no< m$62v_?u*U7*lEVwr|ToM``%r*i4~5wrIS$hl0*>lVCX+*E3Ik( literal 1972 zcmZWqUuYaf93C~bHEEh_`p>A<7EvzB+z~1|PRe;k)nKZ)azIzu)Zq z?zxxzEc6pA%IkjcbfK$vm)>3A8?_(D$$WNHoD%22eSJdgI3UCwTq`?ai08#B_;WyK z?OHq0v8tIsMNv(4tV&F%6H}WFtsfZ<7ovK^kr14l>k;<=m|Aek9{Qn)ff9q@J-}XI zAFv-dSmF?vd5n~J0Q}%K9EK(yF7e&@HwKu4%SX(L3Kky+j$U~B$$K$|x&r?c_yypn zM6J-L-VZ+jr$B40(WOs40RK(!Md0el(mDFneef@V7l6t9+8llA-SC&eE5K$=pX$(ti5XtbYf59$0-V_=`UEA@~d6 zMc|M5W3CR=gYZ|uUjVNi-xvltJq&*hH`jp=ZvQexpL!4cAHY8Y-!CoFa+>jQvA==* z!iO$jYWfv?v!x%5&!Y5MrNw_r> z1ojB_6rTSIa38>P&pyH)z@D)SV2@xAVm$0E>>)gU>_x*s5Vn*Io9JJ-aToG+K^m*G zGD!F?PUp|~N$)<;RvNTFof$7yvCg_)Zt#vLJkvF(qZetv<&DKKyj~Hrju-nK&l5vO zj)|&oiq(qO%XJu!G`1TRwPbzEXk@H>gN=z*+1i;KpT`=7)|qU^Ejq$&wJf5Lk<_;D Zqul5J`KW^Pu%7$q=2fN{9PZ1p{{VT+hkyV8 diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/org.gnome.shell.extensions.vitals.gschema.xml b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/org.gnome.shell.extensions.vitals.gschema.xml index 7a0decd..fef102d 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/org.gnome.shell.extensions.vitals.gschema.xml +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/org.gnome.shell.extensions.vitals.gschema.xml @@ -81,6 +81,14 @@ Include public IP address Display public IP address of internet connection + + 60 + Public IP refresh interval in minutes + + + true + Show country flag for public IP + 0 Network speed format diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/sensors.js b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/sensors.js index be8df5d..d61b090 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/sensors.js +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/sensors.js @@ -53,6 +53,7 @@ export const Sensors = GObject.registerClass({ this._settingChangedSignals = []; this._addSettingChangedSignal('show-gpu', this._reconfigureNvidiaSmiProcess.bind(this)); this._addSettingChangedSignal('update-time', this._reconfigureNvidiaSmiProcess.bind(this)); + this._addSettingChangedSignal('network-public-ip-interval', () => {this._lastPublicIPCheck = 0;}); //this._addSettingChangedSignal('include-static-gpu-info', this._reconfigureNvidiaSmiProcess.bind(this)); this._gpu_drm_vendors = null; @@ -85,7 +86,11 @@ export const Sensors = GObject.registerClass({ // check IP address new FileModule.File('https://ipv4.corecoding.com').read().then(contents => { let obj = JSON.parse(contents); - this._returnValue(callback, 'Public IP', obj['IPv4'], 'network', 'string'); + let cc = (obj && typeof obj['countryCode'] === 'string') ? obj['countryCode'].trim().toLowerCase() : ''; + let ip = (obj && typeof obj['IPv4'] === 'string') ? obj['IPv4'].trim() : ''; + const showFlag = this._settings.get_boolean('network-public-ip-show-flag'); + let typeOut = (showFlag && /^[a-z]{2}$/.test(cc)) ? ('network-' + cc) : 'network'; + this._returnValue(callback, 'Public IP', ip, typeOut, 'string'); }).catch(err => { }); } @@ -309,7 +314,8 @@ export const Sensors = GObject.registerClass({ if (this._settings.get_boolean('include-public-ip')) { // check the public ip every hour or when waking from sleep if (this._next_public_ip_check <= 0) { - this._next_public_ip_check = 3600; + let intervalMinutes = this._settings.get_int('network-public-ip-interval'); + this._next_public_ip_check = intervalMinutes * 60; this._refreshIPAddress(callback); } diff --git a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/values.js b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/values.js index f16778c..110d0fd 100644 --- a/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/values.js +++ b/gnome/.local/share/gnome-shell/extensions/Vitals@CoreCoding.com/values.js @@ -221,30 +221,33 @@ export const Values = GObject.registerClass({ returnIfDifferent(dwell, label, value, type, format, key) { let output = []; + // Use one history bucket for network- types (geo IP), except for rx/tx. + let historyType = (/^network-(?!rx$|tx$)[a-z]{2}(?:-group)?$/.test(type)) ? 'network' : type; + // make sure the keys exist - if (!(type in this._history)) this._history[type] = {}; + if (!(historyType in this._history)) this._history[historyType] = {}; // no sense in continuing when the raw value has not changed - if (type != 'network-rx' && type != 'network-tx' && - key in this._history[type] && this._history[type][key][1] == value) + if (historyType != 'network-rx' && historyType != 'network-tx' && + key in this._history[historyType] && this._history[historyType][key][1] == value) return output; // is the value different from last time? let legible = this._legible(value, format); // don't return early when dealing with network traffic - if (type != 'network-rx' && type != 'network-tx') { + if (historyType != 'network-rx' && historyType != 'network-tx') { // only update when we are coming through for the first time, or if a value has changed - if (key in this._history[type] && this._history[type][key][0] == legible) + if (key in this._history[historyType] && this._history[historyType][key][0] == legible) return output; - // add label as it was sent from sensors class - output.push([label, legible, type, key]); + // add label as it was sent from sensors class; type stays e.g. network-us for display/icons + output.push({ label, value: legible, type, key }); } // save previous values to update screen on changes only - let previousValue = this._history[type][key]; - this._history[type][key] = [legible, value]; + let previousValue = this._history[historyType][key]; + this._history[historyType][key] = [legible, value]; // process average, min and max values if (type == 'temperature' || type == 'voltage' || type == 'fan') { @@ -253,21 +256,21 @@ export const Values = GObject.registerClass({ // show value in group even if there is one value present let sum = vals.reduce((a, b) => a + b); let avg = this._legible(sum / vals.length, format); - output.push([type, avg, type + '-group', '']); + output.push({ label: type, value: avg, type: type + '-group', key: '' }); // If only one value is present, don't display avg, min and max if (vals.length > 1) { - output.push(['Average', avg, type, '__' + type + '_avg__']); + output.push({ label: 'Average', value: avg, type, key: '__' + type + '_avg__' }); // calculate Minimum value let min = Math.min(...vals); min = this._legible(min, format); - output.push(['Minimum', min, type, '__' + type + '_min__']); + output.push({ label: 'Minimum', value: min, type, key: '__' + type + '_min__' }); // calculate Maximum value let max = Math.max(...vals); max = this._legible(max, format); - output.push(['Maximum', max, type, '__' + type + '_max__']); + output.push({ label: 'Maximum', value: max, type, key: '__' + type + '_max__' }); } } else if (type == 'network-rx' || type == 'network-tx') { let direction = type.split('-')[1]; @@ -276,18 +279,18 @@ export const Values = GObject.registerClass({ let vals = Object.values(this._history[type]).map(x => parseFloat(x[1])); let sum = vals.reduce((partialSum, a) => partialSum + a, 0); const memUnit = this._settings.get_int('memory-measurement') ? 1000 : 1024; - output.push(['Boot ' + direction, this._legible(sum, format), type, '__' + type + '_boot__']); + output.push({ label: 'Boot ' + direction, value: this._legible(sum, format), type, key: '__' + type + '_boot__' }); // keeps track of session start point if (!(key in this._networkSpeedOffset) || this._networkSpeedOffset[key] <= 0) this._networkSpeedOffset[key] = sum; // outputs session upload and download for all interfaces for #234 - output.push(['Session ' + direction, this._legible(sum - this._networkSpeedOffset[key], format), type, '__' + type + '_ses__']); + output.push({ label: 'Session ' + direction, value: this._legible(sum - this._networkSpeedOffset[key], format), type, key: '__' + type + '_ses__' }); // calculate speed for this interface let speed = (value - previousValue[1]) / dwell; - output.push([label, this._legible(speed, 'speed'), type, key]); + output.push({ label, value: this._legible(speed, 'speed'), type, key }); // store speed for Device report if (!(direction in this._networkSpeeds)) this._networkSpeeds[direction] = {}; @@ -304,36 +307,12 @@ export const Values = GObject.registerClass({ sumNum += parseFloat(this._networkSpeeds[direction][iface]); let sum = this._legible(sumNum, 'speed'); - output.push(['Device ' + direction, sum, 'network-' + direction, '__network-' + direction + '_max__']); + output.push({ label: 'Device ' + direction, value: sum, type: 'network-' + direction, key: '__network-' + direction + '_max__' }); // append download speed to group itself - if (direction == 'rx') output.push([type, sum, type + '-group', '']); + if (direction == 'rx') output.push({ label: type, value: sum, type: type + '-group', key: '' }); } } -/* - global.log('before', JSON.stringify(output)); - for (let i = output.length - 1; i >= 0; i--) { - let sensor = output[i]; - // sensor[0]=label, sensor[1]=value, sensor[2]=type, sensor[3]=key) - - //["CPU Core 5","46°C","temperature","_temperature_hwmon8temp7_"] - - // make sure the keys exist - if (!(sensor[2] in this._history2)) this._history2[sensor[2]] = {}; - - if (sensor[3] in this._history2[sensor[2]]) { - if (this._history2[sensor[2]][sensor[3]] == sensor[1]) { - output.splice(i, 1); - } - } - - this._history2[sensor[2]][sensor[3]] = sensor[1]; - } - - global.log(' after', JSON.stringify(output)); - global.log('***************************'); -*/ - return output; } diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/applications.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/applications.js index af55247..5280b55 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/applications.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/applications.js @@ -166,7 +166,7 @@ export const ApplicationsBlur = class ApplicationsBlur { let window_actor = meta_window.get_compositor_private(); if ( - (!meta_window.get_workspace().active) || meta_window.minimized + (!meta_window.get_workspace().active) || meta_window.minimized ) window_actor.hide(); }); @@ -385,10 +385,27 @@ export const ApplicationsBlur = class ApplicationsBlur { // set the window actor's opacity this.set_window_opacity(window_actor, this.settings.applications.OPACITY); + // update corner radius based on window state + this.update_corner_radius(meta_window); + // now set up the signals, for the window actor only: they are disconnected // in `remove_blur`, whereas the signals for the meta window are disconnected // only when the whole component is disabled + // listen for window state changes (maximized/fullscreen) + this.connections.connect( + meta_window, 'notify::maximized-horizontally', + _ => this.update_corner_radius(meta_window) + ); + this.connections.connect( + meta_window, 'notify::maximized-vertically', + _ => this.update_corner_radius(meta_window) + ); + this.connections.connect( + meta_window, 'notify::fullscreen', + _ => this.update_corner_radius(meta_window) + ); + // update the window opacity when it changes, else we don't control it fully this.connections.connect( window_actor, 'notify::opacity', @@ -472,6 +489,33 @@ export const ApplicationsBlur = class ApplicationsBlur { ); } + /// Update the corner radius based on window state (0 for maximized/fullscreen) + /// if the preferences say so. + update_corner_radius(meta_window) { + const is_maximized = meta_window.maximized_horizontally || meta_window.maximized_vertically; + const is_fullscreen = meta_window.fullscreen; + + let use_0_radius = !this.settings.applications.CORNER_WHEN_MAXIMIZED && (is_maximized || is_fullscreen); + + if (this.settings.applications.STATIC_BLUR) { + meta_window.bg_manager?._bms_pipeline?.effects.forEach(effect => { + if (effect.constructor.name === "CornerEffect") + effect.straight_corners = use_0_radius; + }) + } else { + if (meta_window.bg_manager?._bms_pipeline?.effect) + meta_window.bg_manager._bms_pipeline.effect.corner_radius = use_0_radius ? + 0 : this.settings.applications.CORNER_RADIUS; + } + } + + /// Update all corners, to use when the setting has been changed. + update_all_corner_radii() { + this.meta_window_map.forEach( + (meta_window, _pid) => this.update_corner_radius(meta_window) + ) + } + /// Set the opacity of the window actor that sits on top of the blur effect. set_window_opacity(window_actor, opacity) { window_actor?.get_children().forEach(child => { diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/panel.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/panel.js index 6c084cf..bd39166 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/panel.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/components/panel.js @@ -63,11 +63,34 @@ export const PanelBlur = class PanelBlur { // the blur when a window is near a panel this.connect_to_windows_and_overview(); - // connect to workareas change - this.connections.connect(global.display, 'workareas-changed', - _ => this.reset() + // connect to monitors change, and set a dirty flag to tell the extension that it should be + // reset on 'workareas-changed' signal + this._dirty = false; + this.connections.connect(Main.layoutManager, 'monitors-changed', + _ => this._dirty = true ); + this.connections.connect(global.display, 'workareas-changed', _ => { + if (this._dirty) { + // the monitors chaned + this.reset(); + this._dirty = false; + } + else { + // blur panels created by extension multi-monitors-bar@frederykabryan + // I would like to connect directly to Main.uiGroup 'child-added' but it seems + // like the name is updated too late... + Main.uiGroup.get_children().forEach(child => { + if (child.get_name() === "panelBox" && + child != Main.layoutManager.panelBox && + child.get_n_children() == 1 + ) { + this.maybe_blur_panel(child.get_child_at_index(0)); + } + }); + } + }) + this.enabled = true; } @@ -95,8 +118,18 @@ export const PanelBlur = class PanelBlur { if (this.settings.dash_to_panel.BLUR_ORIGINAL_PANEL && isMainPanelAlive) this.maybe_blur_panel(Main.panel); } else { - // if no dash-to-panel, blur the main and only panel - this.maybe_blur_panel(Main.panel); + // if no dash-to-panel, blur the main panel + if (isMainPanelAlive) + this.maybe_blur_panel(Main.panel); + + // blur panels already created by extension multi-monitors-bar@frederykabryan + Main.uiGroup.get_children().forEach(actor => { + if (actor.get_name() === "panelBox" && actor.get_n_children() === 1) { + let multi_monitor_panel = actor.get_child_at_index(0); + if (isMainPanelAlive && multi_monitor_panel != Main.panel) + this.maybe_blur_panel(multi_monitor_panel); + } + }) } } @@ -385,10 +418,8 @@ export const PanelBlur = class PanelBlur { /// Update the css classname of the panel for light theme update_light_text_classname(disable = false) { - if (!isMainPanelAlive) { - this._log("cannot update light text classname, Main.panel is not alive"); + if (!isMainPanelAlive) return; - } if (this.settings.panel.FORCE_LIGHT_TEXT && !disable) Main.panel.add_style_class_name("panel-light-text"); @@ -561,6 +592,8 @@ export const PanelBlur = class PanelBlur { immutable_actors_list.forEach(actors => this.destroy_blur(actors, false)); this.actors_list = []; + this._dirty = true; + this.connections.disconnect_all(); this.enabled = false; diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/dummy_pipeline.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/dummy_pipeline.js index 544d68c..02b2d13 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/dummy_pipeline.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/dummy_pipeline.js @@ -43,6 +43,7 @@ export const DummyPipeline = class DummyPipeline { this.build_effect({ unscaled_radius: 2 * this.settings.SIGMA, brightness: this.settings.BRIGHTNESS, + corner_radius: this.settings.CORNER_RADIUS, }); this.actor_destroy_id = this.actor.connect( @@ -75,6 +76,9 @@ export const DummyPipeline = class DummyPipeline { this._brightness_changed_id = this.settings.settings.connect( 'changed::brightness', () => this.effect.brightness = this.settings.BRIGHTNESS ); + this._corner_radius_changed_id = this.settings.settings.connect( + 'changed::corner-radius', () => this.effect.corner_radius = this.settings.CORNER_RADIUS + ); } repaint_effect() { @@ -92,8 +96,11 @@ export const DummyPipeline = class DummyPipeline { this.settings.settings.disconnect(this._sigma_changed_id); if (this._brightness_changed_id) this.settings.settings.disconnect(this._brightness_changed_id); + if (this._corner_radius_changed_id) + this.settings.settings.disconnect(this._corner_radius_changed_id); delete this._sigma_changed_id; delete this._brightness_changed_id; + delete this._corner_radius_changed_id; } /// Do nothing for this dummy pipeline. @@ -109,4 +116,4 @@ export const DummyPipeline = class DummyPipeline { _warn(str) { console.warn(`[Blur my Shell > dummy pip] ${str}`); } -}; \ No newline at end of file +}; diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/keys.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/keys.js index fcde72b..d821b88 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/keys.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/keys.js @@ -6,6 +6,7 @@ export const KEYS = [ component: "general", schemas: [ { type: Type.PIPELINES, name: "pipelines" }, { type: Type.I, name: "hacks-level" }, + { type: Type.B, name: "rounded-blur-found" }, { type: Type.B, name: "debug" }, ] }, @@ -31,6 +32,7 @@ export const KEYS = [ { type: Type.S, name: "pipeline" }, { type: Type.I, name: "sigma" }, { type: Type.D, name: "brightness" }, + { type: Type.I, name: "corner-radius" }, { type: Type.B, name: "unblur-in-overview" }, { type: Type.B, name: "force-light-text" }, { type: Type.B, name: "override-background" }, @@ -45,6 +47,7 @@ export const KEYS = [ { type: Type.S, name: "pipeline" }, { type: Type.I, name: "sigma" }, { type: Type.D, name: "brightness" }, + { type: Type.I, name: "corner-radius" }, { type: Type.B, name: "unblur-in-overview" }, { type: Type.B, name: "override-background" }, { type: Type.I, name: "style-dash-to-dock" }, @@ -57,6 +60,8 @@ export const KEYS = [ { type: Type.S, name: "pipeline" }, { type: Type.I, name: "sigma" }, { type: Type.D, name: "brightness" }, + { type: Type.I, name: "corner-radius" }, + { type: Type.B, name: "corner-when-maximized" }, { type: Type.I, name: "opacity" }, { type: Type.B, name: "dynamic-opacity" }, { type: Type.B, name: "blur-on-overview" }, @@ -187,4 +192,4 @@ export const DEPRECATED_KEYS = [ { type: Type.D, name: "noise-lightness" }, ] }, -]; \ No newline at end of file +]; diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/settings_updater.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/settings_updater.js index 2affbc1..f81ce7d 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/settings_updater.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/settings_updater.js @@ -29,6 +29,7 @@ export function update_from_old_settings(gsettings) { if (!deprecated_component.CUSTOMIZE) { new_component.SIGMA = deprecated_preferences.SIGMA; new_component.BRIGHTNESS = deprecated_preferences.BRIGHTNESS; + new_component.CORNER_RADIUS = deprecated_preferences.CORNER_RADIUS; } }); @@ -37,4 +38,4 @@ export function update_from_old_settings(gsettings) { } preferences.settings.set_int('settings-version', CURRENT_SETTINGS_VERSION); -} \ No newline at end of file +} diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/utils.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/utils.js index 0277e0e..20def0b 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/utils.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/conveniences/utils.js @@ -9,7 +9,11 @@ export const IS_IN_PREFERENCES = typeof global === 'undefined'; export async function import_in_shell_only(module) { if (IS_IN_PREFERENCES) return null; - return (await import(module)).default; + try { + return (await import(module)).default; + } catch (e) { + return null; + } } // In use for the effects, to prevent boilerplate code diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.glsl b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.glsl index 760798a..0b7b0fb 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.glsl +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.glsl @@ -7,6 +7,7 @@ uniform float width; uniform float height; uniform bool corners_top; uniform bool corners_bottom; +uniform bool straight_corners; uniform float clip_x0; uniform float clip_y0; @@ -65,7 +66,9 @@ float rounded_rect_coverage(vec2 p, vec4 bounds, float clip_radius) { float center_top = bounds.y + clip_radius; float center_bottom = bounds.w - clip_radius; - if (corners_top && p.y < center_top) + if (straight_corners) + return 1.0; + else if (corners_top && p.y < center_top) center.y = center_top + 2.; else if (corners_bottom && p.y > center_bottom) center.y = center_bottom - 1.; diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.js index 109be12..1727e30 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/corner.js @@ -77,6 +77,7 @@ export const CornerEffect = utils.IS_IN_PREFERENCES ? this._clip_height = null; utils.setup_params(this, params); + this.straight_corners = false; // set shader source this._source = utils.get_shader_source(Shell, SHADER_FILENAME, import.meta.url); @@ -165,6 +166,18 @@ export const CornerEffect = utils.IS_IN_PREFERENCES ? } } + get straight_corners() { + return this._straight_corners; + } + + set straight_corners(value) { + if (this._straight_corners !== value) { + this._straight_corners = value; + + this.set_uniform_value('straight_corners', this._straight_corners ? 1 : 0); + } + } + get clip() { return [this._clip_x0, this._clip_y0, this._clip_width, this._clip_height]; } diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/effects.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/effects.js index e35588d..4ab5a71 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/effects.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/effects.js @@ -11,6 +11,7 @@ import { PixelizeEffect } from './pixelize.js'; import { DerivativeEffect } from './derivative.js'; import { RgbToHslEffect } from './rgb_to_hsl.js'; import { HslToRgbEffect } from './hsl_to_rgb.js'; +import { LuminosityEffect } from './luminosity.js'; // We do in this way because I've not found another way to store our preferences in a dictionnary // while calling `gettext` on it while in preferences. Not so pretty, but works. @@ -33,6 +34,7 @@ export function get_effects_groups(_ = _ => "") { "derivative", "noise", "color", + "luminosity", "rgb_to_hsl", "hsl_to_rgb" ] @@ -167,7 +169,8 @@ export function get_supported_effects(_ = () => "") { color: { name: _("Color"), description: _("The color to blend in. The blending amount is controled by the opacity of the color."), - type: "rgba" + type: "rgba", + use_alpha: true }, blend_mode: { name: _("Blend mode"), @@ -197,6 +200,65 @@ export function get_supported_effects(_ = () => "") { } }, + luminosity: { + class: LuminosityEffect, + name: _("Luminosity"), + description: _("An effect that affects the luminosity of the image."), + is_advanced: false, + editable_params: { + brightness_shift: { + name: _("Shift brightness"), + description: _("The brightness to add of remove to the image."), + type: "float", + min: -1., + max: 1., + increment: 0.01, + big_increment: 0.1, + digits: 2 + }, + brightness_multiplicator: { + name: _("Multiply brightness"), + description: _("The brightness multiplicator of the image, so that 0 means no brightness and 2 means infinite brightness."), + type: "float", + min: 0., + max: 2., + increment: 0.01, + big_increment: 0.1, + digits: 2 + }, + contrast: { + name: _("Contrast"), + description: _("The contrast of the image in regard to the center of the contrast."), + type: "float", + min: 0., + max: 2., + increment: 0.01, + big_increment: 0.1, + digits: 2 + }, + contrast_center: { + name: _("Contrast center"), + description: _("The center of the contrast to use."), + type: "float", + min: 0., + max: 1., + increment: 0.01, + big_increment: 0.1, + digits: 2 + }, + saturation_multiplicator: { + name: _("Saturation"), + description: _("The saturation of the image, so that 0 means no saturation and 2 means infinite saturation."), + type: "float", + min: 0., + max: 2., + increment: 0.01, + big_increment: 0.1, + digits: 2 + }, + } + }, + pixelize: { class: PixelizeEffect, name: _("Pixelize"), @@ -343,7 +405,7 @@ export function get_supported_effects(_ = () => "") { description: _("The radius of the corner. GNOME apps use a radius of 12 px by default."), type: "integer", min: 0, - max: 50, + max: 150, increment: 1, }, corners_top: { diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.glsl b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.glsl new file mode 100644 index 0000000..4c50ca4 --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.glsl @@ -0,0 +1,33 @@ +uniform sampler2D tex; +uniform float brightness_shift; +uniform float brightness_multiplicator; +uniform float contrast; +uniform float contrast_center; +uniform float saturation_multiplicator; + +vec3 hsl_to_rgb(vec3 c) { + vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); +} + +vec3 rgb_to_hsl(vec3 c) { + vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); + vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); + + float d = q.x - min(q.w, q.y); + float e = 1.0e-10; + return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +void main() { + vec4 c = texture2D(tex, cogl_tex_coord_in[0].st); + + vec3 pix_hsl = rgb_to_hsl(c.xyz) / c.a; + pix_hsl.z = clamp(pix_hsl.z * brightness_multiplicator, 0., 1.); + pix_hsl.z = clamp((pix_hsl.z - contrast_center) * contrast + contrast_center + brightness_shift, 0., 1.); + pix_hsl.y = clamp(pix_hsl.y * saturation_multiplicator, 0., 1.); + + cogl_color_out = vec4(hsl_to_rgb(pix_hsl) * c.a, c.a); +} \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.js new file mode 100644 index 0000000..c22636d --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/luminosity.js @@ -0,0 +1,141 @@ +import GObject from 'gi://GObject'; + +import * as utils from '../conveniences/utils.js'; +const Shell = await utils.import_in_shell_only('gi://Shell'); +const Clutter = await utils.import_in_shell_only('gi://Clutter'); + +const SHADER_FILENAME = 'luminosity.glsl'; +const DEFAULT_PARAMS = { + brightness_shift: 0., brightness_multiplicator: 1., contrast: 1., contrast_center: 0.5, saturation_multiplicator: 1. +}; + + +export const LuminosityEffect = utils.IS_IN_PREFERENCES ? + { default_params: DEFAULT_PARAMS } : + new GObject.registerClass({ + GTypeName: "LuminosityEffect", + Properties: { + 'brightness_shift': GObject.ParamSpec.double( + `brightness_shift`, + `Brightness shift`, + `Brightness shift value in shader`, + GObject.ParamFlags.READWRITE, + -1.0, 1.0, + 0.0, + ), + 'brightness_multiplicator': GObject.ParamSpec.double( + `brightness_multiplicator`, + `Brightness multiplicator`, + `Brightness multiplicator value in shader`, + GObject.ParamFlags.READWRITE, + 0.0, 2.0, + 1.0, + ), + 'contrast': GObject.ParamSpec.double( + `contrast`, + `Contrast`, + `Contrast value in shader`, + GObject.ParamFlags.READWRITE, + 0.0, 2.0, + 1.0, + ), + 'contrast_center': GObject.ParamSpec.double( + `contrast_center`, + `Contrast center`, + `Contrast center value in shader`, + GObject.ParamFlags.READWRITE, + 0.0, 1.0, + 0.5, + ), + 'saturation_multiplicator': GObject.ParamSpec.double( + `saturation_multiplicator`, + `Saturation multiplicator`, + `Saturation multiplicator value in shader`, + GObject.ParamFlags.READWRITE, + 0.0, 2.0, + 1.0, + ), + } + }, class LuminosityEffect extends Clutter.ShaderEffect { + constructor(params) { + super(params); + + utils.setup_params(this, params); + + // set shader source + this._source = utils.get_shader_source(Shell, SHADER_FILENAME, import.meta.url); + if (this._source) + this.set_shader_source(this._source); + } + + static get default_params() { + return DEFAULT_PARAMS; + } + + get brightness_shift() { + return this._brightness; + } + + set brightness_shift(value) { + if (this._brightness_shift !== value) { + this._brightness_shift = value; + + this.set_uniform_value('brightness_shift', parseFloat(this._brightness_shift - 1e-6)); + } + } + + + get brightness_multiplicator() { + return this._brightness_multiplicator; + } + + set brightness_multiplicator(value) { + if (this._brightness_multiplicator !== value) { + this._brightness_multiplicator = value; + + let brightness_mul = 600.; + if (value < 1.995) + brightness_mul = 3. * (1. / (1. - (value / 2.) ** 2) - 1.); + this.set_uniform_value('brightness_multiplicator', parseFloat(brightness_mul - 1e-6)); + } + } + + get contrast() { + return this._contrast; + } + + set contrast(value) { + if (this._contrast !== value) { + this._contrast = value; + + this.set_uniform_value('contrast', parseFloat(this._contrast - 1e-6)); + } + } + + get contrast_center() { + return this._contrast_center; + } + + set contrast_center(value) { + if (this._contrast_center !== value) { + this._contrast_center = value; + + this.set_uniform_value('contrast_center', parseFloat(this._contrast_center - 1e-6)); + } + } + + get saturation_multiplicator() { + return this._saturation_multiplicator; + } + + set saturation_multiplicator(value) { + if (this._saturation_multiplicator !== value) { + this._saturation_multiplicator = value; + + let saturation_mul = 600.; + if (value < 1.995) + saturation_mul = 3. * (1. / (1. - (value / 2.) ** 2) - 1.); + this.set_uniform_value('saturation_multiplicator', parseFloat(saturation_mul - 1e-6)); + } + } + }); \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/monte_carlo_blur.glsl b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/monte_carlo_blur.glsl index 27b3806..c63d266 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/monte_carlo_blur.glsl +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/monte_carlo_blur.glsl @@ -35,14 +35,14 @@ void main() { dir = vec2(cos(rv.y), sin(rv.y)); new_uv = uv + rv.x * dir * p; if (new_uv.x > 2. / width && new_uv.y > 2. / height && new_uv.x < 1. - 3. / width && new_uv.y < 1. - 3. / height) { - strength = prefer_closer_pixels ? (iterations - i)^2 : 1; + strength = prefer_closer_pixels ? ((iterations - i) * (iterations - i)) : 1; c += strength * texture2D(tex, new_uv); count += strength; } } if (count == 0 || use_base_pixel) { - strength = prefer_closer_pixels ? (iterations + 1)^2 : 1; + strength = prefer_closer_pixels ? ((iterations + 1) * (iterations + 1)) : 1; c += strength * texture2D(tex, uv); count += strength; } diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/native_dynamic_gaussian_blur.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/native_dynamic_gaussian_blur.js index 556ffa4..3df621b 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/native_dynamic_gaussian_blur.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/effects/native_dynamic_gaussian_blur.js @@ -2,10 +2,17 @@ import GObject from 'gi://GObject'; import * as utils from '../conveniences/utils.js'; const St = await utils.import_in_shell_only('gi://St'); -const Shell = await utils.import_in_shell_only('gi://Shell'); + +let BlurOrShell = await utils.import_in_shell_only('gi://Blur'); +let IS_BLUR_MODULE = true; +if (BlurOrShell === null) { + BlurOrShell = await utils.import_in_shell_only('gi://Shell'); + IS_BLUR_MODULE = false; +} + const DEFAULT_PARAMS = { - unscaled_radius: 30, brightness: 0.6 + unscaled_radius: 30, brightness: 0.6, corner_radius: 14 }; @@ -13,15 +20,21 @@ export const NativeDynamicBlurEffect = utils.IS_IN_PREFERENCES ? { default_params: DEFAULT_PARAMS } : new GObject.registerClass({ GTypeName: "NativeDynamicBlurEffect" - }, class NativeDynamicBlurEffect extends Shell.BlurEffect { + }, class NativeDynamicBlurEffect extends BlurOrShell.BlurEffect { constructor(params) { - const { unscaled_radius, brightness, ...parent_params } = params; - super({ ...parent_params, mode: Shell.BlurMode.BACKGROUND }); + const { unscaled_radius, brightness, corner_radius, ...parent_params } = params; + if (IS_BLUR_MODULE) + super({ ...parent_params, mode: BlurOrShell.BlurMode.BACKGROUND, ...{ 'corner_radius': corner_radius } }); + else + super({ ...parent_params, mode: BlurOrShell.BlurMode.BACKGROUND }); this._theme_context = St.ThemeContext.get_for_stage(global.stage); this._theme_context.connectObject( 'notify::scale-factor', - _ => this.radius = this.unscaled_radius * this._theme_context.scale_factor, + _ => { + this.radius = this.unscaled_radius * this._theme_context.scale_factor; + this.corner_radius = this.unscaled_corner_radius * this._theme_context.scale_factor; + }, this ); @@ -40,4 +53,13 @@ export const NativeDynamicBlurEffect = utils.IS_IN_PREFERENCES ? this._unscaled_radius = value; this.radius = value * this._theme_context.scale_factor; } - }); \ No newline at end of file + + get unscaled_corner_radius() { + return this._unscaled_corner_radius; + } + + set unscaled_corner_radius(value) { + this._unscaled_corner_radius = value; + this.corner_radius = value * this._theme_context.scale_factor; + } + }); diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/extension.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/extension.js index fbfb54c..b94ac65 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/extension.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/extension.js @@ -6,6 +6,7 @@ import * as Config from 'resource:///org/gnome/shell/misc/config.js'; import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js'; import { update_from_old_settings } from './conveniences/settings_updater.js'; +import { import_in_shell_only} from './conveniences/utils.js'; import { PipelinesManager } from './conveniences/pipelines_manager.js'; import { EffectsManager } from './conveniences/effects_manager.js'; import { Connections } from './conveniences/connections.js'; @@ -22,6 +23,8 @@ import { CoverflowAltTabBlur } from './components/coverflow_alt_tab.js'; import { ApplicationsBlur } from './components/applications.js'; import { ScreenshotBlur } from './components/screenshot.js'; +const BlurModule = await import_in_shell_only('gi://Blur'); + /// The main extension class, created when the GNOME Shell is loaded. export default class BlurMyShell extends Extension { @@ -80,6 +83,9 @@ export default class BlurMyShell extends Extension { if (this._settings.lockscreen.BLUR && !this._lockscreen_blur.enabled) this._lockscreen_blur.enable(); + // update whether or not the external rounded corners library was found + this._update_rounded_blur_found(); + // ensure we take the correct action for the current session mode this._user_session_mode_enabled = false; this._on_session_mode_changed(Main.sessionMode); @@ -241,6 +247,19 @@ export default class BlurMyShell extends Extension { } } + /// Verify whether or not the gi://Blur library was found, in order to inform + /// the preferences and instruct the user to install it to have native rounded + /// corners in dynamic blur. + _update_rounded_blur_found() { + if (BlurModule === null) { + this._settings.ROUNDED_BLUR_FOUND = false; + this._log("using original implementation for the native blur effect") + } else { + this._settings.ROUNDED_BLUR_FOUND = true; + this._log("using external library for the native blur effect") + } + } + /// Add or remove the clutter debug flag to disable clipped redraws. /// This will entirely fix the blur effect, but should not be used except if /// the user really needs it, as clipped redraws are a huge performance @@ -488,6 +507,12 @@ export default class BlurMyShell extends Extension { this._applications_blur.change_pipeline(); }); + // rounded corners on maximized windows changed + this._settings.applications.CORNER_WHEN_MAXIMIZED_changed(() => { + if (this._settings.applications.BLUR) + this._applications_blur.update_all_corner_radii(); + }); + // application opacity changed this._settings.applications.OPACITY_changed(() => { if (this._settings.applications.BLUR) diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/af/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/af/LC_MESSAGES/blur-my-shell@aunetx.mo index 7fd4c313cdd0d3a23af943f472529110cb9f5578..f2d9c656655d12fd575af054472924d57ba2f673 100644 GIT binary patch delta 1748 zcmY+_U1*n890%}|voyD~-14om^|EEAOG~Y#d#R;Pn~qvgW)~7`6=GUEY~7SA1~%cZs#^;MW69;eoKF4u(6aD-p5R22Qz`E zm{!{?b4 z|HNLlOIIfH5C=HSe1DYJQo3sO!?D;ba^nhSfL^|MPAOZNng23-vV$|+q}?wa^Y}7z z|2xc?_?-UAaUWU8NhVXLsH^fPJ2=yR-N~*N`M*(Rp9@Ld$IQx(F)Lr>0HmW1CL`U< z*%)939O4|_TYbNSj!}7%x+uHZ#@Cn(e8df$<)MCVsj1|~H@TJXGXpn!w=U;=KE_U3 ze0iJC@Iz)|ebV5OGDN#k9${Ae1RMA?{gqK4*{TB^<^-3pc9#=0lnRsTuV{P956nt` zqpX!b_#B($JJ(;KOXc;deVCch5hjzzxs)fEt(|_!WWO!U;clZXsg+A^l{ZQ*II2Vu|=)$t33(zjTSDZi>iC zl7*BUu+<{xAS-DTePXf59;bAQY|k}mDA|(wt5t7JX5?n|^+MvxGGXiMKSXPp@&7H? ztKC$!vd3pjze=~bp}HW`lC;Wh{Z;E_yT}PL6m0 delta 1921 zcmZ|PduYvJ9LMo5wz&;6GnWm&jcvvpvoV{^HfA$6W=U&}vT>$i=Va$N3x6DcNQjg| zxui59{;*tUXGP)WVk7n& zrJ9;ZZR>5;j2V%9P@YGbjl~x@S`Ye~4S)okkEu8ZJvai-p@VlZ8sFg%{Ejgg)z7Ry zjzGQ#Er~`d53*1L)uIazqb9nKW%vlSrbK={2$NCoGcf}5!xrOEzL%o<*C2D-3LJ)R z9D|#%i23axjRGD##$t?PRIPj&&cy~~^L7G<<5_IPTc{nS4>SwlEaZ{3V;o*XEu;gr zfLEvmeLzLz3+6Dt^gH`wj>0>k5t_CPU4N!sFNj2_4HxeBCilguss$cxz zt_3Bc#!15r%tnT`l^9f`nTCF_8MWfAI1TrqR(cy5(;lMwy~L&X7L^kPbgIP~EW~!K z!OvKP<%Fpicc2z>4=eFe4DnZoWM)mr2ILfMH>%?S)C9+IUoW%ks9agX_LH#{wShyZ z0Z-y0{DvcOF6W@%*P(JGfV{FT$l7dg9PwA^j`4u8?G(E33RdGg%*K2UUT5n??Q}CL z5)V-WJw-+6Jt|jzpeF3Zc#Pmf?-NiPOh<;c>>!O48s(@RcyIw;#d3_~PO0N!tix5P ziErRIyn`F?HO68M+unw2Q49No3}v0jX<0l8q7A2D9}K!^@XoSOXIFtf+=UtV8<*l_ z;;2vuQCYtmwbP@hkhbA2yc~XBlF*fm3sL=6qZYId70E3)MfZO@4W0D`)WA1U+1`OV zk|#I=KOmd5B>ttekUUf*%5XVWqH^Liy72+(=(4!%RoIBr@e+o{!vVVgN&LNOfDF`q z--+7!1JufYq86xlPlRYB7i|(%N2A~9eJ)j{h^pTa2rH#BPv}}tz+$S(Y-%AjlKKA@ z-2m;lBK)Kh36agDDjB;=YPg|uEC{z*W2h(sWmNr>s?4Hl*VCwqS{7B&?JmI*T13_s zho6wJp+6A^GpPz4kqlicMMX*0U6j$i!(Z}nGF2g0lv1cVXO$(?9I9@Fl5jqiAS!Qy zp)AySs4VOv^f|RhTN&K5B=JSLQXYOd9(ApBb98-`Xv!5O_B^Uenm*<@>zjOj$J^+% zHhETiTYVE9kJs<`y-vgWjV-Q!-~WAe{&G}K^nx^xQ@P3K1nNCb!0qw*-7P-H+w6Fn a+>YPPqn1E@{Ti43r(2IM=Rd|C8Tbc_B)#we diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ar/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ar/LC_MESSAGES/blur-my-shell@aunetx.mo index aac168e36525bedad5afe2be89c2889e30a33c99..91de0ee5878596de9147ea1e16df713489190e01 100644 GIT binary patch delta 3807 zcmZYB4{X%s9mnzKDwNW{Qd%k?_SZte6GxjG z^W5+E{C|Ge7X}>{_d25Q6^?t{a2+LXCSD$A%&WM0A|G5ka*dgU584jm0Qtu;f+cyz zWaA;*A7C^2bgZ_Ihzh#t%@Fve+2)PzXfMZr&TGk%OSan+5+EI}Wx!IM~m zpQDAj^ol;1DpUvS`Iw6>NEK!$a;q6ejpc`^`;Xh@&*5y^H?NRTPd~zHtSn4FunFm` zabqS1Q6ud`b$AHJ;}v9(X4L-vkLV=-SKH~6)6ch{MR_YS$tEmm-}I57ZSx4K!oxTL zzmID0DZBg>@@Gc)n1R2+W%xcW#j+w}8nGQU(jVh;d1jNStR5< zsp$?`m_vRMs{STa zd(Bgse+FaLQ=kUD_6-5lR7da-?!zoBnPv=0W1%XlM~$Qr)xa8@hi$0)hfqs#2z9!i zK+WiRyZo0?5~}D5YRX1&KK>as@?sWBo2$aM22&$IRn&~SZyoYy+WBb3hfp)|TdcsD zw63MN8&~6YqzMx}N8%n5qc{s^va@#JDs09JxCtG%q<8&&*g*a#*oN<;HsN9xxDoqM zGjY-OGHQn2M9thEum%5#oUW)@X{9S@#jo*24E2Ke1?oJP(`~&#)}fZD7uCQ3Y6ORH zeg^LcoJ0N{ULL9^gVFp7=ivqXJF;EO38q6!ehD}0{J%xQPr-uO#;nArG1pF za)zl29z#vxlbD6C+2wDbrtn?N$IomtZcE=c3HAImq)JnPs;3oKVZZHV)Fv%(GXE9{ zH}6YL=@6>t*&G3tm!K-DLv^GRHI)I>%0mhWRfgag+jP+x#3=@t=@q&BTT22A85nyxz7Q)uC?GheA4P4d1ip;d?0meA z4X5u>9nB$Af<>tM=HVKQE+(Nh+HK!3g4(^W;UxS7b<9kCxsU(3Z6hs`6pP0WlK3?xB{o)5p>}*$e+o- z!R&RAelKx@T_z3?8;FU@aQO)>Zg18p;31e+R2-Uv1=g-?J50^=yDO8i8X|q&~kr|_?FiH z%hz`)7$go|_eCG+{dWEle8^7oW=@@g!*)K;wjHMv_YfI&nW!g@5NwUqv3yMJYi)FC zQ*0!*5_$*32wiK5yNO2P`tE+4{G&t}p-a2^CPJHV?5ZX4O=5uP87su`gqL_w6;={o zz6vRrN6aKRfvKO``%zZ~F-+X74A+fB9idIEqj&u^fy@wb8<9=;h#7>F*iJ-sX2-5Q zBnpU!34Se8ug+CCcI_j!osPU}Q1)9UGn zG{-;4DRWHpc&s}+JH763tRe5%j1KR%F2Bce`FvI{i9m12>gcmP-cDD<7mmM~mpLxW z7YSP7z8&7!+mo)At_bvagPp!WuhrxWS8Z^0Sl*psuRqik@LL_eNc`2p=N$zr`~0r% zF1Jay6N>i~U2>H8-M)y&Yq>lt33-E|YJVW;-Qnx2-WCXjy`Jh`ZwHThs{_HU@o8o29FE#} zS9w83N#c0oT=H;oz)GAZc_z6(aW;7%aU%BKtZUB1DJ$`8a)>XJgUKN)af0-oO*!ht4KWP{V#b6u(r_kXf9%!ShWcBTC9vu`!aIRQTdVNo>WV*(aOn%ACswe=oQ?e!>}=IGH#dd!w=_{@=P6v;GHZoIhLu delta 3410 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 M*o5%TwBu?20B~RXt^fc4 delta 2916 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 BOGp3! delta 3667 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 EZ&p`;+5i9m diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/de/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/de/LC_MESSAGES/blur-my-shell@aunetx.mo index 923e3e638bb84400e35bb5c33d07625215afb7a5..214633647ca211960958e5049a4de73579cecfa2 100644 GIT binary patch delta 3509 zcmZA3d2mf<9LDiqBoQQ+ge)SKn^=+vA_-AzF0ELCNUTBZ(rT#)N^7}@YEngsC1|A6 zN;`_tv9)Hj%3m~HG##y~;g5Fc7)+~1m#JyL&poFd(|6{{=RN1%d(Qj*&ifwT+7xuY zGRS|uWynsW)snU(I@Ih2Ml|COt-@m#g_W-Ra2>}-a2cjIH`7<^FaqCqk3Yg;9ACh} z7}>%s1q<;5T#0kd{FW7I){_&}n2Q&28b)&0j<^u}<2KC0&oK_;Tbg+>19js<@uA$oVbY^si&1$56nmXU=1<}tH8#%8#Uwor~x0u zTlh0lJi8LjHSjv>dv{P1{LM8b#<@-rdbz*Nq!WVcTsNX-vI%v;8Vtj?Q5QVqo(qK1{^Ic%Hw0u#^-0#&)1)cm!4Y4^aa; zkE+C{?)gioXL}Vj)7zMh$!*Naa5`$ue1-YwVRqxO81*QRq1ME?1nRGmHE<#vZ=r7V zE9%C7pk^M#bTpti)aQw)(kJ6)?2k?GA~F_hKz;8HYC`u>*MEfFuqn?=-_Q2b(PGI# z-C(r)!6ekcW}=?mGUT_m9##5U_xwAk8y!cL_B3W-J*q;FP}ldgcT7NiKNWQye>xp~ zF&mkz<>EM;jVjqG?2O?&CvCqB)U#WSBe52#vfai44E36I!bw<)t8f_J#Ukv@k5z%K zn5+GNhRz^P1Sjz$9D+Hx7kzjYRk{RT1~M5{(kxV|2jM83jC!_psNbK!RD6KEXskV> znuz6?hF39#`&(nCr_!gRZqOGsqoMd-5RU*=q3~p9(Intej=NzMUPE3TR?6#5kE|TE zHmY$k9>(F=p3w}%r|~Y<;b!h{Rb8Fco5-*NGeMQE4jH_~Qm>)d59i@p^x{p|uM|X@q3+`p?8xiShigzXJBtz6fLb&+P>j(1}i{+UVrHN!?(&c6XMs2dEx zPcRqt#jsw^o2>;dOX-hZ@L)-p;NmM^)+|>QS6P57r}3*S_=9;W1ih zwzI!8Q6HPa@-B|%toV1U5u(k396x0C5U@M$}D(QSoz~%T9R$)9|K|SL8 zsLF;?77Z*4n`r;X(a{CGn2J5H3@5wRV<(OWv3Z}tIjHY_hEwq&cECd3Vl%J|xtBHI zi`YDe&#(e#;rGZ#Hqgf#(@$p=9Uh;3fqI6agPjW$;}DMbphkYp^(R!RA7B#xjU|}G zm!q)~b)Egl#5rGpP=}_M#7r`mXy2-JI$q~V3_8}LKK^(?YC+q7 E0Ki8`d;kCd delta 3702 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 literal 0 HcmV?d00001 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/es/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/es/LC_MESSAGES/blur-my-shell@aunetx.mo index 352d3bcbf67c9fe7996e45cef1ffec2b3ab5ec1f..4d2e14b4da0852089fefe0c016f34041108aac96 100644 GIT binary patch delta 3509 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 Qp?=+c*@Gi1^FNvXFIge@2LJ#7 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/fr/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/fr/LC_MESSAGES/blur-my-shell@aunetx.mo index a3a72a3755fc636610648cbb2c90dd5af5de0cf8..170aa001269e291b1a1af60025a50fbbe5b03b33 100644 GIT binary patch delta 3509 zcmZA33rv<(9LMoLfda}aqJnY}UlaubFNin90yV)4N+MqH2B>+*ycgcyyrih9QJUrj zW{Rs7tI$j~bIYv_b(P{;O$&3n+?+O7ZOx_G_xC2s24p(9CHfFlD7Q^rpxBUg?(Qd?{ z*f!iO84K}qT#Iwee3sGHtPd9sU@l(3>DZQDyJ0zIVHJ+SudyRWw=?r%I;!JB9`Lw-S)T0JMDX%i}z74 zDC*>-b{ejxy%@XTE!18LjCKa>MJ8{lsQz*=0Slv9e?7303p`_cQ8TPVrTz?RK<81J zxaeNLj9S}ksF~iy0hknHwj5`o_RJM5Ko7Gk!WpQgtVivMFJsBSM%KiI)_4ci(eJ2^ zAEIU+z;raAj;OyUpi-ZNyD$qw@B%UxYeL<34>h6RQ15??X&B0S>HYyeD%vdBs1C-u zf0&FKSSf1lRw2*YCRFNc-0LS$9i2p_wgJ=e5-LNFQSbM}JI12!PeHxM*PDuN9Dq#L za&ZFALZ$39cE{GNla60HYVFqJXski9Yo5=RV=?yUVP#+s=IZ>P zrSd!%0=x1M4#R9bh&gx-mAY6y1~Lhi(hO9ppT~Thf?C^J)bpn>1^+-kG#1aOCgEmG z#cP;M|JIV}DfPWk9b}?rGy*RMumq?*keXx`g+p-%PQfjB3$>Z%^Lf*fRk-fP1+hDRFiNBmbq4A5bf)I$UoV$pShqHhcIlVFx)i}LuqHCIvnn{3$O+4 zV$@QVAjz{esEO3#7`%-dV4uFueVcJ1?P}D-LNmxeC&Z#MoL$=w)nPH7z}cvQwd&`j zG6MC26x2-jqB3|G4`Ds(edGE&$8|Ak3ASSgJc{k{G;*t5^id(}_5^kOdh!|5Oh=&x zG7;5L32Mgk+`pHjmv#k?#Dn-8-oka5Fwi+Y)i{^-4V;F#gPiZgd#HihMM_6)IhId0$#@me2n^Vg|qcFu{0cpgOK<8Y%P^` zT-bt|@qW}mjv`0jK1OY(Ce({=q6YXkMq*Hw^Y<83$0?YPW6+BSP^oV~edxYHJ>QHW zI{&w+Xr%X1FL;7Fh6!xhNw^ht+8ID_^j)MiX!CvLzZ9Ew-5 z6eF|wh~a7+Pybd;Wi&p(b(odobaV!_i-UPu8JU1eVHs-omSZBW!P!`YaTv&`3ek%k zEL(xo@HpyyI^zkDkG`%{mQYa#Rj8$?!7f;j0jRQ=ATj>`8L6E{Oefe^{-V@&cI*E~ z*;Cn0tR$43lXswAMUZN+V zGM|Vhs)$v@E5yHLGnGARXf`@#YltJn(}fe~FKhXIjnE!>ohT->PYMWaBo%E`ZN439 zxMhRutH{={3gTV&nwUVSfB#y`okX@OlwHJ|1Yc19ziw~gZelMnn^4jDSJ9~$@2{D? zjXGWji9A9lg#%$@iLHb-qDr!Z&;QjMOygxD%DMR8Z#lJvL=Dk{7)hwa6CQuf>;-J& z)`MI{HL;NxLaZj15h`&G{@)m9{?3(cFonn``Vzr}N~(kZ8?lsnD`Gv-(Y-E45Me}j zVlI(EsB|Jm5oN>zqBW62sPxm1mncz%Qb?2%a|oSVmBf>^o`it<@bl3pBT^Q|{sUeZ BO7;K% delta 3647 zcmZYB3rtpJ9LMoLDxrvoqM$;01ia%7uX#!E!b>QcnpZ?cxr7lH0Wme-Q1MP$q0Bp5xZ)+5Ye6Ip=-PbNN5dbKu;npubiJ z`M+=8V3SdH6R|`>u-Olo7|I7_UlX%txZm>wtm67CR^YgBv$l8=+u$|SqYp3)Lz}wS z(dgqk4pVR*b~f|dK`KYNaUOH9Cc>;2-o#Xlr}r5+599GP4#r<_G z!BOu02xJTvg^yxa9ENE)1Xp7+o6x1~3`bQ5MEvF{-0=xCv{$>n^R# z=-YZ@9{Nzvzk|x)d$<5kVLKe!+TB}Or~xlRl4I4a$-g?>#*OxP5cR+p$g_3>^*{(a zOQ~;;8c-}M6A9k^uBf%`i<;?3?2lDAACIB-OgCmV4)gITJQ_p(wU%LQeT_T@HL^r( zj47y&GEf~)M9n-CHK0=O`^Bi#S78lq!iE^nIxq)IM75KOn$Q?j`&0Z>5~<8ZJ+KkA zS+=4&*z4Utgc{g!)Y^TC^kLtjQh(RGud}F*nxHZpiM_D{DnnCH?dN;?E2!v!<*0_% zpnkX!wFh?LMEnqyvIy3v1LmTR-#XONeU0gO7sHKe? zq73|usTdV!_BdwY6x@Ns@D?UxUtR)AU4>^ADy223RBypCco?;`4^YpCGm0)a7ISbR zPS*LqM5P-y`Z6uvNH!al`ZcJIYEd)ViD!aX0@NO;?!;hmJFdmUxB`dLh}!!E8MEC$ z?X70?t|g4~9DoJ%Z)2#;!Xr2cqq>@1!SPs%eQ2#GzJ(h3d3+WJkv3Mv_Th9qjmlVD zclY;;uou?{FbprE27Vp2C+?%4BW=BSy*0r!Y>bmpshfj(pcJ(vt8fIK!r>UosMK(V z=XBH_%15uj4B*|??wK#b`Q8Q1Vb5?^kD;Bfn?Rzpc+1eO5rij zv)G91tEdit^{($=FxT~x+@))XB-7$i6B&!6u_lT9PoVNGH?+oyefUFzKGe((BPYu~ zMz)DvLUmZLuh||9Lk+ABmC56%=g*;LI<%jg!BM!K>r7O8w^7HprJvW79!$a(n2wP+ z3u(j3kY%!csN;A6HPf4@f!s%R)Np`1;|SFEQRrYCrr`)2itBL+p21}F`v$u2@YR^f zjo+{tj(*G?NS0?QYL8T-Qd^4+aVtjS8>po`j>^bM)I>f<&HOTIpi9`{?QsRtkKguC zQ7Vq1Mt&Z(xvro(NEpm}AG@PwoQxVsI_h{$MQx_VsCL$(2Dlen;@jT$Cr}-q!!dXZ z9i9J_A#UpDU{k)RL^ZGqHGmpaMmD1w*oQiXXK*t1B(H32TZv=w2&&^?cA6#m@yRT3mrgOa&m*6#2N7+22UHmR8BY&eZ7)r0& zyiur48;^4_4P)^jYSVv;e!U=KInl99SlM(MH;rlObkMmB7%tr zUO2k$LChpr_CQev^~`^Ye&)W7-~yr^p^`&n5GBMEVj8iUSV<^n6o24zE1#U9 zz>9bbCJ?iUwZtewhxs)^`P1&uQ}c)zqL!#6o+BQXYAP>z7on(y-sxRGgcCubrRQN8 zp?$oH(Bds6#uHr#m8rxmV!bZB@`C3gWNmFRvE92TCV6!&zDf;|5~!JNz?X>-%|yH4 z6=EZ?naCwnw9i$ZBqj!G?thNK)OQe15YfaiVjQ72MHZpb)g|zL974U6Xyx5|NHLX3 zg?#KLIuq%HibFJ2g_24{1ZwVI5wB{ys4OQqZnlspBUIYzqxLIy)*33)iLr#o3sxa;1m{=l{>|GPGvz+PH|~i?3B)iPXD=e-k&!wq<{WjOh%Pl%_pnQIA;FsP{ K>hd}l#{2^-^n;iH diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hi/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hi/LC_MESSAGES/blur-my-shell@aunetx.mo index d3801bb582fe3b4ad1b8e607c7c355b5c31f0422..cc8296ae17e0c7fcc65770bf26fa34bf607d6a6c 100644 GIT binary patch delta 3437 zcmZA3cWjka7{~F4w#cZoWp8N9rlsszRv86~P=S_RD2NEMiat|7f36$fIrfm?? zlx3mDG!u1wUQi!0D(x*+wy0{Q~ z;12AHSFtD7uI5HO7JE^iih6*37*aVeMq?=PXI{tB+aTUZwJ88**gi&5=tLk;LvRQqpZA|69s|6_=ZHp?AU2M_%hWmr({ z(io)5>Y}E+i?2^Xbubt;r5V^7C!=O&3##2WyoXWOpF*|s3F^AgB{Dp`UB_Yg5H(dp z>X|jdJ*Z=M9<^pQSg$nfg3PKF;1Jw}4e>Xejn!k_`CoyfC|^X4yg7}e;t1@n^S^`4 z2r9nC9@swK?b=+_lpXe-L`~&qs44ymAH#d7HSNjELieX*GhBEXH?LPb16m zPkf8}7IAT3Ol-ld>3Uu=hw0z$llcSpw={bS_wcq@f>A8!4cvf(F}ICdic_d1i)rh2 zc_J>OJjIvqphlX|&dpQ?YAI(Tx7tS3lAOWNSu%0$-7fwGbzvT7NtR7&yoZqvr$Jg!Uf?(y~YlHJ-Tpf-0-GV>onCPalc$5Q{rL99gi zLuB9CC11Xa^kv~)%|>E3T#uWu5Sw;m_V5U@S~iXyb_)xz8qQ&ZFxj>Od*YEE%)dIi zPsIY(CX!l}SEjgKy$vf+|10W=AM|pYu3T@k3DghAKGYxOgITwSsE%6qbq~-VHKVgo z*A-(w{2J-f;zOx!lTAd8bPei-vk!GXPx|ubs2hI9kFhDOl;CYl;6ZlvH(O2l`~WsH z<&kM_pQ29Y_4clQH72Q!!nvI%?*HI%siafNP#_4nr z$&S?bdFig9)u=sk$d^At?VX#LgJF-maxSXlLS(=pJ4%L=VOLPQHhhSi%0yHH*{B=x zF&cMc3YOqj{2f_dTQ}7G_+0Sb!AjIe4|Dg$V?57Uw_4apH|4|e1IlwaTc2XmXpS5{K(#k*j9a4Ev1TVI z@52K6w;5UPg>VmRQqCXeMqY%qbs=(s>@5C(;p5#gx{3QKx5_qq91j`%j53sdF zX(ExRLMYXB1T*Ke0ZaG{)A}zZvx%4$RJ&iT0`gj;ioUKbYG#yr2A}TdGnYL3FxU^Q zMv#j5e2&m2R?-{wNkTJFOepDyP9?T#{b!KrN^pXVJ!mfzoQ_~OgXI&?5R-@~VmUFH zXh1Y1l-PqoYQyIgqJt|MGyGp-8w78~9At|GFEI6QbBJgnhEVED=p>X;!6&Wnzo|8u z*+hAwp0C`DoXp@P%}4gCv7PKi;{U0$ujq)OjeO{s)F%pw#YA(WD#88=UOJ8O-&Eaa z#(1?c>-hXj*xu*kaUn6$mzR0hdBc%+S16c)Mij;pO^9wpFCvaeB_fGw#3Dk87n(gy z=x8YoC7KbdRUoAiErJ~Hd2cIBA~-<7-?j<9KG?q9DbymS6EFBLdSf2Z(w9XhG1r%~ mF@nhOWwDK@QBqJLu2jjjsPnao_719CG`meiNvL^dmwy13qiY-h delta 3746 zcmb8xdr*}{7{~Dk#S{fmltj!tm?CM4H?%~#<^?s;BsJ_JO5iO>L@B!*O^ZyT%&0`u zvCdJarkiBiSn8BbrBhDjlx5k;GNX)69ZaM`jllJFygR?qD_$Kfp2AlHRYw@puVt!%RGc6R>rHSr?p& z0bGFUxDL6*)?+_>2I;~+Mw+%$7(@T|8yVfuqLcd~9#bg?P$M0S18_CQ;BMq$>~*{V z-$y<1QPhCH!c*9{vl)|V35jM*mL;LCOGQ24AW8o=n~WM-hXHKFXx!twAN3?}q8j`d zTjS@b22c9+KOlYEFW4R1UTBt$X*d$+Vh)B;5Bv=V^T_;2MgtheJgTEn*bNI&9WB5H zTB(o4PXp>TnqqDOiWP;W^}9 zdk=NPDb&=TK@I3n)J#OP<5b@kwYHs6PudHIVF^~@wUbz}aumZz!E z$p1i%ES96t4pUGa^+$C)1oh;ZsE()j-_Jx%eF;8*ORx>LWE~i*#iH6tMLp1EsP=~k z$y`PzA9cemsLgU4s)Jg;el2Rv8j-eb8*0iA`1OZS9UMi?=y4o`KcHr&Cudac4))DK zT_2o8Mhz9AE}V%>f-S(QSc{sfW7r!9vOYR?(@;zHB#y@e$ShlYfLX!5*bDE#TW|}G z#RP7;7K@Pw586v)#!&GkW?@=Sv*}ol*|-mL@GsPqrp=fvvEGJ zvFrK%X?l@uxR_h44AoH`GIraIFW@oUp?bcorGLw29-gM5w{SF84KTY$H>8`rj9CLY z)A%!%<7pOlB^C`fJAp@W67Ct|mZt4cw}jI$llm&W7oYRX85!QI*A`(=Q`bmFBYp{K z%RWV|Q5Vd=Eb$d~p@N3jDjk?^;U@{)2+zSg^nEm9}U&$zvsGo$fSdKMV zoyq(wbK3u+bfnu0i%=Kt#%O#KnH)Rl*Z+zMl%q$ve?DDMcV5FV-nzlG1**Xzu0!<1los~h-Xm8 zwaqwJPC{Kj0N=n0Y{J0>Y(fU|4X&Y_FoDfYc@yfvgRe|9W0@>`mD?=Gk>$5!b`%@h zCSwdP!xUVF8t7KkOni@8s&mLgTDwBCg>*0l_5I$-uATQ$?fl`FTk(=$PXsNUOch^@ za}~A+)$tM36Q9F=*!^m^YYR|QS%unETT$2VL(Ryyn2Wz-BW6x@@0E|R2j#>fX9gzd z{9i*xH_pYLcq#C!*rGhkD+FA)eN)y@inAR8^=-7 zlyAgWDeo#adl#!`vP|@EdDpoHU&J+(%dR)uk7w{6Y`VdD#f|Pww-5E?pI|p#ha<54 zEC!1O$TqU{60_%VDc*spv)%VkA${BGIm|zUw3B4iP*$n?0aA>rza1I4mn!(=6nVc~ zR55^HT;6e0xg*g-ng2+G{5s9b5<*9LF~I}|y;p8E1#PO9gpT1q)8!N{A+!gSmJ>O| zO5%L#P38fD3H080k0J-a))Pt_iE^S1F^_0LD3xmc+3?(!#Bo&D3C9w#@P zxS4p2=tayTRuiL%&cp_yCy`FvMa(BOs}B=PiCc;DX%(4=RG@$Fzu4{ggev}#w5Cd0 zyA=c{)q9W6#5)NNhPU&`Z|K%FV&G077Nv4qndvukf?BiOk(Z7Ewb~5lR<3yw8i8=ZNBcL@~jO%!U#% zgi?Qp_xn!SSYim#RRursHuipW^uf7AhF_nI6Nov)0wRvcBb0{eBS4fWLn6J^9; zLMgQ=BQ7OscwphY#npkzvOvweiqguO#es^->Ogg6VD`c#{94HU*Vq16O;g(+P7ZF1 zgjYmDcSl0oBB33T@bW+;w4Hb*5?(_t60W7NGZNa{{4Irj-VIy4OEyMAuX0I)yLERY qOjC^%BH@s!(SNnx5DC4|+;YRZ9y2=h`yWlNdoeAsDdW;>NBj*Oy!1@~ diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hr/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hr/LC_MESSAGES/blur-my-shell@aunetx.mo index 45ed92c75947e2cb967c0dae1f435923a1328ccc..a3069abb15bc2912f3bef49bb476da9e78f54b89 100644 GIT binary patch delta 1790 zcmYk-Sx8h-9LMp0HDi`qYGySpuGyHCORL%HzO)UEwm(=BWdywxDb+0sf(Uvki0ILW z!a&G}3JN0HNFvZ8s3;{UlonbbGg`jCJ9nT%|M{GIXYM`c{LlZ`*RngM&g*2~IirP$ zDMZ_Fv%NUW&j+nH#w-c@Jip;FuKgp;_Txz$jlVI7v9V^?un?QD9}95JD6>j*a4X)& zEG{jJr%Sj|g>`rw}c9>5Ar!<(oKzQPRr>D`~45P5G2 zY5|p=>oCmtwwaDr(t#;>8#RGvNLKA7YT&o17yQIoID%!9T`NEhT#TAn1M(Bw=D7#; zz7`yd4r)PX&{Kx+?a-m6PZ2c<67K~n)y}K7Tm%`*n{IR zp5BzgS5H*2n)K=7^7P1w6xD&N?dpyrObhJ13P!DvWQr(Rj_@npzAZma=sML?= zM_S2Z)N|YL5H_K{??e7s3>&TD%rSJ##j z)Ro(E`J^V@wvJELg0i5@Fus)$(YDg-Xp(t^wqq_agHVmkA=Ff`>BI;^3tmMyO5JLr zgjhkSEg+QYQerldLqwa7UopYSb5DfsR}*X0p{Yg|y1mG@`sr&s)KsXd1=WQbwcPCf z;ZVAxO~)?Ul;iF*tSQB|!*-MUBGz2GCQGht-Lu+CkvLkXRi IQfuS>0dX~zz5oCK delta 1964 zcmZYAe@sm6T57v*N;;N}Roa+x~{-~`#)Cv9(ZO!SL>0Ddy&pk)Y^^EU*J?F=B&htFq z@6prCZZD5sO^g53Xm!L?;>Z}Y%~(B_AKJu3vs6s=orUjnT!`H`h|_THlV($}8lS>< z@Hy?MXuW>r&qf6NL3Z7iqqbuSZVRG{WIN{JFsg{g zKkcow2=#z+ydTF7Aak-Rwu5(CJ#NQV+=joS#y4hqJMs~d9qYqlJetY=_tUw_iB>%L zjM+>~oMcvpxwsBpRF$8?m+%_CifPPVxokwGDb}dHO-H%k=-<$TT2Zfm{zFs|?nf2dNvy(D^1-w14dj$<#Z|ZuHNjyl!F#9` zFJP4stVccPGS=~a%W=HwjG#V~A5k+ukDBRks0aRq8!?$rK`9Dj0UkmM+b*KU-@rJ` zCyEH|rtYI;Vqez^%pn}&HQxVNQxPd&|81-N15IW=p~*dH3;m8#pw*K-%OzeW0>lzR zX;CXB%3?k5Ggg5{wKdvqeXshI))1;}J_K7psK_YRSko>jRVpmCCx{9{6|PztLsS!L z+KFO9se90t(ow3EHnlm*zuGdQCf4&lujPJU+d7wco=7Ari5CgAd4#@g{hu+NP*c9u z$bc;-@^s)g${_Y>s&*bV_Dj`SPAI4P=a#CBwc3Fz2{Yn~oHn;B?1VNrJ#Mf$)YIhz zLt!TzavIyZJM*plf0zAB1NRgENvWs_b+}zlM`tJ!>TGZ}g<4%F*fO-M#c6cIt`li! Y@8%%r=G)^pMj9SoYi$|0lTn@gFR(Ajt^fc4 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hu/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/hu/LC_MESSAGES/blur-my-shell@aunetx.mo index 40e34c46011aa64b3cff5a82611c846ffe1189b0..d691689a59cf3bc30c28cc03b3cd2639bcf99f11 100644 GIT binary patch delta 3509 zcmZwJ3rtpJ9LMoL0&)=$FQ|x@*9)R)0-_dbf|O$3MZDk@Ma}yyMZCUwK~eKonj|7_ zMw?4E6C+vL#Vx0qWj0sXrkh=Crp_#ER<6FkbB>#BJ=^d7Jm?vRXE+uZz<7cN$e=b0eBuKVl<<+!}-`7cjI8Zh)prJp_vbpQ3GcoU)dDw zjEj*mtQ0w=RbUu?i2D6GXTRU<3Y`w@_z88Tk&Vo{;&9XfYmrG<5!S_hs2LwbUGNdS ziT9A=*|&{32VO({?lx+Ie|UC`anF;3KE}6PIzhP3a}#PN+fXMg#SlD+$+#C&z3nfNbJ{mJ6Yro- zkloBJ?F7tcdmgsN?@?;eQ^kmL*3hQ)bS^<6aJ38Xsi`i zH3m0eXS|9X8QC>ff;OHz}XnZWiojyz~`_8U&0!sXx5K9@>9!0 z-Qyj|lW7Mq6;GflbQiVSL%EuI7>l~#c=UImlS-!-=Aueef-2#C)Pdc29Y)~us6{iv z+a8O<*q)C6U?m32M0ZV9qXs;WT9j8jLz3Lzr6y5-s$gmC2*KGHgo}}}Egv=TTNsV+ zVi=x54fHv3d+jo6A`h@Xwq!JwJP%dTDvZL1I0Hkwxfiye8})C^j+N~2;eONrA7B-J zilMkV#T}p!ImC{lD$%98dt3@0VmljkzFOqLv6vq2n(2;u!3{!{J`Y)cw%kuAp3VW( zy*`5~*^k%&e?<)x*wej`a8yMaq1J#8M`H$Rro~u*-{Anveulq@Sb~%BFKmqCpLO*w zq!YuAjTnymF%Zj9B|CyXJn4O3gSwy}unGQxhp-MSP8W6u?3-$PZP z4qtA;&X}qFI0qjg%fn`+@sAGUTPYpgt3Pom_Dgq9T!q?Si>g4Mer{z3p|(e38_dIr zScon029873nQO5e)Ee1`D*YWk^wcFWJHI;P>1feyM3sIQYDOg(fNJvyg>fpO?Jh)v zvYwn)pHB_`e~ri9X{v@MsBbY3R9vOv<9JlR;t&MbAIYN{9&wDsEXT04A| zj3=xw=bsl#h$UnW7FYi{z5&B#EfCuPl#j6L7r#N3oUlJ57!I E7tIAv+5i9m delta 3648 zcma*pdrVe!9LMo52_eRV2!g>Z69C1bDnd~?{~iEcMiU{ zA>{XsA%SmVLU$SMAQ?iE!_2_#rZcT|_Qz;jv~BjBoLDbV3s9hjbi;*{GRTV;UaD2>b%MIr|>3 z#&f7U{u4FfJ_F5u#u-R4E#q1P81&$51@w`5o#`enegH zB8KBXs0)V0x%;D$IanMH#c?V~hTY=K-lv2-+nV$?vTn23JVK$~zE zwt3rQjd$X)MCz|+8OhSu z%o9;FOT}w22Q|=a)WGvlcfJ5Mp%vcm51>llj9YLQ_QerA2kyaAQP(Lz-Ow!5^-BVD zQt4EnPS}oGEKi~ac+T73g__vwsAu;HGKPJHD*a#He!Ytt$cL(IEKbCcs0x*!u3zmL zXriMNT2L2iMIE>uwFWwH9=?exSv1dQBvzqbzfGt|_c_kMzmRHMp2G^qg_w+8xExPn zAr^Ad-FpAG(NP7?U;)M@ncae=Sb_&|8eYI`%;Y1W(lvQDqe{93RqDMs3y-26Z7=Hl zC}uGhi?9;cV6oo+uj!<)Ba_?Wi)4#XrEf(I)P}mFc03ZoBS5WzC8J#*#=UGmfje+K z7tuf`kVEYZYHjpqr>-{w`36}!j%R$!r85_oYX|n=M|cj`;E8eWs?K7TxokIK4IW2| zVo8+mX3WQGY(a`?XOUCQ$3^wbvyeB~3h+j}4+FuH(b4KZike{$YQ~@7C_If*upghn zV$4UC^Z@F-uP_pSMXjN~z3q^6%FT8Z_F^f9$qDWntC&FjHDCifv`Pb>U8n<3BSo+? z7>=k@!Nx_8|lD&d>>VDUk3G8Nf%|fi{%hjv3(RZ zvH0uV4^lEZZ0Df{sKQs#k9~1eraM47>X87V7d2u3u;1JF%EZO2X>++Hk*aS z3t{(Qn2OaxM+df|F4%#Z=}X@J^QaF|#7%C6MxrKi3p#ik`mh%H2-+G{C3d4K)Q(yk zU8oAbgL!xgC+T51Q{4lKF@_(iQ5RV2+2ZZrj1K$TQI&cdZ^dD}dn|aX!0EUX6Yv!3 zL-q&iHOypV7A{0ppc7lQSU#gus2`?r7x)~qPAn$d{hv=E>RCO5jd&J0#TMnb``b|! z_z6{+3*L4w4rkj(Iq$`E9EzLqE_?w4OwRgn8(Jhe$UfVHdhNdS45eOLbZMvorl9U9 zA45>Bp6FV?T!2OD@tuBnMziWcyeX) zvoXJpe-0A8L^Ft*L;9;j)4LKK?74p}ysmZ7X(4)d){q9GcAfrd`;?W{O6ML@L^4SP zQ5)|P{4%ekA4#q!3EqC8H#mxnCQHa9qBfY!Bo$;S@sV7jHrd6>T;qcO!zyQEG0E_L z9M!$vH$3D9r>>@<(eW>KR@c;5`d2qN_5Mbu(eISkHLXmuod5jn{nULZ>Yaq5qN-(1 xRoxQ*vYvx=_xl@qjx?6lSN3!}W#x5cOZ`iOC-)qzElacf|8Z1z#h8l3e*u~`hCu)T diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/id/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/id/LC_MESSAGES/blur-my-shell@aunetx.mo index 034f55a0b8fb9be39c5479fd72caa66859131ead..57b3f2887768ff2d7e2c0a4d619dcc324a847e92 100644 GIT binary patch delta 3508 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 b;_`|WPI;jxZ-wJ2wC(-R3mW74R7d>-bnbnw diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/it/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/it/LC_MESSAGES/blur-my-shell@aunetx.mo index a6fc86a9f5388ec3cf71ce70015be0b52559ac40..8417c89a7194b1d612849f8bd350046a6d3c7140 100644 GIT binary patch delta 3509 zcmZA3c~Dhl9LDh4U8RuYs+>9geD{O;Nt;}LE4b^Zy@|6{15>_B> z*ly&OR*%i_1nT-z-t!)_Z>V(R#ILBH28WyV#4)HJEJFriYcK$}p+>w1)!}#W8s0`G z&n`xA54?i9?j~x0_gxbro%>9}SlYJ|Dt@@!wFWhkb*LNe#z1@%b;Ebv^M{c(?Krl_ zbC`v{;Q;K}+AJGqqelE5=HM~ZK>kLL8uDd6V=xlcP#V@^U-$THH(T&3*)KVTo?TOE0n1A)GkrP394b{-^sD}SU zjogRfs6%Z~-^Zb*J{~tbje#0o_I2{{i;EW~`U4&-75yX30V|Fv|U6 z0;*#rsI{v^erwgJsjqX-A3!zKfSTH4n1*LjGxPv;|KJXeF{tYkQTOqrP|<~%$Y3oO z3$PS5WrwjV2C+_h{L)Zsw-kqC9Wu*y1IMC&tXUVFfb*~l^Y9i5GcY`lb;x)@#tG9ERh>8PoG97p0r)Y|Sx{r)3N#Cyn##yZfe@wft$ z@De7_z6CHmO??Wgfxf5_4Z*!WECI6Ntx3EYuLz6A^_YyW;>W1XG@93&mY~?R0_SqP z0t@jjs-r{c)dj4@CA4ql-JKp?#}OPy(7g&QK{{!Ts9k&?XJH=m*AYL&-gq8cU_i37 zN5WAroK$R$(@;yi2sO|(sJ*oXJsRm-RQP8n`51t=u@5HqbVgK$8sQ=g!nLloSjzEU zjAW+#Qk+c{P3s|?k3(Ibit6Y9*9z3;JCMr!YlQWj@W)2EMF zaa|vZTAD~?6)YKtVj&K}JvbPzqB@k=%h`l|P&2Wm7xS;F+{Fn!UdK@le207SCk(`u z>1M2st;cdaf;!)YVd?$Q19xK%cEcY~_YKT&j7MFUhhbQR?0cK*p~53-n^14S_ffn1 z3)e{5_s%7 zm2ghnMg1V4pR+chs25Tc>iZ1T5)DIjune`Pb5Ltpg>A702VxyY<7HF_{y+^dsJ}CS zb{MGVzY`Tb9^J7k_QTm&g5&W^)YH+KN23VGBJU(Sh}v9@s3mMes}nE-b)OAbjSV;g zGkMER!)jz7+f^*4eT&R;UJ#Wyo#V5}JuM~Mc>|WCdR~v3!V|7%P$Rs6y73)si3My3 zy-{Z(uLj$P^YJ_m$H6(y`(`70k~r}R6;0ta48}Xiqip}652|R_GZEhZ8R=LzoMC(p)K!-4kJn5}DAKQQ@&ATsN!%k!>Swpm& zwZV3hSfah6@(hV0n@J^kfjlfLsBF}MMx$N-BH2wIEj&@)vV_lX-1bb`F zBN*b={anQ!vYZSc3rPi0Y3JbmjCRKFoLLPM$w<%pj>mrAx#9;5eT{p>Ibu+)ns0`d`*& BOT_>H delta 3640 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 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ka/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ka/LC_MESSAGES/blur-my-shell@aunetx.mo index f38aa0978a8709dc2995b3dea22b7888a06091ef..8511645b8cb0df2948ea6518d2ed2bece955db0a 100644 GIT binary patch delta 1556 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 rIrB9M5#FDLZQzz$zV%)sA?$7BBkoeci( delta 3019 zcmZYBeN5F=9LMpm3W9=ymw2+!tN4hD;3EnmD53&BKPze~VIT?$NNRXhP)E*M5^8N! zy3*yUX_zg|sawrv_J_@KYibX+=@Of5_J>QY_viQf;nq6idtc|Ad+zUde&>A8yQGuQ)D!_B(mOzeznkU!h#wd-&)?N>1y zf4~74*Tw8J%*G|$XgbN`dku*U`Uo$3>XNS=AHn!(2RvnbGAjuKNvY z<^Dp_BVZjk?Ap8Tn1g+BK9=G{ynt6RxDR=NKcco`M_;p-@g&k^sr}5R;e7PtdpI1w zLJpEWL{{Iz`@0k9hmkt}BdBPvCV6knL-Nd4;Yi$qn$QWa9m?03o*)yI)dkoQm*Q$H z!U$I4ve$o|$JUD7LXErUwI4|CZ%?Qw=|Yp-Y>&oHv@as+4r<(T)P0JFvHt3)q9YTxpmO0flAU(R zYyX0}(4Sua->A>|$S_?f9`$~I)aOz$52s)hHezQyiW>h3YW(>C6=VR1pw;d>@vXG7s zk?ptOG}mFM2`xuWuma1l2DPWZVF5lwcFA(b@WZ6{krQe6J!8hY$1el50yB^_u*JwB z2{^yW@pKduDt_WcRVXWoa;IkYJT4%jz4lyBuH)Qz3XUgOFz47-;&OtWGM>#zKybEq z4Q^IL=YJ85BXq=Sh+c%sQWs}GRaJgW@cK%yj#x;f6Iz*CVk4pD)mG#Z;e?+01wtjt z#o6LX)GN5Z^OLD>vMi!Ev5HWcNOU9EYUgJboKnT>PGTDoMyTv?ab81t9Zc~3 z59jMSK^>H3L=vH#@@f5*JmiY=<1i0b5K5r7(xa_{^@NU1TdAfphv-18C4vZ*o-R*c zOQ{7vZMl_fDAY!+qcWAqA@YbKLK&{DSxsaRaRgslPm40Yt#qZ*p4ikF9rk#%zpSLP z%3ogWuPIqqR9;i*Usqn`uPXPiEUVs-Y}x;N+k2}eB0M#wamt7;jp>QuaR*zEZu7S` oz0%rT?{7VR)_?cd2X_xOCtG83VtmBA>S}F1==HW__TC@+FGe#sI{*Lx diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/nb_NO/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/nb_NO/LC_MESSAGES/blur-my-shell@aunetx.mo index 50cdf68a41f5914b655dbf65fbba7b3f81bede27..c602b17a5fddebacb8a4b2a32600de8f996b00a4 100644 GIT binary patch delta 1748 zcmY+^Uuc$990%}|uVuAOOU;>?Ete~oEmv8y&ADm1v~g)QX5S zY28F9h!`?FN zp6bc@vtKIOpuSWepH<3(Y&_d9?VWQ3u`Wi!`v4STqcebz5;x=7@wxq;cPO_q(kh+8?roy?9tj^YTBCH?{uT}}wL8e{`~)-p zM`q_0bx0}Z`jri|GV^varCi5O4)GR_EtLOu7ax0|{AHTM{F~YNu(uMxPG*7K%=1T? zLpaI=GRBnTFjKl$X^Qd&TX>ww)D*k8V$n<{?yI^;$`5fnUuPEhlZ#pLjqT!6CXlCi zfG;uuwHh>^9n4PqnZvt{72ZWd%RS7_A7;+n5w2l%x$uWFfLY)*Do=Tj3FH&1LiwC8 z@CRn6`{X^J)#J>#SD5#XFab<(H7A+F_cN1`-^@X{sE0JJA0Cu zct5vsoC)N6?%=PynRj?;n9nhv?-Vz3rRZ`79%9~qjCuYMuVK@&tRolQwG01rc)35^ zNoTM2at=v?$mz`_DN)j#aoO#ETgtGx{@^O+z@{b0?A*rx*OLB4sl_@yXJD2-sHa|O zIbhxTWqLBQLeCD`^^_oOt?uxbD|4f%&djG(yYoe{OCQiBtX2}Gul*z1#H{~syVg}o zk(L^sX}7xQ)vv2RNSSWaQ^&L%w6s;a?AFTE$2L8wPD^Q)>ylfx>K%GdDVu7CE}zVq lc18W7g*mb7>-X35YQ10g71a(^E7K;H%o%N*IJKa=;U8WAjoSbK delta 1920 zcmZ|PYiP}J9LMpm&Bn~IncFt}jg2wKHf&?ZE|_g*SW9bL#B!!(7j0)-Q#u}cKyI0$ zkV^@PJelHwOSzOqk(A_8F7d!9DZ=~nKW8ZUb-w5IJHPWkzsvXk{h!a?Bl&@6af1&S zt&&J0PKKE^V|oN{wC9m#lkf#5XkduhFi6A_OvNH>!Ety29lVXh@g0uDFE|P#hnhv< zIOKD{rqD@cAPY574SMh}YN5Nh3?HHPl*F%NFd6lI1`fu&kcAk_=VH|L)yUem7DuBG zCt^1iu)ZCn<7MD67GgZJYUgWkG1eo8w^KL<&tU^zN1Z4w+N={7B13i&e7P7u8@j=Ho@I z#*bKlrKG74cc3>49CDvI{enc*``jOh$O`-a6aC{ zDt%8LwLmqh>KjlS=|b*`ZNojd8+B4AG5DCJp{^@I{jLJFfpwUnrF?W$ggvN~oIs_z z7fFI$#~gfu`h$w)O(*l9CSHIQSb*BdF08|&xDdZ#EoSr3>v7(TOYkAa=&0lQd(#A| zs4x6D8+%a;y$;!rD!T7TExL7~4Qo=RHkVM-ZPN)!gcTF|v&kc-5ru@>A|juNP^t%7 z8XcXWJT#z3L>tlRD??*KPk@@z>~(v=zi4%niDg8QKG2kbc|<0mEN2laz=0OfiOH;6 zTpFaX-HLUP`{Vu*kwG^@>8N5FXfbrcLLV03EMhJ(gGeEiJ+;+DHlZg%HB>@OCU{x{ zZWXG~)RqTv-{<_*R~`J_bQ@GmrJ=#8sG2DwJcOPY6*aZ(KE`0v^;YCGHMaYm)&{4m zv1MaxSNja7rPc5FTb=r*jyBJ~-~ayVQg7t;;ibhb?gTz(L#NZp3?05U=f)|gar0)M Z<8N$gZ@SUj=JVKpF8g!ErJT{;=wI=Pzk2`x diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/nl/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/nl/LC_MESSAGES/blur-my-shell@aunetx.mo index a1a351782bcd061077beb342e4ad60f6db7c8ee8..0a4628a8d00d280564cce877400a02878b57bc0a 100644 GIT binary patch delta 3509 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 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pl/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pl/LC_MESSAGES/blur-my-shell@aunetx.mo index 47fc350cffe0d1c238e6742f800b0a978fba0f12..06f939a026f140b589f6e4132d853a0d786abdab 100644 GIT binary patch delta 3104 zcmYk;3rv+|9LMp$21n!)a=3{}9L*~r-l768aMI*jYJ&F?4MEHlFepPjUh7eY2 z&0*8E)f_dKmCc+rTW*!E)+*NulVxq$v@|LE{?7ZJ*0b|_KkxJUp7(j)=W_7N#^Viv zbKbCLjk1djCM{uRA7F0;2g=nbvrTvn8?Y(bED|pvAM17N{bS4us3)Kw7vm`Gz$5rE zR$}00vvJssGpJf(EH`suG2Vvn;3WJGOE6`CSu!q1A2y>J?!Y*F9l6!sM?Q9%Lw`Jn zy06E*eg#KR_wXfka13VAzOCUzU+6$OWd~7jcm(O8eTWyZzt=1rFCi~uf1>USkLRH{ z02w?>b{&j-)rO$HHxc_`4(fY;jHi7oy0d+kc87v!ztvDUEj=w-Y_6-N!cLmk)>nV)C9_$%pmWf`}7xGYZ zT!?y;x$gA})Kt`c7=l+=11cOy$Dc zI1ewQ7GWt9oR2N25jySqHEQV2qlWZ1EX7ElGj;PYk9rl3#@A5${xi(LYI z25cuMYM>qU2CrgwAG3F{PIZ11wxD;IbKi5QDcFzd$eUP#N3jS!3{y7F!UMPsS7PP} zGj6fHs9p3PF4X?N!3i&I3r9K+Sce+I6UZo9BHbN|6HsfR9NGG|1T|&#?)A;6j?BxIQa1wR0p#do@m;)N=~%e>rf4BM$J_V{)|6iIDVe)-1ik~#Ck9cFQW&q zxpj@R8V*O@mxg+72CC!P$gEi*1}1W{f|Et~G8W=hEI~gjB@$b)2A@Z5ufAiP5lh1H z)U#3dRpUOaM|H@Xrg%3gFfs; zP1Q+^z;4%HQ6uyR>P>smhn{iHi;Tp*)Yqaq9L1pur;KO(wY@sIpf|gQ`oW2r;B;Up z#!}Bk4RtZ<2WKW~O)Ph>??BCcD{jIUQ5_u2@UmlVII4qwR67M2g^M))jH*?mhO8Z9 z@FnbrhfohXjOxfyxBiJ+KZCmOM~ugd$jjReWZ~P`+ntV;qnG+JR7V<6BNb@kM02tg zwP@OLCcc4l@gE$4ToPt@pXpnUX5h+S-o% zQ^3w}GK&k5cR4*?gnIBMjKjB3Bk~by$j%}Q-M+{97?op|gq5g$-Grm@7*=2pYO0Fp zo&JBZ3N=-`F;e^g6;1|n;UM-wl{$yuUo9<^dr2Abk?EwBgo=jo|K&j{OUYwIi*+7R z!+Ob3*}#d`MHcM`%M^|oL>;+@G?Mj%1#8vhNur`{rlL1iq0hm2*7-V;tP_g1bEs&( zRs2M2Mdd!CX$rQl`F?=hL~4l^q6(WKSn@f}AsXI|WF)B|p`z(oMka+W;A&Fr)}O#p zgqaBL4qZ;uLG3p?C;uI_N>x}__9)q@3S}|TPSM&}OPa_K(wCGIl?F1GXyJv5*33e; zQiyAa)&qYCDZIaaNeU?-kC1p0D))0T+O3SihsjnlpCpjwq=YOXDr_oy ph{Tf3WGYdaO$L!+MB6?lorB6`Qs0&u{dZScOlNXe#_)`!e*v>*A&dY3 delta 3250 zcmZYBeN0zX9LMo5hJyHns34$u5d;wheAZMHwIAU_q?q6n3MzsiKjqQKeu_Pr&#AeE zOUtF3Zf?z%)tU=!v+R$`mh+F2+H7siscTtTy7m6tdvR`^{l34~x%YSPJ?DJSITun-hUv1UBJPyokw|7;QEQr{Zkff^m2S9c)82Y`xu&^+0a5 zLC8;*g&NB=)OEA`^F^3S`&L0kJ=~9(_#L`~k8wL|QK%8dqdJ&^zhM=2#=<^k49*sz zu3Lj$uog+CZSs8yd9>|B-FE~dXy00>=*E-C$IkIJ5HI0W{23>s)0a`;GSo=k!RdGw z)!-de1NSizBl;1TjGE&N|F{+T*jIdo%Bi$b(E|dpUdrZTBgZ8;2!B9z@ILZvH~(s= zAM=oeX{hV+QP)+X8m>o;bSo;O&8Vr_gX8d69Qm)M@;xUs$ASK41=x%W@EWo_EG^#a z*f>-N@~|5&MKw@?YOn@1vPS>>9#lr(#JzY5BXJBXm#R%kApd$m5hv91WvB;N;Bc%* z-S94Ij?bV*^09yZ5^5^GMrH7Zf82(8?rl`2e#em*&b%lC<515Fg#5|^)D2~*2UVah z3?d)Xb%of1%FJCHf-~8(+7)Y2Q}Geb!W&4Nmdrw$hdH<&4`3dKv4fp)AL95-M|fsFcpfIarOFx=&E|e~IZBNiW&=HVQMe|Bq79 zi{UaVwYO0X{D~Str@>~o!q^eGLB}amG=$g^yCnzyay;bM*tBT2Els0Z|m!OmDtK6PC+ zDihl<9Cu+C+~*%3L1pf340WUOA(gK9IjZMZk!iM{a5O%`B{*`p*>kuTXXAB@!oefh z^Ed*v-HxI%b{4hjucEGdh{rL4*Q`2pI+OgX!E>A_!&cOyNy+j$G8zwZ96(LY4b%u9 zA+HSUneAPdiVnvUQ4KG~NZjPxjLOh%)IblSgDu(QUnBX96Gt(U?yAQp_$tS1sO>g! zlsB?{s29+Cs197fUib|v)orL3&@I%O_{Tp#kThy42jdRRLUr(i5EZtveTwSgb?k#b zVmG{pWZ52~QkFi(dvRoA1jjk32L(_aDe#Y%`^Oci>o%gEyB$fM9Y!{Qg}$Jop0#5P z{)OsD6f01vibhRI0&3BuV*$>4u^s1NZ(i(uu>={s)uFcWDSQT7aTPv9nhIIz zc<;np=b6bwU$P~md7Y~)*0qqnAtI=_?%5=wbT zQPxzHewA8c1?{{4R%u&3PwXNz-x{IH24av~^IksFsOx_NO_Aokno#F6h>oIcEhb2m zyNGpuJ)w1=vXCetwi0UJ-CAr-caN{Z7@ee)66=WF#0;W>=qNj=D6LAp$^l{?p|zm( zvYHr5sLb`S?YNv!quM?0{G+>aH>2h!o_K>`eYkHyuonp}E=|W2qND7mqWwP0KQR@X zh(aQbs3!u1il$H{(ZhXVC95m@I5CrWmCyoH=|?PbYu?vt=a{|TJO;P<5NSuH?fV_ zLv$i|RXi@ksIj4J8IeuwB-jY)&?&2KsLiz8|NZR$bpCGl({Ur`aBry-tg2jHJ~uiLb;vNY44{AE?}@ek(@r;LdG4+AtqO#lD@ diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pt/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pt/LC_MESSAGES/blur-my-shell@aunetx.mo index 10d3aa18be23e39b3cef3a8af52a754296baa3d0..5c0950509a1708e741b027c3a281e90a0ef5054c 100644 GIT binary patch delta 3429 zcmZwJdr($I7{~DkL_tyUf+C^NvQUJJ1MB zq#chu+GZe+vZbgwtw-Ho=3Eb$RZ$trg`;cYqEa~66Q(+R;8}*?3F%%O~4;t-VPe=N)EF6f7 zFat|*A|A&~{0%k3F@4P@p&!-pHdH?~7=uk1P)8@IG~#Jgdm;Jd8MYi(V+ra3-=b1^ z4NLKNjKwwm+`UtS8t@@xveu01@H33ZcGUfMkslin&HC#LW24LTDl2LR|B7l8dw2_V^IwGS4S0GP{)<1nOCFM zejn=hhf%3Ng0=WDhT$BJ41HSx>b{Mr36-NdsKODr6Lo(pYLB#`p8s{g`^9C{$bLYr z-9N~Wbzz~EdLQa~GOD9ARBHX0igQsJszPruz;1ZwR%vT)PThh)`?aSqnv5WI{VFeJ`B_a&H5`y?s@Q9NV{W??$k;6k1M zc^Venvg_ZFg3cfj)qDy1KwQhgSu;}z7}Ch?Nc_b1|T+>E?f>>w_{a7LGig{T)$ z9V+!L7*79onu=!h1?~@G2~cZYJ=9&2CTyU6468BQ=WeEps3p7VweMg7?J#!v3u^NjDL+})8fS-;e|N7!3E`;Ju48z-~FaC{M^Pm)W#4)JN zlY_sif8C1ttQG4N6?17zFC-$F3p=O$fTAF#N2^XOTQW2n{8CRh?ti!I@ zfI9zg;uLH}ZKjUow-_^U79K;6kp=TQoQVb44G&`^wxBY29yO60sHON5HGqH?UN?3@ z9kW=}4G9>9skjTLq6T&amCBz`_eG9#9~^`FelltgjQ83_-tWs%Gp|K;ya#y!1?+%# z!$+u;eu-MU+Zcg&P+tgT`cc>uHPhj!H&_|=#0FIA527;Jg8JS`)XdwE6KL(2haD#9 zxU&8WsIY8y6c^)l9D@EdW{s<{AHIw8@f_+wvFyN2n1eI$3~FFK9^!umT#kO+jnlCm zm!XdxJQ=rRHvQXqDw;uLhMVG{s8o)|{+Nz>Kt3uX2T=n%jw8@A%^rm$oQCzN0bcS9 zWfa<^DV`Y^PkSZ?f~b@buMu;I&4fx5QB8~@w9c;(WX?GSak!IsfzZsgFI4IXr9P3+ zo>Cd;;{3Vxst#NE4A%NTPo6c>*UE}YDiQ6}-1Dz$7_pI1W=MpyG+?h1 z<%Hg#D$2}CB8F%nRQeK+5wC0g*HB@}onxl;dxKCKwRu#^h^L7{LTTJi=p9i*=!~oA zD5~%ta{gl)+WRW9~2?j|}AlXc6pRCL@52)$U+h)g1$$RfgtCy3_=m8rzz#9B2d zvkC3?7uBHTxHz9Xym~U~q%0wN6Uzy=%yR#b=$Ji8Z1FDp@fjk?Ym2!=vDaRPAw-_n Y7JG?)%~jpvgPN~&uZV6wG;Ck=f5tyV&j0`b delta 3642 zcmZYC2W(YU9LMp~(n8BB6uPL;%Pgy<~ob3LykYL?eQNL=-SVkr75jg&0F3YQ*CAckjgzIm!Qh&bja2d-i$lZz}@6SQ+5I z79Lb|T*t-@`5;v^F{U|Ix^Bnil;6ks*rTa2ZE!!f!jq^+uVZ8U#V!AV znUn*=j7h^R>}-tRRFOHtg~RBeZLguL3^!BFZqf0EGyfi0Xb!mtx%3)Rw0OvFkI#iK}P%n4La&!ZZ8 z1@B<{mc}rMrcs1343cS%x-SmZv97K;SfBb$6`3I1IM1H&WO#$mnkpBIQ$*8mLg)D2KPb+#SBK(Hx}EXCx-FY1FN~fGv+N+4?jT-^_Qpy zeTy22EAI81sJXm{>ghx5hsmtKGAu={ky|(l^Wg8IHUYUq=3J&wc>`~hi;xsAH74%ML`=11=j!|oW1x_`Kzj26il zR0T8LFA7i%D?`oQ8suH31~v2t-RnnD6`ev2?OE)JS5YGr#@^KX<6IL^_YXw9$Dc+< zHx5TSZzkh7EJqF5Y3zutnI~u%v>3{`Tiq)8jk8lcR@~}o= zFJ@@}pCj`e7b4mjGYQ9I3ciP_cn>vn32c6uj2hB()KHJc5m<b;7x3dQ3=lC?SMTf4?uOS5VhM@pqi;Q~s0oo@U@(yzzhhZJ|$DxT%&laN= zTNP>%?ZOGT9|IY&zp)I12b_uHpN@0#eE-DPew1s-y)OU%Q^FlF_iKq zJb*h<6{q)hhHfN!D9=GP;42Kri&%v}BFn}2m(Qtn;%Qf}6Q+p&E7sJK;&xd+ws%dmr_D zFs-DGrWsQ9n+!6#VGOG09#qApr~_${`~7CrkiLVOyECZ8bq;m^HH^ZaP(3vRoaaYj zbBaZ%p_Sun52Ih1Yh<)a8*r+~NNkH8F#wf{2|8~7C8RP( zf_?a~9PFe9#<}_b)5E<`iRA?6n7v5HYyLIoK0+s&4vk3S$;867w@O#{q8}L`v%)Pu zrizTFi|M!jc+sxdN+|6hGy);SOGF@{G>iJ}U$qhnn!8EFYGNfZns}VHkkP6wBDC5y z|C*`_Vkn^FkaVPA4Lt=uIfKBD58Ai2_1LZz`eGM;{h3QyJ1&;zhzkBoRs-5A|)* zHlV*%T;MCWy!qCGf)bB+fzK-OmRsdsYgY06vP6^i)YtA;hsHHs8k0SOXLBu2o>iDz xl2@GTv*yjuvr0bO=e2x!Wx|u^%lFRC_2l{z%~Lm*=9cMU`;M|hU&rr_`4>X0eKi08 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pt_BR/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/pt_BR/LC_MESSAGES/blur-my-shell@aunetx.mo index 3dcad8da2a46c03fd98212ffbf83c9ebf606ebcf..5bc86f830c83687b6a4829505622f5b2f0d528c0 100644 GIT binary patch delta 3509 zcmZwJc~Dhl9LDhdG6;u=iYPP^&BW$@ ze~VG7NedG0XLbpL8u39{6KocSYh8C@8OQsv1XDuH^wYfs)EEdyH4HqC^*;q`*IY=8; zh1}BiV*s8&{r;r)yvOW2D(yIN71h(=re+;+5bA>E$RKPDHo!{MhPcYf-22wQ8%nYf82w*;XCg6!$_NU9G}3m zn1jD#SM1o#EElJtM*J@3;Zf8;9->DL`7)m|7=dai4Yy#Hdwd4Dr=7=1cnfud!sgD@ zj=}{TPsdhx1+|xaqnr-MB7?VNRC~D?hXqlrzb=^139hlts1fc*P5lv6hdxKm#Fy^* zv#7PLL5=hVcE*Hgv$;41wP(J?K^V;F3UM@QDG#9b#Ah+gzj}6#6M=XQ)zBSO!}n1m z_hC5dP$cU6IMmc9;0DabhIk6;i=9LL?j~wLf1>XH2s>Z^>!sg!_E6Dg$w4(R!2Mzv zs$=6&Ygd9?Yb#JwU+tcM3)Rp;)YKluH2exRLyu7R4{qrggZh0E>OP(nD*9n(WU!Wx zLvTE5$_`^Z2C`0i{L)Zsw+#DYH8RU~0|%pDtXW$ehO==g_QqQ{0yDW-Gq4f!_52^F z(v1_ot+@#EFb8*FF4mx?E{2zZOh8R(25PFiVSgNsTHC#->knZP-bG$C){Qhh+WT8gX3s3p51gNEGpWv8-n>jATwfHM)GtJ}m#w*0iQOA{7jQemn zhR~ZVoQ$>j1}>(3D{b%e=m8GkIDzg>!V-+di`Ww%VG-srf32_@Gw@Rk#5<^t{(~tP z{-iUIo~Wm5Eb4a)QJc3MJ^ErB6|S)lFb`|76UOlx)JTS+HrHg-rdi}#idys4SdW>y zfW91Gq;>77%cur#V{b%SH*k6)nH{tWtI z4QdZuM&0Lc)Lx3`5qKIWVsEU%5c~xP;$2ibJ<^$fO=Tat)efg%0B*!e+>UBEjd|9d z$ifL&i0Z%*Y>Fpv7oJ15i_K#Cbl)w=%hEo?a6FA+_!Fw*cRf^eK?w7s6P-{a9*7$0 zNNkA3s0L?Z5Y9)v56Vy@+>ILfRh*CUybcH84tyT3qekBCDW?M)Fq~sgH5D~{2qW+t z)KdJ6nu*^~KfH(PP$TA59f?3)7lT_d6VIVBzQ+f=wc0Z!l^fKzYKQI#Sqc(9^7w3gmh??@*sCHJM2CxYO z^!#t9q6YRLkE$KU!FUM^FfH5Jz2!KHHhcj=Q(l|`QRP;fW>4brM|1;8Y2cpriExe^M zpIWZ}E8b4>#af~nX;0>oLao2nZXVH^>E)r#_IS}|i6iQeiia>kwn7JPX@jqjk%Z;< z{_~QL+lb08q8ZSJoJ{HwmGQb;KPoec)@~S4DJPoJx>89clT0Jp?X8KHY7OZ@w10Mz zSi;NGTc+?CMJh-Md5P4Ol~gwBK%;3$7LzLSc;N~1mL+_alD_0+GJ-56gGd5V8A?Wz zbvkg%a@U2(3fm&G-90CU5Vh}ptmJx~!TTBQjNdu48itepB%SyZ6+J>KVPrOGM3#|AQdfFW2_o@i z63HMc&B?Rm1u~Tcl3b$FNguIftSXcOGLB3nsYIpi!M(w8J_j0~jyf2fbS>&%q%BdZ delta 3645 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 MebdO9;-{zl1A+zYvH$=8 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ru/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ru/LC_MESSAGES/blur-my-shell@aunetx.mo index f7ba1de491bdf9355959cf0a4aa880fe3c673dff..b04ae12411a1072cad6a25d70af72f73a88e33a5 100644 GIT binary patch delta 3509 zcmZwJd2miw7{~D^jl>!Wi9{qMh$Pks5+yWC?OQ4cYHdhR`x32MUO`ierqmvUnzW-t zTQsO;hK?y+rkK&1m@=JCYiu1YUDZs#zk4s^kDi(5{hV{(``&xbbC#t1L%&NEe!gq< zt8Fw&84*o{1(;pOI<@$qtPC=%hpRkGv50mB7GhFeGu>K_b?_sveG+@qK8KkY5^R=; zId}vY;zTo_bqq0U&xI}63(w(SRMDE9=OlDUWvTZPGDoa zfa&-PcEfhzW*ImYHRAo4g~w0>`4@e9kw5v2!Um`pCF4fy;f27;tSY+_l8uh*mY>GLN%)fpxj|=?9HlRjWflB>RREN%>GVz6X z{Q_!kt574og{hd($ZQUdMXi~On2kYcKf*Rxlljv9sXi)NEa|8h4D`Mj zj_TNW)Z7&!zqMtk)R%eJ-$T9V5Gu9DFd4r@W#|#=`9V!wqfqy^L_NosL`65IB7?PF zI0W-hDXYX5Setp$_De?1-D2#AWk{Co77oUMShF}BjxoGGEjoOwEs^~ zd5#PI&G->!VLEQZ46H(>E{elICZJN<5tZuaZ~%@#&22gA_lL11K0po{YeKJbaXGfe zDoo`47Rd0F`Xtl~x}ZkX6My$(3NVFsZi4F?yifZKKEz6nHL`36d7CnL0oAcPxB&xO zafo3lj>4L}eH72l$1A+wPLmJyY+G9n7yK1VaTTYKR&R?W_oywz!?bUs4wPMd^udd$ zwbF=*r>~ZT`8W*Kk>jYvdf98=#2DKC9mszymF85GvL0A~D{vCtMz*>Q>FDl)si;L$ zgwBbGTWN2`9~e<`CwEncvKN)XXbi{BI1LAR9!IVI#LncuGnHgM>fjV)IoNzuO1Ge1 zREZII7WKgIF#sPR%ftS`p4j+VHPR$s)>O5{=GYZ$F!HgeZ8@oz zo2fad=k3Eb_&LVm1I)!p(!~8fn?)s*3ky*XEE<;V_PE-ePVFcFg>+XhlR7W!~T>HO26)mEq;YdaL*vKcd=Qv`~6v5r606;!95@W`qFa}USh+@btM#f$hV`i61H;a}*}NIEbf zO3@6A#A4)(uwBU1I%OK4y0@L%bmnw4b!AK?m{1n~uOxXFSK&OO6)}gPKR)N^ol7H& z@F&8Er%Ni0rbJ8cqB6!Vaz^M~a^`srjTZ@xY$L%sbM`veb|Rk$BqkBh5Gr}j{8O1h zkPYV#5ZDTW*?3YmQ%fPH5}Sx-#8_e_!H#maYAMDNoZe2E%%`%sjwmEvAs(0IR7%v) zXlf9z5j%*diw+!>g~U>V_2-;sBXJSI`f>I$I9p0{{iYgT(V|n)oM#dXh^@rq!t!w5 z?`$t!Tur2_LRm|^O=um25bKGzhz-O9LM7D2SlG_rel_1A0*Gw{JJ$K{sXMX>te6-@ zs3f}hoIR_3K9dM{FFyI4PVHr)jEE=t5GqZGAg9L3h;_YsHBYgVC?dKM^NHDnO0UjP6A delta 3697 zcmZwJe{{`t9LMqZvN5x1w%IU0?l!;15N3$j#QdK8TtXx)%of{_;<~iL%xHd7EIQ>J z?=%*;Dho;lvxAZaQVw)JV1S~=i zmZ3V{i~PinVS7A_bYXXpM_Zj(v%2(eji~5`WYia(ur+3)Mw*8maSztTi^$~c3f9J7 zP&57mHQ-utX5ZrwB$?Kwp&7}t9;n}Cqb4{~(!VXEq6ZyD4<5%*{M_|x)J(oZJ@5|J z!M{)s42yTJM=8Me?KaNZ{vLY09)Wgjh($U2{qtFNOG*SG5J@ATe*;gdr>!>NA9&7 zs2l3Avy}Q6)PS0zGSSk#-VU|4>8P3Z#|-r0JUoipGwqqx2+YGVcqEbhYb_($`Wks6 zYGi3x53^7m4M%l68a49?r~%D&zke2$dLNeK1`Nj()`2-#8tOUOs0j^2JwMk=C5_6H zs2kRzHp>=N2d}%=526Nk9JO{IA$`~-RO;`#*L4=vQ4}h(vDg_~p)!<sdPY=IZhgTJFv zn9$WZ@41*qyBc{VSnG7>RP;gZp)sh`PrxlW3okRFP|~JNewDMSjNZ&3|M65Jx|`)= zlIt4O5C25|S!fSu*Z0OG+JjLkosH^fB_`lz)bkEt7@k44jh({*_%kY#89iBMEbmGF zOR3!8g4U+^K^}r@u@R>BGNWq!a40TDUH=f{nb8&00Pgl?xiI`8vyGUA8puUt@^%yB z_&+hK4-XX|zJuNR^CuOrV{42fZ+cKK)IbYRYrG2e0$PWe zxF0pJn;3~Y%PA0r;UT<)FoO1jOkbHAfIQD@OQ^8XZ7XsT?F^2?>!=$ZW(&t+4(h>E zQA<#WTACH8%$-7|^c&Rg;y8m^`y|xB`lBW=7PXXfF-7P9Bo%F*%c$Ld7u9j>5N8dW zV>8;_P@8cyzJz61fz5f^7~GG0u+}i=kIg=;qJ0h1uxz-d%O4}0fjx3KVY;w`$`YJE z!t7PNjrzgnN7&hT59i>@k^El)@1WLn(I{t4e?U!O%xGur^D%<94>i-(cn~k5QooAP z>N%&-JBdp6ShIb&8yDgz^3Q>=v)Bv6a-9ycP#GGJov{d6+F&W*lT9960$u1xJWl92 zDh&uN)4z&-<~&T65%US9tC-L}s7L7S#(uO~m2)Fwy_$ozR(nFlM`RMu6E&q3l{Lgf zLQ~j8urX{aq4ElmM}!kIiTenZX$0#N{8Pp3^e4(z5HApT`)k?zI}U?Z@WxQAM;Rh7c+q z;(k>qylH|bUiDCYxMe3UC;AWzi6TO!xjrfb>@1zO$A}yvov2HwbZ`j1hvrd_B)Sqh z3^j$wDTpE=W(%q9k zv#8ipIK#7GX2G<=1x22M!eUQxp=WA-$-Iu1^`EcZuMY33AD!r}^1tUl8u0n6{l`7} zAWo)vWMCPwG*IS$+v7hO{0J=fzeBa!6Ikj$;6LI&!Iy{p2Lj6it2>(i|DNRWzvX{7 ZQ1Oo&cUi-6o4ghFN*{{#h83{f&8Loz7;6w;;H+^jCuny7;{ z9fQ*81OK%)9;6R+mTRG8uxiV{x}C*sUTuq25u(m;yYF5HI!eBcaFXrdg%I_$tO9>a5Z3A?d>rdd8t zV>70tn$5ut7&41l4;el-#Mf**jE~_Mrr|~8opuHJ*rdBYjSDE>Lp31#QL|F)MBP7x zvv3q?i=Du2CT&{ ztit2C46mU&kVmiTu@n<|zeUNYqTSAZ3{oDzH}NR)u>{`!9%iB%I*1uKihOL$UH=YM z-(^%oe?g7NB+>@Ej!W1HIye%_vJA>5!@0ZQ%vRnYWti+&DAwj1%II$bPs=@ z!6;DpnDTA9qn`J&XEn4RU@H!wrt&u|!XPX16jtL~coTE5m9LjD)=Nf1^CR+%T}M^; z02xgSd z_W#dhUf_obOvL#dS9);-wb~b>Dy+iIxZah&#*>tPLiMnxz>Mj&_faD@jGD?XQT3cb z)qeri&~co{`|UEBa-7C~oJ+Sfcb{V?jw9>O@)r0*Sb_1BSD-3hg$cM0H5D6iA8vKO z|BY(cebkH7saze(!kFf?jLdUbjq3R>R7L%mh@YYE8$tExIBIQ-;Zpn_wMhR%-8U!f zk4QeMVdbdjDo|5Zk2)#a!i@i`WTISn8Lwaniz5E^T8SFUy{H#`fwee+Ycb;~|0wN7 z9Vn+!yI=yf_zH`C+fe7rN0^L5_zI2`Gyd9_ceqfBwbY{Bu+zC8wb)Lf9z2h^IF2(= z`8NnXt2MBm*g+_D5Zj3DL>Iv$-c|>1z0pRke}5n95aHDH&ifYJNhs;18tR8hz1IF# zdWO(WVKBVIN>lYPRk_See4W@zbP~*vmo(Zs3H5$2ZE`kam?$GEh&V!1w1lW5G`vb$ zK$`P+h?N8fp!Yuy-eS}I_NqXtA-cVs*>Yq(dkY$3-ojf%EY(Ir$zzqnq-6xy@chKbyjstw|P zd=53x8<>o-NuhzIqmJjJ`YS>Wv<#JzN(?Y4tEaLSTd)_$@j*=BF&@E6)D2%nrqA9- zbu@|U_;a`YCGxSa`FatjF&cXqRVwaBUH39-V8@clzdAh5fjm5cy5Kx&ZZDxS@|)ZK z1Jyw|>EK~47V|L;^&neNQ`h9$jXHk_)z3lHc_VlyzLG-z>!?g{fYoSGi_J2y4l8j0 zwc1bOqxcN53OmofLUnKswFYKz3tq+FGCHW5|`pm z)Z#sa>URv8ZF>zJ?f;LcXb#Wd8eBsDP{lB9+{1cmSVP>f9 z!*^*PK|SDdM#D0&b*PNhVhs1URx0YqkGjDiYNW%cxgNpQ_%0zhT#~-N$NKeBQOEA`jhc_%)~$xl@F+BWS^jJJcW9qbEpn~#R8l~Wn^`BsH625 zNxKGhUOj5D?nbSRPF#lp)PsDAI`3OlMt;a9{~Fm94(P&bsJXgj1}w%=)QjshZp4h-(EFtYwF^d(#b-a}l7Cea^FlA24H!+k3LnRM zti}(~gMXuTLoOG|3e;lTi@I(A({UKXQ0qvUm|rU0h91bn{e!7i8udiln@UkDp`x^{ zB-FV|6`?0m@e|%)?dGpGno)#yPYE$sI;j*A%51%RFrYoH!V4_;hEv@kx>cd^>{@1)QO~D1&jva(jt3tMe zZ!s+vc2{uQ=;fqW_6~ye7+m>e+ioE=w<>*vc0eYvfXF8_E!zmKi(aCfNYwtnpUV8Q zi$(=eO*}B~hYaehyMN1lZf%k4dMqNk2>l225GtF9Jw&k@lzqgL#8P6fM!cCwB~+S2 z1i$tAEhXXzEi#pd2>7ZvC{wi?EW-yJ*GElb6x9@uerzZceVQRoG!1^>FscQtvRQ};n4$?rqA4aQDOqkMhD*6z#SJ4f%Pmd$ z!_kJ68Ar@=vKpJI(X3pi)p40d%gNL-Tc*;f?{m+wae8N-`+3jdob#^d=&t1f*Xsj( z=Q;&#FiI2YMk3pqoyV{cekctdvyQmhbt^9AxCQ56#$9H*bSH-4UibK29Ln(#EW(Iz zvlJ}Hw{QX0nE5O_!mKYRHe)d!#Y&8z)w^*f=Hogn!A~&;y`9YBFcZ~qIr1l)h-p}h zv|-zjM_LPZ!1qwsAMu~}nSDVei4)(Wdg|$HmX2kp8x|vjum)_0n@}U(j_PnTUc#S| z$+NE`c?OQfqLL>_xu5*O*@3$ z@dOs&H5`EH(Po7>9W~-TI0z4-267X9YABHTjKwHaLz%b%^W5X($TRILoPt+T4;bCW zncDF~b=?)zfPO(e{}%Sa4y>21@8_eU%~F7BV1)aJ zv8aw!qt^F2KrV^Pz9dIyG1x0n~+(y%QzC-#+miPu{aAC;!wPb<1m+-H3Mt0SnvNK zDg!wYn7~aq2n%ov7UF5t)Wz~Kkjbbi%|=c2KrF=y)Y|Su-M=4G@mJ(SV?F5A7+i*F zcp6h^-`X)eO??KcfjrcRhTx6>mH@R`f|4Dh@O6%pa0z~f+6!fT-sEK0d8iRLqGt3v zychH6)gi3K#k6nfy`3JlpmyswScR!{lgY7FScuK2DZY$xIDmQNQmaC(aRX|zZp19y zgW414-M?SQ5RU&r4JhOu=AZpxu~g`s<>3IFghkkdVfZb2@EQi=P1J*e_)Kb#gyVIr z!L~Ri!&!<-)cw;@9h&dD8+F~e4CY@AU*v>#qo=R)C5%Lk#EYSrf$cFL)q%mN2b7`) zP>xAB3rlg6>qRW#I5X4f@FLVwG@#l$lga#dq;i21+Wo(w8tO=QU&5}aF|kZ=xD{ zA2s5SP&4oeYWIJR1$Yf}F`b{)ScCm_9xE`F&*N0A#|XTFk?6ZcMW5bIY)$nn4TG>h zYUBl|4h}mb*Kj{M9tJX49A4~oPV~n(7zW@d#4ip_oF&mhdkeBZ@3qs-_n4a7t&!2nd5K^U0-e?~g)Ln;Z&?k`&V?r#16@OJyl zYJTg88lO!@YyGt;o*{!sAkn6}v#>w?)1T^|^dS>s_3p9Y6K^k&M+vLv|Idr2d^1sb zjXX~DCOtvg5S2+<{}L)skw=KuT}AJ*Hqq^}iHdfu)^8)x`cEJY0MxRt~a&8W(g z#7owZIbY~t%w9pgUR%ge z5=Ge8HiE1qxgm4uQ)qLQPZI5JTcN;#<}HKZ?5>D9W^6CbcIyxH3tl$zlE7d7EXTmS$7 delta 3659 zcmaLZd2mfv0LSqYq7hkSArf0IA|!$&VyUG`ltd+{T0)6PBq5eOyd;$J5?iHdY!OA( zGU-@a(-tkIW;$b?jyCj<(p61q4V_U@L;Yd&`^&v%bUM>Be(!Vceed40+;eU;tnk{q z%FA;##Jko|_K@}@s+lprU|b76DEkA93C07CpJN5bUt=kb2{fi7p2fC!19j;W^v4!0 z?c+9>&T(f<#o5^17>_wfG6qdO8z(;Q{o;?~uWnU-3C? zK#llsREL|kGUg_ZL?+WDwl;>zG6PV*OG6ECtfYOjf{Jc*1T8#)-uR>AHPlFcL*4Kp z`ru>K4V#78=Yxsv6ze_a4@dL6g-O>@N-O?XDF3WD(b*QR72U=4qd2*s<0Mo zoa2~qV`$qXU?HZXuKy4}J#;6nTiwPt!Ssxded$K$bf%)g$cKTBUd zZ-?qx9Qt7@s-aP+hR2~sJ_XgG1)eQ&iO;Aj-5a~yNgI0<|owDKXT4%FRGyc)Xaur0(M2sP!{U`GaWsp zRCK{g)Qu`pKiq&?1G{k?o%LA3wK~L-p3S7;w7M|D|M_uO=&f1s<&b$9!5RdC#dTK z=|v2V#(Z3i6Se<;rqY8GNeqiOl9`U0`btzoHK-Bo!a6S=0cx#G>t^f1eH@o#IdOe?O`d_BxU~{~S>cAt^^<+}Bu1`SCR2u5Nas}Cu<|fi% zkMVonUOd6rcmq^VV^9s`IN#55zAr<~SUHAc6>3J_Lrv+&sF}EgA$S?J#%`gu@dJDr zgBgCP_J1A~jjRmy!_}x8Y(h=tR_FWO$Vz;Ucn`_Z<-9T-+aq(4##IO9^-ipreQAf&+O;p6}*YbIFJwSVV0m~id(ZM{yf9Lw{jcG(%a@ zl2T0QcVowO+>1;j%ywhZE{b&O&!C^#f1zX*DI;;DglM`nqEa%9G_6_SAL>!xwS;;Q zl?swVw85Shb#EP+N_Ycvu-Tw`P@W&G!kvB z%|ttU3n?HfT3#yJU|RbswWJx@L9}1mkYqB3=+&har=k_7(t!*n3rIM5wzxQ$Fqe-# zq&pc&R4md`6^iyuP-D%0RXJ6&o61VU_A!fzo2YcuN6j~^tV$}clF=lI_!1Ru0+mp* zkoc26B!WCG=~MzqH!_R#B`R%62AM(TkN`52sPwZjxwc`Ae=YMk&~8k0zKlMyI-rwR ze`{`$yTo!8T8oN`^IePFRN;&#omii%4LEccvT%UznEpX;_tOM03A`~AOudSq1hsEB_69|MX{ diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ta/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/ta/LC_MESSAGES/blur-my-shell@aunetx.mo index 8fc6e3d70216ac69dbcb7c95a5e093d82f2fb374..6503f17a6892106ae52b6b12fdd936b154cdaaac 100644 GIT binary patch delta 3509 zcmZA42~bs49LMoLqPT&Yii)^^3m_PX3yGqD3+}luxPeP*x#Vt&_##75Gj}Z&nZ}{1 zl(EDyEw!{}T&mHWQnSWNC!KL=Fl(wAo%;Unxi(H`=FjJxd*8d~oc}rJKKVvK8}58pTSJ5 zQ`;;KhvA2qhf~c0)}fABJ1)F|S$G!5V;y>JiLVb-t~alw^U-da1%AsuzF^RI2iSX704v42t#lOYQ}p|1AZ58 zVFi*ryHcNL;5F3e?xH66r*B-idrme+(ZA(Vsf-1_t57pphk9T!R>i%j2k!H)A4dAL zW7rfgU^@PaX_(l+ECXkvX1pJJ;8D~>9%4Wp1(VN63`cd8jN35PZ=Xk=X_s*t-a|cL zL?f5lak!ZFENqT9PkA9Hz;|pbYKCQ~)E_|&=oBgw z=ltszP-}Y?HPhReg0YRw=Ho=vp7|OFV;Hj=ffG>#-|V!?Va(>>}!OcTp4i4fXs-*cPj^Uiy4WfQmLtI;w*~ z{*BS7f#sssZV~cbdj*yH694+!sE*1}sXdCx_ysCMk5JDKYvznZeZCFqIe{c9`d|t& zSYvQ9dF$*8r<$NpG?WZ7=xP^=PV)(S`CTwIQQ@E&GkC%&uK%gy|{uNvIA|Q8Vg|9|f@lsPh{c>l}!MT+he37)&o+xW6#o4fud>1)k)3 zGQC~G2Y3k2G5z35O#NxI&H)~YZXBbR?bw0^tjzVJIF9y-_M8lC+<_g92XF`$ zbTpfS7cm-BI=L6p7(7k81i59?Q{1uKjZE5(A&<77F`zZ6_l!%;Y`jeSbKH%)JG(EY zrZOnn*}ltB$F&6Y`6F1$j5d-6Z!dLo9c3Zg$7W(auEiBtjr9)2)!oVe0xDa%pf6Tq z;dG-BGD&NVN^LgkL0eIqv>bU`+j-=fb{&^uR0bOsccM~1G}G)etk=V>`DMIGJGiHN z-tC?Nmx}7W+$QRZdTpq@A6xZt18&gQWiAGnuw?m|!~H+{xzjST zzdN>Xp$2*awfP?67>o-H;5A640M)@asF^0SrM0F*Py?Ee+N6cp95-MF9>Akmfd}!u zLHx8bkO|N7i%R>u!DjKa=d)p=v3RK4BcISI+rt7O!`<;qLv4yYREK4#0ep%Y*mYDU z(nq-a<4`l2gCFzY{iuP@7-dG%Y&B|0zr;lR0d>FTXnr3s9(i8CYLN$}BpzGgC{#yz zNT0R?Fh z-xExm!dnqjrjj-Kw{j|_n9EDxFASOH+W+8o+NIOo@k^WGGLwVhT+c)HnQg*`bo4zk z7JKl#%fRp#_`RTAWhQ%v`$c$*_U2hE6E2%g{#Q`BK}B!4$#dLVZNXgHr;zV?h3|Mj zsfm8OEoxuzs_=@|x~X6PKgy2E8e$=#<(f~hWdh!=UO=M<5lqx4o-8ReqKP*CMP;lz zp_x4{EvdXlXqi%pZ3HLPI|1Om%=Cs0AxNfGB2*@8{W)>QL~SI&ru53I{M9S=aoIsd z$At{KS2VH>tcd7IXhZEHq6l8=UQvo8h)u*IVhQoMtfaC*4b7$+v5Y7to-CdHMjpOQ z@XoM8f(`C%pureRsBpTB{b_5}@QapKfd{z$aO@zDwOraMnWf} z4zZbdo!ClDAyn!)yxl(3uW!LB#7?3Q5l(a?1`(?W4wqNr90BjFccJkj(ZF5&?=Sn( z*u>s{PGYdHf2SFS`So5{%dc1V6?=#RB8^x~%p+8qIK01&-Td8^)u8h~kZ4a-B~%g| z-aoJAQm;Ye6Ak_AqBjvrv?itz9SD_1gpTMWf>Y`J`yvBXI_ggpk)sM_7?Dd%CE5`x Ut;$QoqJs|Bz7Sb{B%!R=zb%?{Gynhq delta 3637 zcmZYCc~F&A7{~DkH^LAX6h%@mf~g3mgjxqI9e z(>U&oshE%5%mTKX%6?9KhB;W?!mJnmf+H}F)@NWo#^FgEh(BN^c5P+W7K_k_WvGUC zBe&QA?1AqgP1x_qt1UFrER6Q89Th#$8Fk?%yb=AVp5|ds+=XHIIWjo=8k=ApYQ%q_ zI^3|e*=5W?l4;3p%t)5?N8L99HNf$b_H7jvy{HO(cn}-mm!7q#kz7K(@OKQwzfmu2 z9Oa&Gf%L(mumdLG5KPBGxEB3*0yW?!q%AO%N+cC^U^1$qER4ZIR6}K0fkE%Mdpk4Q zw%(YFX{hHbQ5k##@4RX{YbOS0A@!t6a)ZC_^Mmh}pVks`hH&JV*2csH`c{maG$B=)`WjIS;J&!^4ED^8A zR8&KwQ4LQ(jeI()LyNrY%TcK>#d55`>oAUaU<{Usdd~>dfJUL-KP5mVk;-h;1M5+X zaTj|wHMV;GgM|Hu{U->WoQcO{dt~&Vk&xIHR?s{ zP&cket$}B70v<-CtOfJa1?Ql)Um0rZYA^$@BH6ZKK2|u+#CY6;3$Ys0FpY<%YX3h* zMH%=GM_^QEv%#2!Q*av&!C%pjDSQN!x?;~#R7%THsospE@O9MGUPC<}K`*-F7|g*E zoUHwSj!F+sq%bVLNS2LC{W?@bLDY!0^L^m_UpSp( zOEKF3Gw=-7;W#|rhjoRm*$S~(g39m~Jc$=Dz`eGspS$hOBgwFTP>Uw6zcWWR2`6*> zD%N0=0Za>?$4%#`)9hi@|<8hpUQKQ|C6=5vLPoO%q7sK!* zcEU60$2vTK$z#|N_#-Z-BiqNaQ#cO9jOT}f6MHchzoIoQl8}ikNK8j&#a5!$#1T}3 zKchO(V3OOhcvL1zQP-bB4d^vI#CxxxGWzlqz72Q^$xy%|7$ytdI-+hEjTf;1^}=ye z-Ha5V7R_eV`6H+g(-)|1n>3AS!^s$q+mKncUC2(fpO8UYyXkz4a4!0_|J##S25r+( zFRDb1pa$FE_o$IumOCZMc!a|;R7XeNX~w%PiHWVlwWy9P%Qkxl-^QD8^Dvx^y zO;HPAyLVjAEl!0ut)QZb8$~=su#}ze=6LK*sIYyUPt7CFk^9g6UVRzfMl2_`dglat z)G4u^<(TT#AHyezP>n?UV*|0C*htJFRJ80=^z)<5sZv2SCbkh;j%|q{#8{#U!8USA zf@cRDL@XlOdFSe3;n^fssq^2JZkXX+@nLhXuFqEsuinU0JVUG|1`{Pj5uwsi{{+vl zver@2Rvts75MhK$l8f^v-eT(E#LYyscV46s5kyx)o2L(<(w@j9W)pW4&4{6dN?#Yd z%QedR3u_h!>~u@^F5XzRrde!AKVQMTq9wkV1(6{= bgSCCzaBpZZH?w8XKfZDOm8!)FdxrfB+nlji diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/tr/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/tr/LC_MESSAGES/blur-my-shell@aunetx.mo index 04fce82a818e5075cb628155ff5ad4ba04342417..46845e82aeaf5f616484f7f0e4d372c16700f7a2 100644 GIT binary patch delta 3509 zcmZA3drVe!9LMo5a#6VmsEB|fn24weh@ynZ#Q+mcLA(%%<}FMpHP8z6QAxyGUhLF8EKHnU}3quGtowHm9ydTPt(x{dvx5bN#l@^E&4|=Q+Rg`~H6CK+`6l zuQvL4Zuj)tYqVC z9Pi?9Nb&54-dqE3qt3gJ8sMLaJ_3IY9w1x7i__<_#WzlC*0#_ zkUs4K_Q&g(jSq1gj_6~SgG*5({s8mv9BLr{phq3~QqLHSKy{Rgdojb^zlL1XzQ@J* z0Cj=VzD{Y&aV7iJH~>3PYsojtx#2iu@HPz9Uk=7&Nfh(1AJlSy-`F112v4F)e-?E^ z7g3e?+C6?9HMh4=BfW>|m>6xg0xMB#<_1p15Jp#ub5K)x3biKMW2nFG>?Q|-@Gh#O zPE^N#p+@e*aCAeFsPE%ZrBB4|n2Fu+GIB3=6LsEw)PR0RUH>r-$L`FR&QJHSp~aGo z>R^id#Vpi~%|p#y9r9b-fGT~fd;A!xqc&7&&tWQFK~?B6>iQwEjxnh7lTg?3B(tFt z(~-ei0ZzyHsFIz*1Po%H^!TNs=57s6!d9fpb`OiuKhA6r&cbE58Vm6Omf>iAtP1SF z0zLm1*ci_N-+}xH^Dr9^VGiCxl`e*tflNe|G!0ei@i-Z0qvrM~>h~XG68?d_Xe^ey znu!fK3~%8O`nLdvr_v{*I>9^L4unfN@`Aai3EP^;XRUP3SuwP+Gh z7aES0I0i$h)IRiM|5&n9sS~LE(@2r*yz4Kh>jb7ye+FaWydQO97Iwot)M_un9$1Cm z5u$$Bfd04zb>W>z(d;Z1V+U#tjAm4munvRqOI(asQT>b>N&Qu_tdY)zW@1Xc`^Yrg0p^oFtR2;HC#vK&+Bv@uYT!v8Hnd7-AdjkP zUn6ZnEz0Al5x2RXN0q)Eb^bT_EZ)OBOy)JX3|F8=-ho<#BgUAO<8BPchp5NhV`H6- zeyBSgi|QaBHNt7w3un9g)u{p>GvIh0^TtuCB2Sc$F zbz{CfQvQ1WyR)GVLXnr9#bP;TVHqAoO;M-2-+!EQ;Z<0~@n(#|yZ9XXWH~olgzMO^ z#zK66ui$9jc0=)fETezB#)jrDi6vW!)yTBj6=XeGmmKE?(@~|*M@`LS9E_#-64qlR zc3=TMLj683*ZF=W&SL*ICSW?9dUSybHniv(P^H>|y2HchgKE`;0(f6I+8<6T2B4mB?`h{~h(7MbSVaz6G0Pnazw`^Z3|scIqkug<5rl z+-*NsafGZVJeA&mPM4!vKL_t;v@?F^$R?OgCX^(nA(8HJkxzn2 z0$EJbh+1EwcfyNg2?-)OL~WEl;>cWW&`QWWvXG<@wLxu1L*ji-g*HdEbxCTB{ukxf BM1%kU delta 3671 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 e;yb}ta`{)#+I;_a!a?8h(t2Va&aIP< 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 HT?_md55IdI diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/zh_TW/LC_MESSAGES/blur-my-shell@aunetx.mo b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/locale/zh_TW/LC_MESSAGES/blur-my-shell@aunetx.mo index 20e60f5694c549af8155a34237d66ad8abf324c2..427900f60e286cba00b3e8ef5fbccab6bafaf692 100644 GIT binary patch delta 3427 zcmZA3du+~E9LMpmDn*r6UFyI;Y^*I)HN&(@SJqW8Gpl0mmr|E{l+~RYidu=y zW|r7wYi9FD!-NP~giXe7Xk=rtY_et9A6sMZ&+m8qv7PunuXE1t>AC;TW7mo+Wr15A zf@_R)i0DBCw=nw(e`(DJDJ9G-0#lutSV_4E%kVa~!Kv-c+TwInc|MNAa?HT9*cXG^ zn|+FjSYj5iyJQAYF+SXEEUv^tJd00YG`$bU49vs|?1Gmt78_9=2X*iV+8z@r$01GI zM5HMzLd|Ib>igwheZZ`WOdl%tp+?$($@mEM2g#9U4Bk?(C5}VQFdH@Ce7uK8kj1mj z9nDx2+ll&K9S*|xoHtSJwC=6zS9EVKlD8 zbUchB@D`53?w$P^7vgBjb5H{~fdO??Po_IwKy}oJHTbhD2Uu^~vQ1cuhfoa!NBK(| zipweYz@E4Vb(ZQ;1HOt(+P*{e_YmVSs4M%gKj_`nj5-^G`hz0W($7W>XbEa1R=N6h zsJ-2an(09thBt5tw(I7fnM#~QxdEqO7_-z?&On`s#obwdjch#?p|~H_(NR>#@1th^ z5o$me-ScaxrN4nY@By~Ml}wv4*m_hub*KrwjcWe`9Dt`$-~TBHJ zj9EM$L%nuip!O_^{hEMj$f{Zu=HL=Nt0|C=$N@>SH#`_sr+%)^m-{|}SN zqv8il$DzIaQ(J~wvQy4;sHMDuTH{rx2DhtV|=Lu^fb zlPia?44o-=M8;%^7|0-#>ndtc4L3M1V@t|6oVRc^JSy}$6}ktDoGYAbQ5{sF-iB(_eQ^S{QWua(S`hcPRw4=8 zVhLvAVpN9>s8fF)wW8OPS${ovNW~`n%Y890&|lh(xRLr=)c0b!$hG7N_!_368hRIX zhCato{2n!-`>28cgWB4bY`ly|wKFC_Mh)koMqG^ggSoE0%((_N;|(|*>yUqTlaI;R zW{7|23Q${AjhgwFsCHvGksUD6ITF=RAcu?wP=Na44AhJky83O--R^lUF6Q|$S0DA1 zKd_#tc2ZF7q`Pt!rc%yzHo|AKw%>Kk48SJWQu<{EJ3!pWOuWt|3fM()zSc|+UcH7m5rufg(F^l@8n4tInEE(^{L*A9FVlBZ-kCc{&CYQ(Rfp5mEJ3VR6ms@3i|nsy?!BMdZKIygvW{ delta 3617 zcmZwJ32;qU9LMp$oroloAhABGNi4C)PJ&j{+LYR&YTsocky84^7E9~|p_GngbeIn9 z(CJK7hiOY|rqw}fYN--63{#!zlrG=jy(b;h_Ke^AoOAAb=iGDd66bQ)JC0K>|?Kdj=LD?w(Ksd(H4xr976lU5x+vM_!8=bZ(s>F zjW%O5EwY9gn`JSm@5P}O*jh5bjiaK0Hevvau{?h0{1~;8)2IP2VkP_@HQ-Ix{{WfW ze#LqiQqwFM6R;~z!4%w!TJS9l_N4NVicX+C`>2V!VI3TVnrJ$1#@Vi2CB}?7tU6A@ zc+~ILptg21&cS`y0PDs2_f|L536DfJ$0o+I|C(?f9SyM%^@GF6Z|xlF2PLSj{~2{c zPf$Bio;yzcA*gE`jaq4AY>#7c7H&n|GgVpDAWX#}xTOyJuWNai4xRa9)R~3yC{)FU zsEHC$6SqaJybEgLG}E+w&MEeu^WoIWP7kLob#k=ZbujLCQcQ}8d;mZk6#ko{3xIUKdc@^lL2QU z>Za_BZ7~}gGr#SnvKY_cXdKAt>e?N`u6PyuVBMzvt9Bx)e+l-(lc*D@#UFF|H;1-;YY$mj1v&)KjnwwWUR_{|FY){=l_+@B-J?_Q7SC zjyka)T>novjrJ4NIFq@ax~CRnRosbM(7_-To%u(om4D_eK}}GxjX!WK>Wl-Z?Oa8fxLeO;j}SHH^f2PHX2+6opz@J=FIaqgK?~ z^$&0kamUj!o8wbl|97YpyYAY*qsA$db@2b5C!^X~s7tWIwNIlS-z%sSitor}!gOq==YKa99r)5&hFSa5PC`9~ zi;!1?9Yme^dDJDj=GrBw6Z-`RU_@ts#iNn?&$3bX)*c*)CsE@@aF#(;I#SUVk3mf^ z4P!75c>#JQgU@b61FG-@c`qyG^h$L;8@T$v(T%9GlH`)+WHuSf{NCe`L*qG8j?^Si z7dFNFe;@B6uPo#>!g#WipkNB`Oni{k3ITWEdGi z3dmCO5-BZPsc`vhCfP#tnjJ${5M9e?vYj*{ydvxkqUXO3*+Axy*GOquLS>yAy8a>L zb@C>8x^S7iGM~?UqI<%7+28__Mw$?n;pA1aN)1;uw#r=6i_9a%q_n(D#rsY}*Hegk z->a-4>q#Y|$7ds1OE!~YK2FtG|G?NHQ5jbkn{ zgqM`}M1b+P$SYCKP;5(LU0bA*FcMFukR+l~o9Hz=o=hjzNKc~DULOH6Ru#$+GLB3l zZHP+T(WGh(%XA3Lm^wQrkU1%kH#K8IX5Q>TMrKYRCo?c^M((T@*5f~i-Jzp{!~TqE v_v7)^w+`$sIl8i>c**U3MI{Hf+&aGWX3^mr3m4h#efj@;?C5~_{HVVH{zP$T diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/metadata.json b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/metadata.json index cce8059..f933c08 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/metadata.json @@ -24,5 +24,5 @@ ], "url": "https://github.com/aunetx/blur-my-shell", "uuid": "blur-my-shell@aunetx", - "version": 71 + "version": 72 } \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/applications.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/applications.js index a4dd5be..49d2245 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/applications.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/applications.js @@ -37,6 +37,11 @@ export const Applications = GObject.registerClass({ 'sigma', 'brightness_row', 'brightness', + 'corner_radius_not_found_row', + 'corner_radius_row', + 'corner_radius', + 'corner_when_maximized_row', + 'corner_when_maximized', 'opacity', 'dynamic_opacity', 'blur_on_overview', @@ -97,6 +102,14 @@ export const Applications = GObject.registerClass({ 'brightness', this._brightness, 'value', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.applications.settings.bind( + 'corner-radius', this._corner_radius, 'value', + Gio.SettingsBindFlags.DEFAULT + ); + this.preferences.applications.settings.bind( + 'corner-when-maximized', this._corner_when_maximized, 'active', + Gio.SettingsBindFlags.DEFAULT + ); // connect 'enable all' button to whitelist/blacklist visibility this._enable_all.bind_property( @@ -213,5 +226,9 @@ export const Applications = GObject.registerClass({ this._pipeline_choose_row.set_visible(is_static_blur); this._sigma_row.set_visible(!is_static_blur); this._brightness_row.set_visible(!is_static_blur); + this._corner_radius_row.set_visible(!is_static_blur); + this._corner_radius_row.set_visible(!is_static_blur && this.preferences.ROUNDED_BLUR_FOUND); + //this._corner_when_maximized_row.set_visible(!is_static_blur && this.preferences.ROUNDED_BLUR_FOUND); + this._corner_radius_not_found_row.set_visible(!is_static_blur && !this.preferences.ROUNDED_BLUR_FOUND); } -}); \ No newline at end of file +}); diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/dash.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/dash.js index aae3768..147c135 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/dash.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/dash.js @@ -16,6 +16,9 @@ export const Dash = GObject.registerClass({ 'sigma', 'brightness_row', 'brightness', + 'corner_radius_not_found_row', + 'corner_radius_row', + 'corner_radius', 'override_background', 'style_dash_to_dock', 'unblur_in_overview' @@ -54,6 +57,10 @@ export const Dash = GObject.registerClass({ 'brightness', this._brightness, 'value', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.dash_to_dock.settings.bind( + 'corner-radius', this._corner_radius, 'value', + Gio.SettingsBindFlags.DEFAULT + ); this.preferences.dash_to_dock.settings.bind( 'override-background', this._override_background, 'enable-expansion', @@ -77,5 +84,7 @@ export const Dash = GObject.registerClass({ this._pipeline_choose_row.set_visible(is_static_blur); this._sigma_row.set_visible(!is_static_blur); this._brightness_row.set_visible(!is_static_blur); + this._corner_radius_row.set_visible(!is_static_blur && this.preferences.ROUNDED_BLUR_FOUND); + this._corner_radius_not_found_row.set_visible(!is_static_blur && !this.preferences.ROUNDED_BLUR_FOUND); } -}); \ No newline at end of file +}); diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/panel.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/panel.js index c49f323..1115710 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/panel.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/panel.js @@ -16,6 +16,9 @@ export const Panel = GObject.registerClass({ 'sigma', 'brightness_row', 'brightness', + 'corner_radius_not_found_row', + 'corner_radius_row', + 'corner_radius', 'unblur_in_overview', 'force_light_text', 'override_background', @@ -58,6 +61,10 @@ export const Panel = GObject.registerClass({ 'brightness', this._brightness, 'value', Gio.SettingsBindFlags.DEFAULT ); + this.preferences.panel.settings.bind( + 'corner-radius', this._corner_radius, 'value', + Gio.SettingsBindFlags.DEFAULT + ); this.preferences.panel.settings.bind( 'unblur-in-overview', this._unblur_in_overview, 'active', Gio.SettingsBindFlags.DEFAULT @@ -98,5 +105,7 @@ export const Panel = GObject.registerClass({ this._pipeline_choose_row.set_visible(is_static_blur); this._sigma_row.set_visible(!is_static_blur); this._brightness_row.set_visible(!is_static_blur); + this._corner_radius_row.set_visible(!is_static_blur && this.preferences.ROUNDED_BLUR_FOUND); + this._corner_radius_not_found_row.set_visible(!is_static_blur && !this.preferences.ROUNDED_BLUR_FOUND); } -}); \ No newline at end of file +}); diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/pipelines_management/effect_row.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/pipelines_management/effect_row.js index 130edfd..3a95d49 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/pipelines_management/effect_row.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/preferences/pipelines_management/effect_row.js @@ -154,18 +154,24 @@ export const EffectRow = GObject.registerClass({ width_request: 75, height_request: 45, show_editor: true, - use_alpha: true + use_alpha: param.use_alpha }); row.add_suffix(color_button); // set original color let c = color_button.get_rgba().copy(); - [c.red, c.green, c.blue, c.alpha] = this.get_effect_param(param_key); + if (param.use_alpha) + [c.red, c.green, c.blue, c.alpha] = this.get_effect_param(param_key); + else + [c.red, c.green, c.blue] = this.get_effect_param(param_key); color_button.set_rgba(c); // update on on 'color-set' color_button.connect( 'color-set', () => { let c = color_button.get_rgba(); - this.set_effect_param(param_key, [c.red, c.green, c.blue, c.alpha]); + if (param.use_alpha) + this.set_effect_param(param_key, [c.red, c.green, c.blue, c.alpha]); + else + this.set_effect_param(param_key, [c.red, c.green, c.blue]); } ); break; diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/prefs.js b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/prefs.js index 43c4889..b3d7980 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/prefs.js +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/prefs.js @@ -1,5 +1,6 @@ import Gdk from 'gi://Gdk'; import Gtk from 'gi://Gtk'; +import Gio from 'gi://Gio'; import { ExtensionPreferences } from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js'; import { update_from_old_settings } from './conveniences/settings_updater.js'; @@ -34,6 +35,17 @@ export default class BlurMyShellPreferences extends ExtensionPreferences { // update from old settings, very important for hacks level specifically update_from_old_settings(this.getSettings()); + const actionGroup = new Gio.SimpleActionGroup(); + window.insert_action_group('link', actionGroup); + const action = new Gio.SimpleAction({ name: 'open-gnome-rounded-blur' }); + action.connect('activate', () => { + Gio.AppInfo.launch_default_for_uri( + 'https://github.com/aunetx/blur-my-shell/blob/master/scripts/GUIDE.md', + null + ); + }); + actionGroup.add_action(action); + const preferences = new Settings(KEYS, this.getSettings()); const pipelines_manager = new PipelinesManager(preferences); diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/schemas/gschemas.compiled b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/schemas/gschemas.compiled index c2b6708cbe48e9f52d9b6d58eca0cb21d9831a7c..eb8b556800c61fb95d1be59b35a3fed7db0382cb 100644 GIT binary patch literal 10240 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 NhnOXXsdc6a{|6dKs5k%s literal 9976 zcmd6teT-Dq8OF~F%ZG@peCR5Is|B5n&hCO@QA#B#Dz%mpsuWu++}*kC+%P*c&de?# zQZ^|jOS`1oRxE9$Ar*Afk7P?pO44c|0c$Ev@ekuR)fQWm?jLALtL+*S+vj&?&dgoi zUG8pd!c88YXWzN^+%xAq?|aU@!@cXgT;Qb(rgYSbyQ}OUvFWAQ1hKmYyO^ z6)qJn6F#?W!hJC9+-_Exlj6Edj5$B>@1GLyl8!0fC;n8mF;8_?)e}EE&6p*M*Xoax zy7~J}@9!f1{TaqAR{XU1T#Yfio_YLg;<1^=+@|;j@nf@$Nx#$m3*yhsHl{)GbK;{{ z8nf`8?|qT@K7BdbKP~RN#+ZXoT*Ix*(QA#lRq+Aw%6Z1LSFipV@x#)K6z><$zRsA* z$6r54yra&TI~DH}$F4W#rne8Au;)wDPQQ5Y24h~E)3lcOk_E+hQrxxBnCdyk{8z`R z8}*^N-@GUu6f(KihSqeZ&2Pvj{Zy*K-&XL``5=?dH#Dc(bMdzA@!|&wFQ1GTGV!dJ z_EWTBV$6>_G_2;mA6D;%8TVPH!z>jq7mn}z+BEKsu2y`N`0MCWpV0J)ilO+CDZ`I^Q^?^Nm9~-)KzUULW*Ux~_KM;^ zvX%k(QdY9w#E%a6Qns?b#Lqw$GFJ$)jmD-3S;c4wEZ$gsXpL-Ry*Wc;v_=hY5SA^S z{xEU$bj7pcUg6y*pZ+Cr^ks@46aPa<-0*TgaWru{cbPD=>h?E?qo*leD_$+^zW&bH z#L<%!UoYMxbbR?MHN?@(S&w+X@Z4X&`f1{5+UXVl8NKeuFA+yiReV5vtrB(7&B1Sp zqc2rFCVp60w?3O7j;5WY_(#I?x4gE4IGXc&#Ycq)R=oQNaWv;27r!Xna`>||h@b-0>6|{H-GFV2pM^v9TgfCW-Yz@+h%vRkj zU$9L@ZYOl1nkjbKYs<7(N`A3p>TkX!=d0i(GrC3O_A3{ud0UXi*1u8>%jbjEHqV&( z^d=V6r!p;DicJ?sE^>b=7pgy*4nNls_*=*DecUCwT2rt&lS=qGbs_To%NMDEWRUO+ znQXI{qdZ2d?UifPK(h*O(OkFM<8OBv%~R6T*u+zQhl)S7kMTT*jamC41u zbRur&o2aeVA1=L$NAA~P*f{1npw$(_pfx%uwgGA)NWiFO`PyJYzW5%&)rI{NBvI#Kbhlc9?g{_A=4tl**)+ zD#Qz3^H_ZOk&D%>aqVw(oy|Y{wJ-cnESAtwU#~OStKff@8TKNV3$q0FD>DT4F6<}S zXKTr{dvcN8>)?9!Gwg%#mzI3PR&LDsO+M>79Wn07K|8=b18^_yuVvQuh5iEiMxPzN z^}j|{HE}OXP&PTKV z*(6R1>`#cJ8HcQxXQN_Ki`!ae>wIY~rB%0{k{UTJNAYGY9<8>T@Nscn7?;n(g}hOn z7-4In^{PE>p8$e%yt23!*Qxe=A=4H-YAdwXt$bm7%8!Q|wtZxM8?nx+{R{2GxVs$} zS9H~?lWsk!)ZbX1TqMWvx2DSG9r;9Vk)z}Sez$9tm|P$yiZw6pmIy_PIYIv;mjqW2 zA}4NW!=XW?-yAMq=`)~@4lZxWL(b!w8b1w|9*oEn;uI3{q((ePDEpNHgI~o<1@eUR z(d5Z0@dE;WC61>3P2xQQc}pBk-tHG45?r36IloW*cY%E4d^GtsD4wWdN4^n9lW$YR z(}fof{Nx+N(d18^n0E!Cv?%9AOW19&W~vP*eiZfaDGJN$A0mfg7X)e_Rov!_2BP(iYDG9en@aWMdQ{NX|MRG;Czb4r^m#+qZ*4J86*6N51A9{5o1SAbByN4@%bk- zkvJ%-sU!H=)n5ATw5!8Pi2SGpJ?z)WrYyfGi&5e@7(?dJ<+vM9dVu{2>6jW z8b5Z5y9JjAXz~C)DX2ONAvzBDQ*+USK?^$b(?s%!2Xdqn(^ro z?-R!7XZLQRv{4zZ7V2Kq+u`;~#eJ3CpOnosu62EsI*;erZ?NXzL2ZM}`Hokq0qp0;$a$?buKb3rcoS_6$_HcSa@^%P^%GAqZf@Oi&n}EDU~KUo z1V(Abz%Nf zGrvF_O+N?3)Af6ZTQkwLUn^cKd@y%kmh;h*72hOI3e+g#Xlm3p@os@yK^#r3=o0T0 zn!o$`UlT`j-~HkP0yTj+nsM$G^E*x0EBaW6eC4OTW<5B_z{S5udmxbC!uF2j=csF+ z?M~@=-ahhVhCcG}IsFYS{O&>sd%Q9>W=+aVZ_yJTeh1?SIyIVlze!j8U6R1 za1OFj2=~I6SLuwNe?}^M)Z1ct(YS0)1_izKqrbL4p?X0xTAA$o&&cH={4P~3GM?^W zOr5v+%@1#{5qF_o?nv9*5qArBeQ@VKu0!)&aZt=}gyUO}DxG80m|M+`eozaVgOr;^ z?yqr){Ds5M*Y;-(8YtI5SNGg=V0fQH4WyRfJAUhAJnFB2UE*kRca3<1K+PkLrsgHZI|Vo1XvVu!d`O_Caz2_`bxeFxphgl$)6X;F_k^kM z-2EzXG&QoO&X`((nnWB;O^S(c6WsixX=jDFLkOj3`8m-ofwo?R3kdTQ@@aTob9-B( z!|5UWT*dK|TgUML`OZ9%;~dn$(aIV5GnVpHe%>rT>tVS}+E43EdGVk>7s}W1`Q3Tb z)`+OTh79vo*2LV{&{wyQ6oI#gz8I8BH;%x$+u2KYzr#r=u3wV?`8jtpf z4-4))N3V+?={jG$+}|O7a^}!|ogCtm$oU`s@oRj~-u%A>#?O30-(PUg-e_{XRy%=Pr_w0?fxi8)zxcNcTeo}l;aL?Xo;=SUR1^4WYCTGuz&k4*AbB<Ic3cH_6HW-*b0m4lzvR z+`cHEyTd;YkI#?x|I27Tdlu^VeZlz=jURi(KNp-I(fF}Xd`577MB~S^;&X!YBO2cg zikoh%_z_Kfsn`>oAJO1

Level of hacks to use (from 0 to 2, 2 disabling clipped redraws entirely)
+ + + false + Boolean, set to true if a patched version of ShellBlurEffect was found + false @@ -226,6 +231,11 @@ 0.6 Brightness to use for the blur effect + + + 0 + Radius for the corner rounding effect + (0.,0.,0.,0.) @@ -338,7 +348,7 @@ - 12 + 18 Radius for the corner rounding effect @@ -376,6 +386,16 @@ 1. Brightness to use for the blur effect + + + 15 + Radius for the corner rounding effect + + + + false + Boolean, whether to keep rounding the corners of fullscreen and maximized window or not + (0.,0.,0.,0.) @@ -592,4 +612,4 @@ Boolean, whether to blur the original panel (if option selected) with Dash to Panel - \ No newline at end of file + diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/applications.ui b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/applications.ui index 14c9364..e7b57fa 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/applications.ui +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/applications.ui @@ -109,6 +109,47 @@ To get the best results possible, although with reduced performances, you can ch
+ + + Corner radius + In order to use rounded corners, please install the GNOME Rounded Blur library. + + open_gnome_rounded_blur + + + + external-link-symbolic + center + link.open-gnome-rounded-blur + + + + + + + + Corner radius + Radius for the corner rounding effect. + corner_radius + + + + + + + Enable corner rounding on maximized and fullscreen + Corner rounding effect will keep being applied to maximized and fullscreen windows. + corner_when_maximized + + + + + center + + + + + Opacity @@ -268,6 +309,12 @@ Use * to match any sequence of characters (e.g., Firefox* or *Code*), and ? for 0.01 + + 0 + 150 + 1 + + 25 255 diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/dash.ui b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/dash.ui index b08a4d1..e95f606 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/dash.ui +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/dash.ui @@ -108,6 +108,32 @@ + + + Corner radius + In order to use rounded corners, please install the GNOME Rounded Blur library. + + open_gnome_rounded_blur + + + + external-link-symbolic + center + link.open-gnome-rounded-blur + + + + + + + + Corner radius + Radius for the corner rounding effect. + corner_radius + + + + Override background @@ -161,6 +187,12 @@ 1.0 0.01 + + + 0 + 150 + 1 + @@ -169,4 +201,4 @@ Dark - \ No newline at end of file + diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/effects-dialog.ui b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/effects-dialog.ui index c6baf62..6428766 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/effects-dialog.ui +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/effects-dialog.ui @@ -62,6 +62,11 @@
+ + + In order to have rounded corners on a component, add a “Corner” effect at the end of its pipeline. + +
diff --git a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/panel.ui b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/panel.ui index 306f4ef..eb9df61 100644 --- a/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/panel.ui +++ b/gnome/.local/share/gnome-shell/extensions/blur-my-shell@aunetx/ui/panel.ui @@ -108,6 +108,32 @@
+ + + Corner radius + In order to use rounded corners, please install the GNOME Rounded Blur library. + + open_gnome_rounded_blur + + + + external-link-symbolic + center + link.open-gnome-rounded-blur + + + + + + + + Corner radius + Radius for the corner rounding effect. + corner_radius + + + + Force light text @@ -237,4 +263,10 @@ Recommended unless you want to customize your GNOME theme. 1.0 0.01 + + + 0 + 150 + 1 + \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/clipboard-history@alexsaveau.dev/metadata.json b/gnome/.local/share/gnome-shell/extensions/clipboard-history@alexsaveau.dev/metadata.json index 7f3973e..df6df33 100644 --- a/gnome/.local/share/gnome-shell/extensions/clipboard-history@alexsaveau.dev/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/clipboard-history@alexsaveau.dev/metadata.json @@ -13,5 +13,5 @@ ], "url": "https://github.com/SUPERCILEX/gnome-clipboard-history", "uuid": "clipboard-history@alexsaveau.dev", - "version": 47 -} + "version": 48 +} \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/config.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/config.js index 0f26fcb..5902b8a 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/config.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/config.js @@ -3,7 +3,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later export default { - PACKAGE_VERSION: 71, + PACKAGE_VERSION: 72, PACKAGE_URL: 'https://github.com/GSConnect/gnome-shell-extension-gsconnect', PACKAGE_BUGREPORT: 'https://github.com/GSConnect/gnome-shell-extension-gsconnect/issues/new', PACKAGE_DATADIR: '/usr/local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io', diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences index b16ddc7..652f6b2 100755 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences @@ -1,104 +1,19 @@ -#!/usr/bin/env -S gjs -m +#!/bin/sh -// SPDX-FileCopyrightText: GSConnect Developers https://github.com/GSConnect -// -// SPDX-License-Identifier: GPL-2.0-or-later +# SPDX-FileCopyrightText: GSConnect Developers https://github.com/GSConnect +# +# SPDX-License-Identifier: GPL-2.0-or-later -// -*- mode: js; -*- +fallback_dir=$HOME/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/ -import Gdk from 'gi://Gdk?version=3.0'; -import 'gi://GdkPixbuf?version=2.0'; -import Gio from 'gi://Gio?version=2.0'; -import GLib from 'gi://GLib?version=2.0'; -import GObject from 'gi://GObject?version=2.0'; -import Gtk from 'gi://Gtk?version=3.0'; +if [ ! -f "./gsconnect-preferences.js" ]; then + # Try to find home path + extension_dir="$(dirname "$(realpath "$(command -v "$0")")")" + # try even harder + if [ ! -d "$extension_dir" ]; then + extension_dir="$fallback_dir" + fi + cd "$extension_dir" || exit 1 +fi +exec /usr/bin/env gjs -m gsconnect-preferences.js -import system from 'system'; - -import './preferences/init.js'; -import {Window} from './preferences/service.js'; -import Config from './config.js'; - -import('gi://GioUnix?version=2.0').catch(() => {}); // Set version for optional dependency - - -/** - * Class representing the GSConnect service daemon. - */ -const Preferences = GObject.registerClass({ - GTypeName: 'GSConnectPreferences', - Implements: [Gio.ActionGroup], -}, class Preferences extends Gtk.Application { - - _init() { - super._init({ - application_id: 'org.gnome.Shell.Extensions.GSConnect.Preferences', - resource_base_path: '/org/gnome/Shell/Extensions/GSConnect', - }); - - GLib.set_prgname('gsconnect-preferences'); - GLib.set_application_name(_('GSConnect Preferences')); - } - - vfunc_activate() { - if (this._window === undefined) { - this._window = new Window({ - application: this, - }); - } - - this._window.present(); - } - - vfunc_startup() { - super.vfunc_startup(); - - // Init some resources - const provider = new Gtk.CssProvider(); - provider.load_from_resource(`${Config.APP_PATH}/application.css`); - Gtk.StyleContext.add_provider_for_screen( - Gdk.Screen.get_default(), - provider, - Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION - ); - - const actions = [ - ['refresh', null], - ['connect', GLib.VariantType.new('s')], - ]; - - for (const [name, type] of actions) { - const action = new Gio.SimpleAction({ - name: name, - parameter_type: type, - }); - this.add_action(action); - } - } - - vfunc_activate_action(action_name, parameter) { - try { - const paramArray = []; - - if (parameter instanceof GLib.Variant) - paramArray[0] = parameter; - - this.get_dbus_connection().call( - 'org.gnome.Shell.Extensions.GSConnect', - '/org/gnome/Shell/Extensions/GSConnect', - 'org.freedesktop.Application', - 'ActivateAction', - GLib.Variant.new('(sava{sv})', [action_name, paramArray, {}]), - null, - Gio.DBusCallFlags.NONE, - -1, - null, - null - ); - } catch (e) { - logError(e); - } - } -}); - -await (new Preferences()).runAsync([system.programInvocationName].concat(ARGV)); diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences.js new file mode 100644 index 0000000..e2b1efe --- /dev/null +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/gsconnect-preferences.js @@ -0,0 +1,102 @@ +// SPDX-FileCopyrightText: GSConnect Developers https://github.com/GSConnect +// +// SPDX-License-Identifier: GPL-2.0-or-later + +// -*- mode: js; -*- + +import Gdk from 'gi://Gdk?version=3.0'; +import 'gi://GdkPixbuf?version=2.0'; +import Gio from 'gi://Gio?version=2.0'; +import GLib from 'gi://GLib?version=2.0'; +import GObject from 'gi://GObject?version=2.0'; +import Gtk from 'gi://Gtk?version=3.0'; + +import system from 'system'; + +import './preferences/init.js'; +import {Window} from './preferences/service.js'; +import Config from './config.js'; + +import('gi://GioUnix?version=2.0').catch(() => {}); // Set version for optional dependency + + +/** + * Class representing the GSConnect service daemon. + */ +const Preferences = GObject.registerClass({ + GTypeName: 'GSConnectPreferences', + Implements: [Gio.ActionGroup], +}, class Preferences extends Gtk.Application { + + _init() { + super._init({ + application_id: 'org.gnome.Shell.Extensions.GSConnect.Preferences', + resource_base_path: '/org/gnome/Shell/Extensions/GSConnect', + }); + + GLib.set_prgname('gsconnect-preferences'); + GLib.set_application_name(_('GSConnect Preferences')); + } + + vfunc_activate() { + if (this._window === undefined) { + this._window = new Window({ + application: this, + }); + } + + this._window.present(); + } + + vfunc_startup() { + super.vfunc_startup(); + + // Init some resources + const provider = new Gtk.CssProvider(); + provider.load_from_resource(`${Config.APP_PATH}/application.css`); + Gtk.StyleContext.add_provider_for_screen( + Gdk.Screen.get_default(), + provider, + Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION + ); + + const actions = [ + ['refresh', null], + ['connect', GLib.VariantType.new('s')], + ]; + + for (const [name, type] of actions) { + const action = new Gio.SimpleAction({ + name: name, + parameter_type: type, + }); + this.add_action(action); + } + } + + vfunc_activate_action(action_name, parameter) { + try { + const paramArray = []; + + if (parameter instanceof GLib.Variant) + paramArray[0] = parameter; + + this.get_dbus_connection().call( + 'org.gnome.Shell.Extensions.GSConnect', + '/org/gnome/Shell/Extensions/GSConnect', + 'org.freedesktop.Application', + 'ActivateAction', + GLib.Variant.new('(sava{sv})', [action_name, paramArray, {}]), + null, + Gio.DBusCallFlags.NONE, + -1, + null, + null + ); + } catch (e) { + logError(e); + } + } +}); + +await (new Preferences()).runAsync([system.programInvocationName].concat(ARGV)); diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/ko/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/ko/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo index 8e3204477d2935f9d5d4bbe42977f39416f8d825..f90cf8f77c4710c78c20500bcea039651c3037d3 100644 GIT binary patch delta 5915 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 DPH(a6 delta 5551 zcmYk;33yFs9>?)FONH2##F8|Ly^)BBEw%_9wUkJ;I%-R8(@nJ)V`{n8B5JG+)v+{c znGLDB(M3^9(nb|CMQIuPI;b^D#B{#Dd;Xqh&hz~8dEfWk^KR#yd-LVYpsmw`e8;PW zE^-_XNE8Vz>s)4#b5|;>)wyOhoU4V&SRH#}ZOpTkkVHd2)R;4{48D)`aXD7Ook$<<0G7u~$Xs19*2Vu?dt9V9kwgrm zy)E{_&R7rUqsGa{GK}vEC}>7|uo0d>tu&13Yb8?x=m>9BPF>o1yIc2&`eavi%~nV+T37nL9MU| z*%WsKHKA*$eu7zrt_w$>W)?v~9mb$Om|*oZ45j{*)iY7IVle6!jmDNZ9@B6gYTzr_ z7)w#lR0AFqJu990qj3hK#(AX<`>%U9g@$PS2t)8Id<1u)wrV$O#)qwb2I1z|q(M*+jPpPhuXX;5-J=t=)y{_eeDRuN9uBL0-miypHPdzI`y92S7Vj6ZKHW zp;pipwG;iVo`u?>v8b(|hMLGy)PnNO&8P`%_fgQ6?6ZcWs1;p8b$ko8r6s5i!ehJv zs-Pwmhnjdi>bfM<=Toh{J8D9`Q3DRK`Y6=rd{ZcBYv-b7x&-w>Kk8xGfqE!+V^utX zy6}e8gJQkUKWfII7LTe)P&?!WaNSYQ&M*wq`#*((wt5DtgE^=#iY3;* z4K>_jGN z#{E#YWH@SqlTlkZ4S5{gLev0$RL7sAZc!m>hYq7|-AQY|gXz@EvO4WV5A^9N9Zo?H z$wbu5XQSE|qqa5=HNZ}*@5d18XHYwH0d?I~^DgSTkow+EMWXtTLw&9}YN8$Lv;UM` z27h>!-8gKI^D!RxTKiqp)>d!ebr^-Z6%A4MI2F}#Z`6+UN3C!SY9X^xJGu&W-6yDr zu%H3^uM-Do&=#Mv4_-vg@DA!;mu=_`Pz}`{jR}~9IzJFU#gV966y3<%fkf2j(@_KV zMLyz&q89wFk3txQHK+^MTYW2*pPX?Tc)h z8-jGFJ!*x=0wC);5>YJicb ziH${Vb+-8-R;0cOwV++7fexBS&C{rfUy^$NZ&8TG2dD|uN#frvOhFAe0@dLd)Bx|8 z3(Q>9gw|Vq2R=@HKQ_mEsEH&r^ZHA{O4K`{PZwrT&`O4(26z*7!Az^qLrrYCwQs^U z)VJU>Sd3M$2ea;j15lq|XBME&A4Bzj74?6^{bcr^$+={vsR3UwUqp2<8nrXos0-Ji zo_arO3yZA%d()JSd;0igL+sU6V1-3ujc1a3mA{OelF@QT7=r^rKpK)^jTpSs>6e*dw$&7 zFI#&l>cTRuyz|khj^j}iPDb6zG;8mRn&|U(euOy|^~Ez4H38pp3YuviY9(KzIzEb3 z@ic0H+o%Z!xArcqfcjiC>U@2(xwUt)`jeLG5gq<-4SD+@g9o6qX)XJ};uCI`)32^^wQP2lt zu^BcEoZuVG9BJoAp|)(Iwa>;#>N!?li|S`1YQo!5-ya3meg*YaT!J<5R}8%WHQIVx z8G{<2A*$on)}DdtxF5#iaMX@XM{Vgm)OD+@o{zPu7om3W4EDhiYwyXcqFXx>1HbJqu!E5?b&}` zS(i`4OLzhGw*(sihgc3At5sEMCP4P1#|oM?Ad`~jS!{bLQ%tyV3`^jl* z+kwl8c6K}&srUckahrnvVMrkpNFVY!=}p#>Pswwn8S#@(hz|X?^FA3&^c~MXIPM_1 zLUibM%p(nn-v1Ygj;Um_#{Wq*j^iYcR3DWM4sK8N5;>h!)A~{K(B}HU3i6IY55t6jt2le#3>+Af%%nZs}d8A!sd?REUl z%DGsU+#s9CSn>>MMcyM1j|2)gRbhPh2I03LaMa>&V=~*T2EG$ie4890t;rhFmFy!A zk4jcpVt#|e$QNi z@=wxJ6^=iWJ>(<3&|4_K_<2Klr_vLH=Pe3qt%Qb<@MjH%m=SPKix!)3#-*zia%|kesuL j3I5ckrJ*@lZL9mUQVs>@^lCN4?{D>bs6V+~c)9-p5cWDt diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/lt/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/lt/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo index fbb38b5211b6f7508fe7effd52896faf585f41fc..bcc0783b2050631ef54b701601a8b7843f0a89d5 100644 GIT binary patch delta 7219 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 delta 5717 zcmZwL34Bdg0>|-_yd)AqkcbenSQ3dX5d=Xj6%(UmlG+)2tLU^-d(=E*D@COZCaAS$ zYG?W|My+E~s0p${4ZNHoyP7C-X6%&)m=F|GwwkckeyxebFvi?6WS<$9=xM z-#o+N>tjq6tP^NVFUrl!>Z~!VDi~7lI2!4*nS|AFraiv_ z)uHWJ0{7#qcofxvs`M_L_Dv>*>YV6@YIq8&;kif;%_5A)ji?cvM2+w!M&T3Gj8tZt zg0K z_24&9Gc(dU(K-t?zyf5F%_?-ON4qKLLEoZoJcDZZ3hIHkQP(}iOblV+b-oAs;p?_O z47EgKQ8PFL8(|)%FU~bY(#-U~?3E#$aWYx^Zs?7gI3I{lmf~#3jt?@b3gNsljG|`U! zSdwZ<)B`J^uB(BXu?DEknuZ!cKh#W&u=QNj49!L@!4fwG^<)cbL`SU0Q4cb!d(1>G5e2ls;n3rDlNYwRpt!bzMWg;DLo30epvtFnh2cxET6zTy} zP$Qd<>hUM2C0cIJZ$))*hyDHlYUGDe9Xx@0jnAVRF2Yv$0>kwFx2op!unY1=nSrRy zGXeF00@NBVLp|U#)bGV+d;S!vgBMV1{v&EYkL>rpT&(+oP|piT?V%|2qkWS=fgdGP z4|QP%cEcQ9fNN1RvI$+d+n(Qtn%V=Xr8$A>=xx+YK0y6I1=Mh!Qxo<4MAXctqFYmy zNkMCvZNC_Tt*PgtW@HCyx1K=lm0PG0Jh$hAYC2OKgKD6mt+z%O^)Bd-Jy7@cwGOSx z{A+DSaY9oz1JyvjyUkfcmZSi+XV#)R zum?3`U&k^38sQI|&L}C)AVHq5b>ezT} zh?7x!X&b5ohfp(m3CrL;?2NAZPDgSuNbi4t3YxlMn1drR84nR|D;^ zB=$fxGzfXN$wmH*nAP_DetZ5LYAH+cQ2kJ)pnhM{FBhjc~r-X(5;37Q=H9E3H3!1s)re< z&DS5*feEOooPlb%z`6p}&^qjddr{9V%erWZVo~)3)KWJ?4Xj5)=0BCf08Vtog{WP5 z6`SC5jK|bQ&J^~=5bDz~4CkXBxEA@fH3w0<{Fe0|>bfVWj+bSp>i%eC- zCnw6`Ae@AwQ4fBMKVbyDREPZd&{DNPji?uDB*W1kN1>KxJci;lERPFOGqD~Ma0_aw zF1T&sA!-dnnmU^<0r>-EGB62;pdP#c)zC`RgV&&zXeX+{)2M;mLJjN%hGS4Oryhfv zkwmP3?sWS_7t{m#+6zXY)_gi@%I0DOuC(=?Seg1^Tfc_t$RjL;VQEfBV^Kdy@u;_{ zBbLTDkq)@c7z%1=Hmau!P(9p)nzBOF+8ws%&tfI&cTgP*<`02pBoZ~^Sd7HlsHJI- z8d#Qf5NhhjVoAOKc@#9VMW~K!#)-HGHN~x4I3s!u)xrMgeE@2z^H3dKfofoo5e`M|?p)NSTZ|KM1L`NcPP#L-$*4cK zolrB8jp|Tu)brj!?V;(Ywa-Vl)@C&YHGBlszzNiiS5Y(a1Y@v7D`y63VR!23sHG@C zJ?C@O(w#&#bQAUcLu)zyQK13VMqQWIn)z2xvp6ApqB<}LH6x=?Q$F3g6xH*ssHs0> z&!5L6>i4lG#b2a4nyEt6Qn(*b(B=qe@7xfDdO$p? z!R9y`v(X>FLXGe!Ho-HfhC+YgOl=i(QLlxJ!~5TTe?s0?vzF-a;R|*4bG`rHP*| zjNs&5(uy1)I^J~felFwlC-N(Do$yO*mXqS+6ABGUH?oi%A=Sx8qzYLdQK_TB(CSi^(Z^Xf5JK?SL9-FlOf1#LZ zPpq*9;sjehi<`+U!lwS8L%$K1NgUZt-XeNibVQQ`qPIlHeFyKq6;mn4s!sdff8o?p z<)vc~<@d;bdv2ojHRO%^@9~JzKgmdYW-$&Ue7)S}LNZ7m`HqYwIzA)y$tbc<RcAtK>kj`$je6nl^bLisX$!hThfQ*x|J6KSA45y8r+H diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/ro/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/locale/ro/LC_MESSAGES/org.gnome.Shell.Extensions.GSConnect.mo new file mode 100644 index 0000000000000000000000000000000000000000..e5e65386a0a523d45b20c2662b840234e82f5982 GIT binary patch literal 19498 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 literal 0 HcmV?d00001 diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/metadata.json b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/metadata.json index f6c5cda..cafbc1f 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/metadata.json @@ -6,9 +6,10 @@ "46", "47", "48", - "49" + "49", + "50" ], "url": "https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki", "uuid": "gsconnect@andyholmes.github.io", - "version": 71 + "version": 72 } \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/prefs.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/prefs.js index 7937bab..e4d38f8 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/prefs.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/prefs.js @@ -26,7 +26,8 @@ export default class GSConnectExtensionPreferences extends ExtensionPreferences window.close(); }); - Gio.Subprocess.new([`${this.path}/gsconnect-preferences`], 0); + const _launcher = Gio.SubprocessLauncher.new({flags: Gio.SubprocessFlags.NONE}); + _launcher.set_cwd(this.path); + _launcher.spawnv(['gjs', '-m', 'gsconnect-preferences.js']); } } - diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/backends/lan.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/backends/lan.js index fc08f3f..bd6ee08 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/backends/lan.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/backends/lan.js @@ -411,9 +411,9 @@ export const ChannelService = GObject.registerClass({ /** * Broadcast an identity packet * - * If @address is not %null it may specify an IPv4 or IPv6 address to send - * the identity packet directly to, otherwise it will be broadcast to the - * default address, 255.255.255.255. + * If {@link address] is not %null it may specify an IPv4 or IPv6 address + * to send the identity packet directly to, otherwise it will be broadcast + * to the default address, 255.255.255.255. * * @param {string} [address] - An optional target IPv4 or IPv6 address */ @@ -773,9 +773,8 @@ export const Channel = GObject.registerClass({ // Starting with protocol version 8, the devices are expected to // exchange identity packets again after TLS negotiation - if (this.identity.body.protocolVersion >= 8) { + if (this.identity.body.protocolVersion >= 8) await this._exchangeIdentities(); - } } catch (e) { this.close(); throw e; @@ -803,9 +802,8 @@ export const Channel = GObject.registerClass({ // Starting with protocol version 8, the devices are expected to // exchange identity packets again after TLS negotiation - if (this.identity.body.protocolVersion >= 8) { + if (this.identity.body.protocolVersion >= 8) await this._exchangeIdentities(); - } } catch (e) { this.close(); throw e; diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/contacts.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/contacts.js index cd30c4a..68cf4c9 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/contacts.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/contacts.js @@ -463,8 +463,8 @@ const Store = GObject.registerClass({ } /** - * Lookup a contact for each address object in @addresses and return a - * dictionary of address (eg. phone number) to contact object. + * Lookup a contact for each address object in {@link addresses} and return + * a dictionary of address (eg. phone number) to contact object. * * { "555-5555": { "name": "...", "numbers": [], ... } } * diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/index.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/index.js index 302dbbe..be31487 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/index.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/index.js @@ -41,7 +41,7 @@ const Default = new Map(); * followed by a call to `release()`. * * @param {string} name - The module name - * @returns {*} The default instance of a component + * @returns {object} The default instance of a component */ export function acquire(name) { if (functionOverrides.acquire) diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/notification.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/notification.js index 36dc482..26d1149 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/notification.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/notification.js @@ -9,6 +9,12 @@ import GObject from 'gi://GObject'; import * as DBus from '../utils/dbus.js'; +// DesktopAppInfo is no longer in Gio in GNOME 49 +let GioUnix; +GioUnix = import('gi://GioUnix?version=2.0').catch(() => { + GioUnix = Gio; +}); + const _nodeInfo = Gio.DBusNodeInfo.new_for_xml(` @@ -100,7 +106,7 @@ const Listener = GObject.registerClass({ path: `/org/gnome/desktop/notifications/application/${app}/`, }); - const appInfo = Gio.DesktopAppInfo.new( + const appInfo = GioUnix.DesktopAppInfo.new( appSettings.get_string('application-id') ); @@ -140,10 +146,10 @@ const Listener = GObject.registerClass({ } /** - * Try and find a well-known name for @sender on the session bus + * Try and find a well-known name for {@link sender} on the session bus * * @param {string} sender - A DBus unique name (eg. :1.2282) - * @param {string} appName - @appName passed to Notify() (Optional) + * @param {string} appName - appName passed to Notify() (Optional) * @returns {string} A well-known name or %null */ async _getAppId(sender, appName) { @@ -185,7 +191,7 @@ const Listener = GObject.registerClass({ } /** - * Try and find the application name for @sender + * Try and find the application name for {@link sender} * * @param {string} sender - A DBus unique name * @param {string} [appName] - `appName` supplied by Notify() @@ -198,7 +204,7 @@ const Listener = GObject.registerClass({ try { const appId = await this._getAppId(sender, appName); - const appInfo = Gio.DesktopAppInfo.new(`${appId}.desktop`); + const appInfo = GioUnix.DesktopAppInfo.new(`${appId}.desktop`); this._names[appName] = appInfo.get_name(); appName = appInfo.get_name(); } catch { @@ -213,10 +219,26 @@ const Listener = GObject.registerClass({ * * @param {DBus.Interface} iface - The DBus interface * @param {string} name - The DBus method name - * @param {GLib.Variant} parameters - The method parameters - * @param {Gio.DBusMethodInvocation} invocation - The method invocation info + * @param {GLib.Variant|Gio.DBusMethodInvocation} param1 - The method parameters or invocation (GNOME 50+ changed order) + * @param {Gio.DBusMethodInvocation|GLib.Variant} param2 - The method invocation or parameters (GNOME 50+ changed order) */ - async _onHandleMethodCall(iface, name, parameters, invocation) { + async _onHandleMethodCall(iface, name, param1, param2) { + let invocation, parameters; + + // GNOME 50+ changed the callback signature from + // (iface, name, parameters, invocation) to + // (iface, name, invocation, parameters) + // Detect which order is being used + if (param1 instanceof GLib.Variant) { + // Old order: parameters, invocation + parameters = param1; + invocation = param2; + } else { + // New order: invocation, parameters + invocation = param1; + parameters = param2; + } + try { // Check if notifications are disabled in desktop settings if (!this._settings.get_boolean('show-banners')) @@ -357,7 +379,7 @@ const Listener = GObject.registerClass({ if (application === 'org.gnome.Shell.Extensions.GSConnect') return; - const appInfo = Gio.DesktopAppInfo.new(`${application}.desktop`); + const appInfo = GioUnix.DesktopAppInfo.new(`${application}.desktop`); // Try to get an icon for the notification if (!notification.hasOwnProperty('icon')) diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/pulseaudio.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/pulseaudio.js index 67dd63f..4b2b168 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/pulseaudio.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/components/pulseaudio.js @@ -80,7 +80,7 @@ class Stream { } /** - * Gradually raise or lower the stream volume to @value + * Gradually raise or lower the stream volume to {@link value} * * @param {number} value - A number in the range 0-1 * @param {number} [duration] - Duration to fade in seconds diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/core.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/core.js index 36948d8..67e34a6 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/core.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/core.js @@ -107,7 +107,7 @@ export class Packet { /** * Check if the packet has a payload. * - * @returns {boolean} %true if @packet has a payload + * @returns {boolean} %true if the packet has a payload */ hasPayload() { if (!this.hasOwnProperty('payloadSize')) @@ -386,7 +386,7 @@ export const ChannelService = GObject.registerClass({ } /** - * Broadcast directly to @address or the whole network if %null + * Broadcast directly to {@link address} or the whole network if %null * * @param {string} [address] - A string address */ diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/daemon.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/daemon.js index b241434..dda8b43 100755 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/daemon.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/daemon.js @@ -17,7 +17,11 @@ import('gi://GIRepository?version=3.0').catch(() => { import('gi://GIRepository?version=2.0').catch(() => {}); }); -import('gi://GioUnix?version=2.0').catch(() => {}); // Set version for optional dependency +// DesktopAppInfo is no longer in Gio in GNOME 49 +let GioUnix; +GioUnix = import('gi://GioUnix?version=2.0').catch(() => { + GioUnix = Gio; +}); import system from 'system'; @@ -206,10 +210,11 @@ const Service = GObject.registerClass({ } _preferences() { - Gio.Subprocess.new( - [`${Config.PACKAGE_DATADIR}/gsconnect-preferences`], - Gio.SubprocessFlags.NONE + const _launcher = Gio.SubprocessLauncher.new( + {flags: Gio.SubprocessFlags.NONE} ); + _launcher.set_cwd(Config.PACKAGE_DATADIR); + _launcher.spawnv(['gjs', '-m', 'gsconnect-preferences.js']); } /** @@ -296,7 +301,7 @@ const Service = GObject.registerClass({ // Ensure our handlers are registered try { - const appInfo = Gio.DesktopAppInfo.new(`${Config.APP_ID}.desktop`); + const appInfo = GioUnix.DesktopAppInfo.new(`${Config.APP_ID}.desktop`); appInfo.add_supports_type('x-scheme-handler/sms'); appInfo.add_supports_type('x-scheme-handler/tel'); } catch (e) { @@ -435,6 +440,15 @@ const Service = GObject.registerClass({ '' ); + this.add_main_option( + 'name', + 'n'.charCodeAt(0), + GLib.OptionFlags.NONE, + GLib.OptionArg.STRING, + _('Target Device Name'), + '' + ); + /** * Pairing */ @@ -710,6 +724,32 @@ const Service = GObject.registerClass({ this._cliAction(device, 'shareText', GLib.Variant.new_string(text)); } + _findDeviceID(name) { + const result = Gio.DBus.session.call_sync( + 'org.gnome.Shell.Extensions.GSConnect', + '/org/gnome/Shell/Extensions/GSConnect', + 'org.freedesktop.DBus.ObjectManager', + 'GetManagedObjects', + null, + null, + Gio.DBusCallFlags.NONE, + -1, + null + ); + + const variant = result.unpack()[0].unpack(); + let device; + + for (let object of Object.values(variant)) { + object = object.recursiveUnpack(); + device = object['org.gnome.Shell.Extensions.GSConnect.Device']; + + if (name === device.Name) + return device.Id; + } + return null; + } + vfunc_handle_local_options(options) { try { if (options.contains('version')) { @@ -731,11 +771,15 @@ const Service = GObject.registerClass({ // We need a device for anything else; exit since this is probably // the daemon being started. - if (!options.contains('device')) + let id = null; + if (options.contains('device')) { + id = options.lookup_value('device', null).unpack(); + } else if (options.contains('name')) { + const name = options.lookup_value('name', null).unpack(); + id = this._findDeviceID(name); // May return null if no match found + } + if (id === null) return -1; - - const id = options.lookup_value('device', null).unpack(); - // Pairing if (options.contains('pair')) { this._cliAction(id, 'pair'); diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/device.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/device.js index 9690730..ce1b0ea 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/device.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/device.js @@ -531,8 +531,8 @@ const Device = GObject.registerClass({ } /** - * Get the position of a GMenuItem with @actionName in the top level of the - * device menu. + * Get the position of a GMenuItem with {@link actionName} in the top level + * of the device menu. * * @param {string} actionName - An action name with scope (eg. device.foo) * @returns {number} An 0-based index or -1 if not found @@ -755,7 +755,7 @@ const Device = GObject.registerClass({ } /** - * Reject the transfer payload described by @packet. + * Reject the transfer payload described by {@link packet}. * * @param {Core.Packet} packet - A packet * @returns {void} diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/init.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/init.js index e6ee47b..5add1b7 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/init.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/init.js @@ -194,7 +194,7 @@ String.prototype.toPhoneNumber = function () { * A simple equality check for phone numbers based on `toPhoneNumber()` * * @param {string} number - A phone number string to compare - * @returns {boolean} If `this` and @number are equivalent phone numbers + * @returns {boolean} If `this` and {@link number} are equivalent phone numbers */ String.prototype.equalsPhoneNumber = function (number) { const a = this.toPhoneNumber(); @@ -241,7 +241,7 @@ Gio.File.rm_rf = function (file) { /** * Extend GLib.Variant with a static method to recursively pack a variant * - * @param {*} [obj] - May be a GLib.Variant, Array, standard Object or literal. + * @param {object} [obj] - May be a GLib.Variant, Array, standard Object or literal. * @returns {GLib.Variant} The resulting GVariant */ function _full_pack(obj) { @@ -297,8 +297,8 @@ GLib.Variant.full_pack = _full_pack; /** * Extend GLib.Variant with a method to recursively deepUnpack() a variant * - * @param {*} [obj] - May be a GLib.Variant, Array, standard Object or literal. - * @returns {*} The resulting object + * @param {object} [obj] - May be a GLib.Variant, Array, standard Object or literal. + * @returns {object} The resulting object */ function _full_unpack(obj) { obj = (obj === undefined) ? this : obj; @@ -353,7 +353,7 @@ GLib.Variant.prototype.full_unpack = _full_unpack; * @param {string} keyPath - Absolute path to a private key in PEM format * @param {string} commonName - A unique common name for the certificate * @returns {Gio.TlsCertificate} A TLS certificate - * @throws MissingOpensslError on missing openssl binary + * @throws {MissingOpensslError} on missing openssl binary */ Gio.TlsCertificate.new_for_paths = function (certPath, keyPath, commonName = null) { if (GLib.find_program_in_path(Config.OPENSSL_PATH) === null) { diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/manager.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/manager.js index c58769e..724eb56 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/manager.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/manager.js @@ -394,7 +394,7 @@ const Manager = GObject.registerClass({ } /** - * Return a device for @packet, creating it and adding it to the list of + * Return a device for {@link packet}, creating it and adding it to the list of * of known devices if it doesn't exist. * * @param {Core.Packet} packet - An identity packet for the device diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/contacts.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/contacts.js index 2a46ad2..882daae 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/contacts.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/contacts.js @@ -440,7 +440,7 @@ const ContactsPlugin = GObject.registerClass({ } /** - * Request the vCards for @uids. + * Request the vCards for {@link uids}. * * @param {string[]} uids - A list of contact UIDs */ diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/mousepad.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/mousepad.js index 88a8f17..61e18ba 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/mousepad.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/mousepad.js @@ -316,7 +316,7 @@ const MousepadPlugin = GObject.registerClass({ } /** - * Send an echo/ACK of @input, if requested + * Send an echo/ACK of {@link input}, if requested * * @param {object} input - The body of a 'kdeconnect.mousepad.request' */ diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/runcommand.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/runcommand.js index f4e6cd7..dbe2e20 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/runcommand.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/runcommand.js @@ -120,7 +120,7 @@ const RunCommandPlugin = GObject.registerClass({ } /** - * Handle a request to execute the local command with the UUID @key + * Handle a request to execute the local command with the UUID {@link key} * * @param {string} key - The UUID of the local command */ @@ -233,7 +233,7 @@ const RunCommandPlugin = GObject.registerClass({ commands() {} /** - * Send a request to execute the remote command with the UUID @key + * Send a request to execute the remote command with the UUID {@link key} * * @param {string} key - The UUID of the remote command */ diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sftp.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sftp.js index 1f2257d..da8bf47 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sftp.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sftp.js @@ -263,8 +263,8 @@ const SFTPPlugin = GObject.registerClass({ } /** - * Remove all host keys from ~/.ssh/known_hosts for @host in the port range - * used by KDE Connect (1739-1764). + * Remove all host keys from ~/.ssh/known_hosts for {@link host} in the + * port range used by KDE Connect (1739-1764). * * @param {string} host - A hostname or IP address */ diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sms.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sms.js index ed0bbc7..3f775e9 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sms.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/sms.js @@ -506,7 +506,7 @@ const SMSPlugin = GObject.registerClass({ } /** - * Try to find a thread_id in @smsPlugin for @addresses. + * Try to find a thread_id in for {@link addresses}. * * @param {object[]} addresses - a list of address objects * @returns {string|null} a thread ID diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/systemvolume.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/systemvolume.js index 388bbb2..3fbc0a8 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/systemvolume.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/plugins/systemvolume.js @@ -113,7 +113,7 @@ const SystemVolumePlugin = GObject.registerClass({ } /** - * Update the cache for @stream + * Update the cache for {@link stream} * * @param {"Gvc.MixerStream"} stream - The stream to cache * @returns {object} The updated cache object diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/contacts.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/contacts.js index 119d757..be89efe 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/contacts.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/contacts.js @@ -14,7 +14,7 @@ import system from 'system'; /** * Return a random color * - * @param {*} [salt] - If not %null, will be used as salt for generating a color + * @param {string} [salt] - If not %null, will be used as salt for generating a color * @param {number} alpha - A value in the [0...1] range for the alpha channel * @returns {Gdk.RGBA} A new Gdk.RGBA object generated from the input */ @@ -72,8 +72,8 @@ function getFgRGBA(rgba) { /** - * Get a GdkPixbuf for @path, allowing the corrupt JPEG's KDE Connect sometimes - * sends. This function is synchronous. + * Get a GdkPixbuf for {@link path}, allowing the corrupt JPEG's KDE Connect + * sometimes sends. This function is synchronous. * * @param {string} path - A local file path * @param {number} size - Size in pixels @@ -159,7 +159,7 @@ function getNumberTypeLabel(type) { } /** - * Get a display number from @contact for @address. + * Get a display number from {@link contact} for {@link address}. * * @param {object} contact - A contact object * @param {string} address - A phone number diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/messaging.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/messaging.js index 40cc5e5..510655e 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/messaging.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/ui/messaging.js @@ -1077,7 +1077,7 @@ export const Window = GObject.registerClass({ } /** - * Find the thread row for @contacts + * Find the thread row for {@link contacts} * * @param {object[]} contacts - A contact group * @returns {ConversationSummary|null} The thread row or %null @@ -1160,7 +1160,7 @@ export const Window = GObject.registerClass({ } /** - * Try and find an existing conversation widget for @message. + * Try and find an existing conversation widget for {@link message}. * * @param {object} message - A message object * @returns {Conversation|null} A conversation widget or %null @@ -1202,8 +1202,8 @@ export const Window = GObject.registerClass({ } /** - * Set the contents of the message entry. If @pending is %false set the - * message of the currently selected conversation, otherwise mark the + * Set the contents of the message entry. If {@link pending} is %false set + * the message of the currently selected conversation, otherwise mark the * message to be set for the next selected conversation. * * @param {string} message - The message to place in the entry diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/dbus.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/dbus.js index bcea5ad..4528693 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/dbus.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/dbus.js @@ -111,11 +111,26 @@ export const Interface = GObject.registerClass({ * @param {Gio.DBusInterfaceInfo} info - The DBus interface * @param {Gio.DBusInterface} iface - The DBus interface * @param {string} name - The DBus method name - * @param {GLib.Variant} parameters - The method parameters - * @param {Gio.DBusMethodInvocation} invocation - The method invocation info + * @param {GLib.Variant|Gio.DBusMethodInvocation} param1 - The method parameters or invocation (GNOME 50+ changed order) + * @param {Gio.DBusMethodInvocation|GLib.Variant} param2 - The method invocation or parameters (GNOME 50+ changed order) */ - async _call(info, iface, name, parameters, invocation) { + async _call(info, iface, name, param1, param2) { let retval; + let invocation, parameters; + + // GNOME 50+ changed the callback signature from + // (iface, name, parameters, invocation) to + // (iface, name, invocation, parameters) + // Detect which order is being used + if (param1 instanceof GLib.Variant) { + // Old order: parameters, invocation + parameters = param1; + invocation = param2; + } else { + // New order: invocation, parameters + invocation = param1; + parameters = param2; + } // Invoke the instance method try { @@ -241,7 +256,7 @@ export const Interface = GObject.registerClass({ }); /** - * Get a new, dedicated DBus connection on @busType + * Get a new, dedicated DBus connection on {@link busType} * * @param {Gio.BusType} [busType] - a Gio.BusType constant * @param {Gio.Cancellable} [cancellable] - an optional Gio.Cancellable diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/uri.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/uri.js index 11cbd74..a9db94a 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/uri.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/service/utils/uri.js @@ -74,9 +74,9 @@ const _numberRegex = new RegExp( /** - * Searches @str for URLs and returns an array of objects with %url + * Searches {@link str} for URLs and returns an array of objects with %url * properties showing the matched URL string, and %pos properties indicating - * the position within @str where the URL was found. + * the position within {@link str} where the URL was found. * * @param {string} str - the string to search * @returns {object[]} the list of match objects, as described above diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/clipboard.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/clipboard.js index db28b9e..454afcf 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/clipboard.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/clipboard.js @@ -137,8 +137,23 @@ export const Clipboard = GObject.registerClass({ } } - async _onHandleMethodCall(iface, name, parameters, invocation) { + async _onHandleMethodCall(iface, name, param1, param2) { let retval; + let invocation, parameters; + + // GNOME 50+ changed the callback signature from + // (iface, name, parameters, invocation) to + // (iface, name, invocation, parameters) + // Detect which order is being used + if (param1 instanceof GLib.Variant) { + // Old order: parameters, invocation + parameters = param1; + invocation = param2; + } else { + // New order: invocation, parameters + invocation = param1; + parameters = param2; + } try { const args = parameters.recursiveUnpack(); @@ -267,7 +282,7 @@ export const Clipboard = GObject.registerClass({ } /** - * Get the content of the clipboard with the type @mimetype. + * Get the content of the clipboard with the type {@link mimetype}. * * @param {string} mimetype - the mimetype to request * @returns {Promise} The content of the clipboard @@ -296,7 +311,8 @@ export const Clipboard = GObject.registerClass({ } /** - * Set the content of the clipboard to @value with the type @mimetype. + * Set the content of the clipboard to {@link value} with the type + * {@link mimetype}. * * @param {Uint8Array} value - the value to set * @param {string} mimetype - the mimetype of the value diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/gmenu.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/gmenu.js index c85e982..f980fb7 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/gmenu.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/gmenu.js @@ -19,7 +19,7 @@ import Tooltip from './tooltip.js'; * Get a dictionary of a GMenuItem's attributes * * @param {Gio.MenuModel} model - The menu model containing the item - * @param {number} index - The index of the item in @model + * @param {number} index - The index of the item in {@link model} * @returns {object} A dictionary of the item's attributes */ function getItemInfo(model, index) { diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/keybindings.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/keybindings.js index 55031df..563c5e6 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/keybindings.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/keybindings.js @@ -6,6 +6,10 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import Meta from 'gi://Meta'; import Shell from 'gi://Shell'; +/** + * @callback KeybindingCallback + * @returns {void} + */ /** * Keybindings.Manager is a simple convenience class for managing keyboard @@ -48,8 +52,8 @@ export class Manager { * Add a keybinding with callback * * @param {string} accelerator - An accelerator in the form 'q' - * @param {Function} callback - A callback for the accelerator - * @returns {*} A non-zero action id on success, or 0 on failure + * @param {KeybindingCallback} callback - A callback for the accelerator + * @returns {number} A non-zero action id on success, or 0 on failure */ add(accelerator, callback) { try { @@ -65,6 +69,7 @@ export class Manager { return action; } catch (e) { logError(e); + return 0; } } diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/notification.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/notification.js index 4b95dd7..986ab3f 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/notification.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/shell/notification.js @@ -15,7 +15,7 @@ import {gettext as _} from 'resource:///org/gnome/shell/extensions/extension.js' import {HAS_MESSAGELIST_NOTIFICATIONMESSAGE, getIcon} from './utils.js'; const {NotificationMessage} = HAS_MESSAGELIST_NOTIFICATIONMESSAGE - ? await import('resource:///org/gnome/shell/ui/messageList.js') // GNOME 48 + ? await import('resource:///org/gnome/shell/ui/messageList.js') // GNOME 48+ : await import('resource:///org/gnome/shell/ui/calendar.js'); // GNOME 46/47 const APP_ID = 'org.gnome.Shell.Extensions.GSConnect'; diff --git a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/wl_clipboard.js b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/wl_clipboard.js index b5e847f..c6977a2 100644 --- a/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/wl_clipboard.js +++ b/gnome/.local/share/gnome-shell/extensions/gsconnect@andyholmes.github.io/wl_clipboard.js @@ -106,8 +106,23 @@ export const Clipboard = GObject.registerClass( } } - async _onHandleMethodCall(iface, name, parameters, invocation) { + async _onHandleMethodCall(iface, name, param1, param2) { let retval; + let invocation, parameters; + + // GNOME 50+ changed the callback signature from + // (iface, name, parameters, invocation) to + // (iface, name, invocation, parameters) + // Detect which order is being used + if (param1 instanceof GLib.Variant) { + // Old order: parameters, invocation + parameters = param1; + invocation = param2; + } else { + // New order: invocation, parameters + invocation = param1; + parameters = param2; + } try { const args = parameters.recursiveUnpack(); diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/extension.js b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/extension.js index d5a5681..502a1f1 100644 --- a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/extension.js +++ b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/extension.js @@ -1,6 +1,7 @@ import * as Main from "resource:///org/gnome/shell/ui/main.js"; import { Extension } from "resource:///org/gnome/shell/extensions/extension.js"; -import { isMatch } from "./isMatch.js"; +import Shell from "gi://Shell"; +import { NotificationApplicationPolicy } from "resource:///org/gnome/shell/ui/messageTray.js"; export var LogLevel; (function (LogLevel) { LogLevel["DEBUG"] = "debug"; @@ -10,66 +11,123 @@ export var LogLevel; })(LogLevel || (LogLevel = {})); function getObjectLabel(name, values) { const labels = Object.entries(values) - .filter(([_, value]) => value) + .filter((entry) => !!entry[1]) .map(([label, value]) => `${label}: '${value}'`); return `${name}(${labels.join(", ")})`; } -function safeRegexTest(pattern, value) { - try { - return new RegExp(pattern).test(value); - } - catch { - return null; - } -} -function getWindowLabel(window) { +function getWindowLabel(window, app) { return getObjectLabel("Window", { - ["Title"]: window.title, - ["WMClass"]: window.wmClass, - ["GTKAppId"]: window.gtkApplicationId, - ["SandboxedAppId"]: window.get_sandboxed_app_id(), + Title: window.title, + AppId: app?.id ?? null, + GtkAppId: window.gtkApplicationId, + WmClass: window.wmClass, + SandboxedAppId: window.get_sandboxed_app_id(), }); } function getSourceLabel(source) { return getObjectLabel("Source", { - ["Title"]: source.title, - ["Icon"]: source.icon?.to_string(), + Title: source.title, + Icon: source.icon?.to_string() ?? null, + PolicyId: source.policy instanceof NotificationApplicationPolicy + ? source.policy.id + : null, }); } +// libnotify clients without a desktop-entry hint set source.icon to an +// app-identifying string. Compare it against window-side identifiers. +function matchByIcon(icon, window) { + return ( + // Ghostty deb: icon matches GTK app id (com.mitchellh.ghostty) + icon === window.gtkApplicationId || + // Slack Flatpak: icon matches sandboxed app id (com.slack.Slack) + icon === window.get_sandboxed_app_id() || + // Firefox deb: icon matches window manager class (firefox) + icon === window.wmClass); +} +// Snap apps expose icon paths like /snap/firefox/6638/default256.png; their +// sandboxed ids often duplicate the snap name (firefox_firefox). +function matchBySnapIcon(icon, window) { + const snap = /^\/snap\/([^/]+)\//.exec(icon)?.[1]; + if (!snap) + return false; + return window.get_sandboxed_app_id() === `${snap}_${snap}`; +} +function matchByTitle(title, window) { + if (window.title == null) + return false; + return ( + // Proton Mail Bridge: title matches window title + title === window.title || + // Extract app name from composite title separated by " - " or " | ". + // `^.+` is greedy, so the rightmost separator wins: + // "foo.ts - project - Cursor" -> "Cursor", "doc | App" -> "App". + title === /^.+ (-|\|) (.+)$/.exec(window.title)?.[2] || + // Thunderbird: title matches window manager class (thunderbird) + title === window.wmClass || + // Discord snap: title duplicated matches sandboxed app id (discord_discord) + `${title}_${title}` === window.get_sandboxed_app_id()); +} +// Prefer authoritative identifiers (policy id, source icon) when present. +// If an icon is set, do not fall back to title matching; title is a +// last-ditch heuristic reserved for sources that expose neither. +function sourceMatchesApp(source, window, appId) { + if (source.policy instanceof NotificationApplicationPolicy) { + return source.policy.id === appId; + } + const icon = source.icon?.to_string(); + if (icon) + return matchByIcon(icon, window) || matchBySnapIcon(icon, window); + if (source.title) + return matchByTitle(source.title, window); + return false; +} export default class JunkNotificationCleaner extends Extension { focusListenerId = null; closeListenerId = null; settings = null; + windowTracker = Shell.WindowTracker.get_default(); log(level, message) { - let minLevel = this.settings.get_string("log-level"); - const levels = Object.values(LogLevel); - if (!levels.includes(minLevel)) - minLevel = LogLevel.INFO; - if (levels.indexOf(level) >= levels.indexOf(minLevel)) { + // gschema enum maps debug=0, info=1, warn=2, error=3, matching the + // declaration order of LogLevel; compare ints directly. + const minLevelIdx = this.settings?.get_enum("log-level") ?? 1; + if (Object.values(LogLevel).indexOf(level) >= minLevelIdx) { log(`[${this.metadata.uuid}][${level}] ${message}`); } } clearNotificationsForApp(window, event) { - const windowLabel = getWindowLabel(window); + const app = this.windowTracker.get_window_app(window); + const windowLabel = getWindowLabel(window, app); this.log(LogLevel.DEBUG, `${windowLabel}: received ${event}`); - const excludedApps = this.settings.get_strv("excluded-apps"); - for (const wmClassPattern of excludedApps) { - const result = safeRegexTest(wmClassPattern, window.wmClass); - if (result === null) { - this.log(LogLevel.WARN, `${windowLabel}: invalid regex '${wmClassPattern}'`); - } - else if (result) { - this.log(LogLevel.DEBUG, `${windowLabel}: excluded by '${wmClassPattern}'`); - return; - } + const settings = this.settings; + if (!settings) { + this.log(LogLevel.ERROR, `${windowLabel}: settings not initialized`); + return; + } + if (!app) { + this.log(LogLevel.DEBUG, `${windowLabel}: no app associated with window`); + return; + } + // Shell.App.id is the desktop filename (e.g. "org.gnome.Nautilus.desktop"); + // NotificationApplicationPolicy.id stores the same id without the + // ".desktop" suffix, so normalize before comparison. + const appId = app.id.replace(/\.desktop$/, ""); + const excludedApps = settings.get_strv("excluded-apps"); + if (excludedApps.includes(appId)) { + this.log(LogLevel.DEBUG, `${windowLabel}: excluded by app id '${appId}'`); + return; } for (const source of Main.messageTray.getSources()) { - const sourceLabel = getSourceLabel(source); + const label = `${windowLabel}: ${getSourceLabel(source)}`; + const matches = sourceMatchesApp(source, window, appId); for (const notification of [...source.notifications]) { - this.log(LogLevel.DEBUG, `${windowLabel}: ${sourceLabel}: found ${notification.isTransient ? "transient" : "persistent"} notification${notification.title ? `: ${notification.title}` : ""}`); - if (isMatch(window, source) && !notification.isTransient) { + const title = notification.title ?? "(untitled notification)"; + const kind = notification.isTransient ? "transient" : "persistent"; + this.log(LogLevel.DEBUG, `${label}: found ${kind} notification: ${title}`); + if (notification.isTransient) + continue; + if (matches) { notification.destroy(); - this.log(LogLevel.INFO, `${windowLabel}: ${sourceLabel}: removed notification${notification.title ? `: ${notification.title}` : ""}`); + this.log(LogLevel.INFO, `${label}: removed notification: ${title}`); } } } @@ -77,17 +135,18 @@ export default class JunkNotificationCleaner extends Extension { enable() { this.settings = this.getSettings(); this.focusListenerId = global.display.connect("notify::focus-window", ({ focusWindow }) => { - if (this.settings.get_boolean("delete-on-focus") && focusWindow) { + if (this.settings?.get_boolean("delete-on-focus") && focusWindow) { this.clearNotificationsForApp(focusWindow, "focus"); } }); this.closeListenerId = global.window_manager.connect("destroy", (_, { metaWindow }) => { - if (this.settings.get_boolean("delete-on-close") && metaWindow) { + if (this.settings?.get_boolean("delete-on-close") && metaWindow) { this.clearNotificationsForApp(metaWindow, "close"); } }); } disable() { + this.settings = null; if (this.focusListenerId !== null) { global.display.disconnect(this.focusListenerId); this.focusListenerId = null; @@ -96,8 +155,5 @@ export default class JunkNotificationCleaner extends Extension { global.window_manager.disconnect(this.closeListenerId); this.closeListenerId = null; } - if (this.settings) { - this.settings = null; - } } } diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/isMatch.js b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/isMatch.js deleted file mode 100644 index b96d150..0000000 --- a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/isMatch.js +++ /dev/null @@ -1,36 +0,0 @@ -export function isMatch(window, source) { - if (source.icon) { - const icon = source.icon.to_string(); - if ( - // Ghostty deb: icon matches GTK app id (com.mitchellh.ghostty) - icon === window.gtkApplicationId || - // Slack Flatpak: icon matches sandboxed app id (com.slack.Slack) - icon === window.get_sandboxed_app_id() || - // Firefox deb: icon matches window manager class (firefox) - icon === window.wmClass) { - return true; - } - // Snap apps have icon paths like /snap/firefox/6638/default256.png - const snapAppName = icon?.match(/^\/snap\/([^/]+)\//)?.at(1); - // Snap sandboxed ids use format appname_appname (firefox_firefox) - if (snapAppName) { - if (window.get_sandboxed_app_id() === `${snapAppName}_${snapAppName}`) { - return true; - } - } - } - if (source.title) { - if ( - // Proton Mail Bridge: title matches window title - source.title === window.title || - // Extract app name from composite title (isMatch.ts - junk-notification-cleaner - Cursor) - source.title === window.title?.match(/^.+ (-|\|) (.+)$/)?.[2] || - // Thunderbird: title matches window manager class (thunderbird) - source.title === window.wmClass || - // Discord snap: title duplicated matches sandboxed app id (discord_discord) - `${source.title}_${source.title}` === window.get_sandboxed_app_id()) { - return true; - } - } - return false; -} diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/metadata.json b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/metadata.json index 30d8c7e..7bc0ba3 100644 --- a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/metadata.json +++ b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/metadata.json @@ -12,5 +12,5 @@ ], "url": "https://github.com/murar8/junk-notification-cleaner", "uuid": "junk-notification-cleaner@murar8.github.com", - "version": 10 -} + "version": 13 +} \ No newline at end of file diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/prefs.js b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/prefs.js index 4b22d05..06cd2e4 100644 --- a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/prefs.js +++ b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/prefs.js @@ -1,171 +1,272 @@ import Adw from "gi://Adw"; import Gio from "gi://Gio"; +import GioUnix from "gi://GioUnix"; import Gtk from "gi://Gtk"; import { ExtensionPreferences } from "resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js"; -const LOG_LEVELS = ["debug", "info", "warn", "error"]; -function isValidRegex(pattern) { - try { - new RegExp(pattern); - return true; - } - catch { - return false; - } -} +const LOG_LEVELS = [ + "debug", + "info", + "warn", + "error", +]; export default class JunkNotificationCleanerPreferences extends ExtensionPreferences { - async fillPreferencesWindow(window) { - const settings = this.getSettings(); + model; + getPreferencesWidget() { + this.model = new PreferencesModel(this.getSettings()); const page = new Adw.PreferencesPage(); page.set_title("Settings"); page.set_icon_name("preferences-system-symbolic"); - window.add(page); - const generalGroup = new Adw.PreferencesGroup(); - generalGroup.set_title("General Settings"); - page.add(generalGroup); - const focusRow = new Adw.ActionRow({ + page.add(this.buildGeneralGroup()); + page.add(this.buildLoggingGroup()); + page.add(this.buildExcludedAppsGroup()); + return page; + } + buildGeneralGroup() { + const group = new Adw.PreferencesGroup(); + group.set_title("General Settings"); + group.add(this.buildSwitchRow({ + key: "delete-on-focus", title: "Delete on Focus", subtitle: "Delete notifications when an application window is focused.", - }); - const focusSwitch = new Gtk.Switch({ - active: settings.get_boolean("delete-on-focus"), - valign: Gtk.Align.CENTER, - }); - settings.bind("delete-on-focus", focusSwitch, "active", Gio.SettingsBindFlags.DEFAULT); - focusRow.add_suffix(focusSwitch); - generalGroup.add(focusRow); - const closeRow = new Adw.ActionRow({ + })); + group.add(this.buildSwitchRow({ + key: "delete-on-close", title: "Delete on Close", subtitle: "Delete notifications when an application window is closed.", + })); + return group; + } + buildSwitchRow(opts) { + const row = new Adw.ActionRow({ + title: opts.title, + subtitle: opts.subtitle, }); - const closeSwitch = new Gtk.Switch({ - active: settings.get_boolean("delete-on-close"), - valign: Gtk.Align.CENTER, - }); - settings.bind("delete-on-close", closeSwitch, "active", Gio.SettingsBindFlags.DEFAULT); - closeRow.add_suffix(closeSwitch); - generalGroup.add(closeRow); - const debugGroup = new Adw.PreferencesGroup(); - debugGroup.set_title("Logging"); - page.add(debugGroup); - const logLevelRow = new Adw.ActionRow({ + const toggle = new Gtk.Switch({ valign: Gtk.Align.CENTER }); + this.model.bindDeleteTrigger(opts.key, toggle, "active"); + row.add_suffix(toggle); + return row; + } + buildLoggingGroup() { + const group = new Adw.PreferencesGroup(); + group.set_title("Logging"); + const row = new Adw.ActionRow({ title: "Log Level", subtitle: "Set the logging level for troubleshooting notification matching.", }); - const logLevelDropdown = new Gtk.DropDown({ - model: Gtk.StringList.new(LOG_LEVELS), + const dropdown = new Gtk.DropDown({ + model: Gtk.StringList.new([...LOG_LEVELS]), valign: Gtk.Align.CENTER, }); - let currentLogLevel = settings.get_string("log-level") || "info"; - const currentIndex = LOG_LEVELS.indexOf(currentLogLevel); - if (currentIndex !== -1) { - logLevelDropdown.set_selected(currentIndex); - } - logLevelDropdown.connect("notify::selected", () => { - const selectedIndex = logLevelDropdown.get_selected(); - settings.set_string("log-level", LOG_LEVELS[selectedIndex]); + this.bindLogLevelDropdown(dropdown); + row.add_suffix(dropdown); + group.add(row); + return group; + } + bindLogLevelDropdown(dropdown) { + const sync = () => { + dropdown.set_selected(this.model.getLogLevelIndex()); + }; + sync(); + const changedId = this.model.onLogLevelChanged(sync); + dropdown.connect("notify::selected", (dd) => { + this.model.setLogLevelIndex(dd.get_selected()); }); - logLevelRow.add_suffix(logLevelDropdown); - debugGroup.add(logLevelRow); - const excludedGroup = new Adw.PreferencesGroup(); - excludedGroup.set_title("Excluded WM Classes"); - excludedGroup.set_description([ - "Window Manager Classes whose notifications will not be automatically deleted.", - "Will be matched against the wm_class property of the window, supports ECMAScript regular expressions.", - ].join("\n")); - page.add(excludedGroup); - const excludedBox = new Gtk.Box({ - orientation: Gtk.Orientation.VERTICAL, - margin_top: 8, - margin_bottom: 8, - margin_start: 8, - margin_end: 8, - spacing: 8, + dropdown.connect("destroy", () => { + this.model.disconnect(changedId); }); - const excludedApps = settings.get_strv("excluded-apps"); + } + buildExcludedAppsGroup() { + const group = new Adw.PreferencesGroup(); + group.set_title("Excluded Applications"); + group.set_description("Applications whose notifications will not be automatically deleted."); + const listBox = this.buildExcludedAppsList(); + const addButton = new Gtk.Button({ + icon_name: "list-add-symbolic", + tooltip_text: "Add application", + css_classes: ["flat"], + valign: Gtk.Align.CENTER, + }); + addButton.connect("clicked", (btn) => { + const parent = btn.get_root(); + this.openAppSelector(parent, (appId) => { + this.model.addExcludedApp(appId); + }); + }); + group.set_header_suffix(addButton); + group.add(listBox); + return group; + } + buildExcludedAppsList() { const listBox = new Gtk.ListBox({ selection_mode: Gtk.SelectionMode.NONE, css_classes: ["boxed-list"], }); - excludedBox.append(listBox); - for (const app of excludedApps) { - this.addExcludedAppRow(app, listBox, settings); - } - const addBox = new Gtk.Box({ - orientation: Gtk.Orientation.HORIZONTAL, - spacing: 8, - margin_top: 8, + listBox.set_placeholder(new Gtk.Label({ + label: "No excluded applications.", + css_classes: ["dim-label"], + margin_top: 12, + margin_bottom: 12, + })); + this.rebuildExcludedAppsList(listBox); + const handlerId = this.model.onExcludedAppsChanged(() => { + this.rebuildExcludedAppsList(listBox); }); - const entry = new Gtk.Entry({ - placeholder_text: "Enter WM Class regex (e.g. .*firefox.*)", - hexpand: true, + listBox.connect("destroy", () => { + this.model.disconnect(handlerId); }); - const errorLabel = new Gtk.Label({ - label: "Invalid regular expression", - css_classes: ["error"], - xalign: 0, - visible: false, - }); - const addButton = new Gtk.Button({ - label: "Add", - css_classes: ["suggested-action"], - }); - entry.connect("changed", () => { - entry.remove_css_class("error"); - errorLabel.set_visible(false); - }); - addButton.connect("clicked", () => { - const text = entry.get_text().trim(); - if (!text) - return; - if (!isValidRegex(text)) { - entry.add_css_class("error"); - errorLabel.set_visible(true); - } - else { - entry.remove_css_class("error"); - errorLabel.set_visible(false); - const currentApps = settings.get_strv("excluded-apps"); - if (currentApps.includes(text)) - return; - settings.set_strv("excluded-apps", [...currentApps, text]); - this.addExcludedAppRow(text, listBox, settings); - entry.set_text(""); - } - }); - addBox.append(entry); - addBox.append(addButton); - excludedBox.append(addBox); - excludedBox.append(errorLabel); - excludedGroup.add(excludedBox); + return listBox; } - addExcludedAppRow(app, listBox, settings) { - const row = new Gtk.ListBoxRow(); - const box = new Gtk.Box({ - orientation: Gtk.Orientation.HORIZONTAL, - spacing: 8, - margin_top: 8, - margin_bottom: 8, - margin_start: 8, - margin_end: 8, - }); - const label = new Gtk.Label({ - label: app, - hexpand: true, - xalign: 0, - }); + rebuildExcludedAppsList(listBox) { + listBox.remove_all(); + for (const appId of this.model.getExcludedApps()) { + listBox.append(this.buildExcludedAppRow(appId)); + } + } + buildExcludedAppRow(appId) { + const app = tryLoadDesktopApp(appId); + const row = buildAppRow(app, appId); + if (!app) + row.set_subtitle("Uninstalled"); const removeButton = new Gtk.Button({ icon_name: "user-trash-symbolic", tooltip_text: "Remove", + css_classes: ["flat"], + valign: Gtk.Align.CENTER, }); removeButton.connect("clicked", () => { - const currentApps = settings.get_strv("excluded-apps"); - const newApps = currentApps.filter((a) => a !== app); - settings.set_strv("excluded-apps", newApps); - listBox.remove(row); + this.model.removeExcludedApp(appId); }); - box.append(label); - box.append(removeButton); - row.set_child(box); - listBox.append(row); + row.add_suffix(removeButton); + return row; + } + openAppSelector(parent, onSelected) { + const window = new Adw.Window({ + title: "Add Excluded Application", + modal: true, + default_width: 420, + default_height: 520, + }); + if (parent) + window.set_transient_for(parent); + const search = new Gtk.SearchEntry({ + placeholder_text: "Search applications", + hexpand: true, + }); + const headerBar = new Adw.HeaderBar(); + headerBar.set_title_widget(search); + const appList = buildSelectableAppList(this.getSelectableApps(), (appId) => { + onSelected(appId); + window.close(); + }); + wireSearchFilter(appList, search); + addCloseOnEscape(window); + const toolbarView = new Adw.ToolbarView(); + toolbarView.add_top_bar(headerBar); + toolbarView.set_content(new Gtk.ScrolledWindow({ child: appList })); + window.set_content(toolbarView); + window.present(); + search.grab_focus(); + } + getSelectableApps() { + const excluded = new Set(this.model.getExcludedApps()); + return Gio.AppInfo.get_all() + .filter((a) => a.should_show() && a.get_id() && !excluded.has(getAppId(a))) + .sort((a, b) => a.get_name().localeCompare(b.get_name())); + } +} +function buildSelectableAppList(apps, onActivated) { + const appList = new Gtk.ListBox({ + selection_mode: Gtk.SelectionMode.NONE, + css_classes: ["boxed-list"], + margin_top: 8, + margin_bottom: 8, + margin_start: 8, + margin_end: 8, + }); + for (const app of apps) { + const appId = getAppId(app); + const row = buildAppRow(app, appId, { activatable: true }); + appList.append(row); + row.connect("activated", () => { + onActivated(appId); + }); + } + return appList; +} +// DesktopAppInfo.new is typed as non-null but returns null when the +// .desktop file is missing (e.g. the user uninstalled the app). +function tryLoadDesktopApp(appId) { + return GioUnix.DesktopAppInfo.new(`${appId}.desktop`); +} +function buildAppRow(app, appId, extra = {}) { + const title = app?.get_name() ?? appId; + const row = new Adw.ActionRow({ ...extra, title, subtitle: appId }); + const icon = app?.get_icon(); + if (icon) { + const image = Gtk.Image.new_from_gicon(icon); + image.set_pixel_size(32); + row.add_prefix(image); + } + return row; +} +function wireSearchFilter(appList, search) { + appList.set_filter_func((row) => { + const query = search.get_text().toLowerCase().trim(); + if (query === "") + return true; + const actionRow = row; + const title = actionRow.get_title().toLowerCase(); + const subtitle = actionRow.get_subtitle()?.toLowerCase() ?? ""; + return title.includes(query) || subtitle.includes(query); + }); + search.connect("search-changed", () => { + appList.invalidate_filter(); + }); +} +function addCloseOnEscape(window) { + const controller = new Gtk.ShortcutController(); + controller.add_shortcut(new Gtk.Shortcut({ + trigger: Gtk.ShortcutTrigger.parse_string("Escape"), + action: Gtk.ShortcutAction.parse_string("action(window.close)"), + })); + window.add_controller(controller); +} +function getAppId(app) { + return (app.get_id() ?? "").replace(/\.desktop$/, ""); +} +class PreferencesModel { + settings; + constructor(settings) { + this.settings = settings; + } + bindDeleteTrigger(key, target, property) { + this.settings.bind(key, target, property, Gio.SettingsBindFlags.DEFAULT); + } + getExcludedApps() { + return this.settings.get_strv("excluded-apps"); + } + addExcludedApp(appId) { + const current = this.getExcludedApps(); + if (current.includes(appId)) + return; + this.settings.set_strv("excluded-apps", [...current, appId]); + } + removeExcludedApp(appId) { + this.settings.set_strv("excluded-apps", this.getExcludedApps().filter((id) => id !== appId)); + } + onExcludedAppsChanged(handler) { + return this.settings.connect("changed::excluded-apps", handler); + } + getLogLevelIndex() { + return this.settings.get_enum("log-level"); + } + setLogLevelIndex(idx) { + this.settings.set_enum("log-level", idx); + } + onLogLevelChanged(handler) { + return this.settings.connect("changed::log-level", handler); + } + disconnect(handlerId) { + this.settings.disconnect(handlerId); } } diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/gschemas.compiled b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/gschemas.compiled index 72cf47b225a4149f113d9816f08b3967939148c2..e7ba92229e4717250a82af14f8290a79beb428de 100644 GIT binary patch delta 214 zcmeysyn$tc2cHfT0}%KyfM^4ziD6Ai%NQ9LmhxX>WCe=Op~n`b%GceQbA%s z@INIrsWhG8KTr?D|IEC!d>{o<|Gzx3C=W<6gV?D>MfpVx|5+I{iZv<|OEoo9Qgc#E UQg!q5bdz)Pi$P{hu3)SH0HB37CIA2c delta 150 zcmdnM@_~7R2j3e;1|aZZ0MQ>9Cx$g8Wdd1C`7bfD0>wdWeugrJ3Lsqz#Qmo^nLy$o zHb{H|ke&*}2WsoM{{sPt%?cD>0Hkk%*rE&!AaM{IWXl~O{f2R}6{C)jMzLl}YEEiN Ss&0OsZgNh3aq8q9j1>T(W+#XM diff --git a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/org.gnome.shell.extensions.junk-notification-cleaner.gschema.xml b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/org.gnome.shell.extensions.junk-notification-cleaner.gschema.xml index cb75d93..5de08a6 100644 --- a/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/org.gnome.shell.extensions.junk-notification-cleaner.gschema.xml +++ b/gnome/.local/share/gnome-shell/extensions/junk-notification-cleaner@murar8.github.com/schemas/org.gnome.shell.extensions.junk-notification-cleaner.gschema.xml @@ -1,5 +1,11 @@ + + + + + + true @@ -14,9 +20,9 @@ [] Excluded applications - List of application regex patterns for which notifications should not be automatically deleted. + List of application ids (.desktop file names without the suffix) for which notifications should not be automatically deleted. - + 'info' Log level Set the logging level for troubleshooting notification matching issues. From 048ece4f803bc652965a8d4a34a6cfb2f1249e49 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:03:29 -0400 Subject: [PATCH 10/16] [gtk] Update bookmarks for WebDAV --- gtk/.config/gtk-3.0/bookmarks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/.config/gtk-3.0/bookmarks b/gtk/.config/gtk-3.0/bookmarks index 860717b..1c63058 100644 --- a/gtk/.config/gtk-3.0/bookmarks +++ b/gtk/.config/gtk-3.0/bookmarks @@ -3,5 +3,5 @@ file:///home/powellc/var/inbox file:///home/powellc/var file:///home/powellc/tmp sftp://root@pandora.unbl.ink/root Pandora -davs://colin%40unbl.ink@box.unbl.ink/cloud/remote.php/webdav/var/retroarch retroarch google-drive://colin.powell@hungryroot.com/0AIkuIpavI6MnUk9PVA work docs +davs://colin%40unbl.ink@box.unbl.ink/cloud/remote.php/webdav/var var From 75a66885dd948ca12e7b558d7770afe1df2c59e0 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:03:44 -0400 Subject: [PATCH 11/16] [git] ignore a diff org dir in work --- git/.gitignore_global | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/.gitignore_global b/git/.gitignore_global index 2663604..5309ec7 100644 --- a/git/.gitignore_global +++ b/git/.gitignore_global @@ -36,7 +36,7 @@ ssh/.ssh/known_hosts *.key emoijis SCRATCH.org -personal-docs +personal-org bin/.local/bin/agent bin/.local/bin/claude bin/.local/bin/cursor From 12044e8f37d8173973af047306fd96fcf028d89a Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:04:06 -0400 Subject: [PATCH 12/16] [emacs] Update capture template --- emacs/.config/doom/config.el | 7 +++++++ emacs/.config/doom/config.org | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/emacs/.config/doom/config.el b/emacs/.config/doom/config.el index 1c85e00..0dade61 100644 --- a/emacs/.config/doom/config.el +++ b/emacs/.config/doom/config.el @@ -48,6 +48,13 @@ (setq org-roam-directory "~/var/org/" org-roam-dailies-directory "dailies") +(setq org-roam-dailies-capture-templates + '(("d" "default" entry + "* Meetings :work:hungryroot:meeting:\n* Tasks :work:hungryroot:\n** %?" + :target (file+head "%<%Y-%m-%d>.org" + "#+title: %<%Y-%m-%d>\n") + :empty-lines 1))) + (advice-add 'org-agenda :before #'vulpea-agenda-files-update) (advice-add 'org-todo-list :before #'vulpea-agenda-files-update) diff --git a/emacs/.config/doom/config.org b/emacs/.config/doom/config.org index 7ff3a38..52d046d 100644 --- a/emacs/.config/doom/config.org +++ b/emacs/.config/doom/config.org @@ -264,6 +264,13 @@ easier. I just need to level up with Zettels and web publishing of my notes. #+BEGIN_SRC emacs-lisp (setq org-roam-directory "~/var/org/") (setq org-roam-dailies-directory "dailies") + +(setq org-roam-dailies-capture-templates + '(("d" "default" entry + "* Meetings :work:hungryroot:meeting:\n* Tasks :work:hungryroot:\n** %?" + :target (file+head "%<%Y-%m-%d>.org" + "#+title: %<%Y-%m-%d>\n") + :empty-lines 1))) #+END_SRC * Novel From e7cb9969b2cfeba5581177dbefcfdcb89dce3e62 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:04:40 -0400 Subject: [PATCH 13/16] [systemd] Enable emacs on graphical startup --- .../systemd/user/graphical-session.target.wants/emacs.service | 1 + 1 file changed, 1 insertion(+) create mode 120000 systemd/.config/systemd/user/graphical-session.target.wants/emacs.service diff --git a/systemd/.config/systemd/user/graphical-session.target.wants/emacs.service b/systemd/.config/systemd/user/graphical-session.target.wants/emacs.service new file mode 120000 index 0000000..bebf0b3 --- /dev/null +++ b/systemd/.config/systemd/user/graphical-session.target.wants/emacs.service @@ -0,0 +1 @@ +/home/powellc/.config/systemd/user/emacs.service \ No newline at end of file From 8fa07a3924032e4211e476518ac92f0d2497b3c6 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:05:10 -0400 Subject: [PATCH 14/16] [kitty] Bigger font for daily driving at work --- kitty/.config/kitty/kitty.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index fe33954..4f2b457 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -3,7 +3,7 @@ include ./kitty-themes/themes/Monokai.conf font_family IBM Plex Mono -font_size 12.0 +font_size 9.0 enable_audio_bell no visual_bell_duration 0.1 window_padding_width 12 From 98477401caab8f2e251a43a7b3789a360f06c590 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 10 Jun 2026 11:05:23 -0400 Subject: [PATCH 15/16] [pass] Adding some passwords and apikeys --- .../.password-store/databases/hungryroot.gpg | Bin 0 -> 604 bytes .../.password-store/personal/apikey/ebird.gpg | Bin 0 -> 623 bytes .../personal/apikey/simplefin.gpg | Bin 0 -> 857 bytes .../.password-store/work/hungryroot/svb.com.gpg | Bin 604 -> 628 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 password-store/.password-store/databases/hungryroot.gpg create mode 100644 password-store/.password-store/personal/apikey/ebird.gpg create mode 100644 password-store/.password-store/personal/apikey/simplefin.gpg diff --git a/password-store/.password-store/databases/hungryroot.gpg b/password-store/.password-store/databases/hungryroot.gpg new file mode 100644 index 0000000000000000000000000000000000000000..6c65c8a415bf389a73f352fcc1a9fac347e2448d GIT binary patch literal 604 zcmV-i0;Bzf0t^FCms>i{cG18A5Bmo(45Y{Qto2>IQmFOLy#;bBHV>W!-HF;0LvM!S0bkyK(qhm@xsV82K9aJ6c2(?LRwrTO6B8|G+i zLP{a<@Y?r6{qdjVs(GV>i~CHtn3~ZTNU3&-VDQtZM5}+rirCfENfKHbKGZksndX$pga! z&e|Ms0y@7y#7EeuivNT*5g=`nj`-s|9pU5X*i}GwpxTZ~%jUp|bxl)@yCjcWUxc@U z2~{5MuH=lvrz%roB4`0`$NV>c#CqdfLY5P(=7xsMii9&^F)E#dazaG;6gkRy+hSZ1 z^F?n+Yk27&q_LGi)x$~;{myy6vJ*3pbUfYPHw=wLc#Q{M4^vua?J*2T-SM4J&S|b!DcTFC(O4o~$ks=Jh<%8Cp zUS`CbT3~(kT(_2>vBuI%0Xs$QF9T{Yxq46(v;b>*IDNA!PEOQY^Mgu`+x#;{2iR8b qifvVIYPR%RKZc?Nr6)$xcld4vbCUfq=qX`=T`h-nB#?6HVC-%A7BH^> literal 0 HcmV?d00001 diff --git a/password-store/.password-store/personal/apikey/ebird.gpg b/password-store/.password-store/personal/apikey/ebird.gpg new file mode 100644 index 0000000000000000000000000000000000000000..61455554748ca5ce82ea3cfee23d4dac835d12ba GIT binary patch literal 623 zcmV-#0+9WM0t^FCms>i{cG18A5C3BeBAnUNMYY-p4zbgcP_HKZmnstzq+2t-#NVxk zAx!?Gqs)s@?d1`N`_{z2r<|*xl!)ytsy7SuN+Cx>Pu$0hf7VI@vkFt{&y#z8kZuyW zEx#|8EE>Q*kZUw7ULU+x^rXSW|zl zHStJt_E?%|4knmq(bvm=w$*8{{co(%_O?P@jUqO`i(xQ1C|WORBwa~yhWVf0f>R}? zyVX43$Q5xrPsg+}y^d7^EwWKRI|%gJiB12JVlRe;P^i;S zN~by!G(nHaix9RKFZC*PXMbx)!OxygcQB9W1n&lyfWfd%yNrQRP%ZR5E*KG~A}!`B z;=V_^Bm1lif!tk94^X|-i3NEjcsC3^pOcg}3WWjn@Kt^XM7 z327zuBBv>dauxy2m_&2mQKKu$+k z9o(Z&MOi{cG18A5BmqwPHdvFa&9547zewB(2QIFxFjlKvzA)QPyj?; z{Cf;NYcxhw5s19cs?G$@2TNT42@DGV&ByTyc3?GxTYvOQcZ+0e>z6X1d4oK2F`Ase(w1xkGvyx8<uVTH+2U)Xmx@*Wd|qmcXCF|4>adA;Z7hL*IT9hB zeVY)91Q4hGfzIK!Uk+=X4Z=)wYYHh~aksd|ua4A4y}{45fTVfolv0r@PYeB$?~YMC zohr7+28uj=%@IM2P&4K$Ok8(9_o;ssgd{r>fv*IWU}kiGY%kBf9tX6pgrmPL^~dvy z(Bey`;tg*Nw6e&A$?Npe%{B?noem;f849tXE%%%a>Nm2=2Yx3d9SiEV4v-TxssFox zI?PQnRVQR7m0t#nmNBqShH$6x7)|y3mhy*^yJdb{nB?9yr4?5Z1!!^z9DQN1Byb*8 zJZ#IYT9>3Ztj-pYtv{~{Zn;sfj2*2S(n-Bo(~0=50y7EPn`%FtY@p#{YQ7OIVWSJ# z9sWT=>F7=O&?KFwdwP5w@fG*^w2hW^EX64?%`nE6(YEi_f6mG@Od-ET`J0+dkqETH z7Lw>Hm`vKVCVjxvynWKZhXE0#R z%9_VySB-B2dC8jz6UeumIiEU~YLV_^XGrQLU+TLJgj~qkpBCwRP@;5PkljU8du}Ik zis16gtm|gAqsFa)9U$CV`}zI-eLSxMd_V jH1Hp#FnDQ$y0nD}G=7sxmk3L8Y7SwWj$P#kV8W^56LFsO literal 0 HcmV?d00001 diff --git a/password-store/.password-store/work/hungryroot/svb.com.gpg b/password-store/.password-store/work/hungryroot/svb.com.gpg index 7ecd23d213726fc0dcb8898ed28f11df670f0c95..6434e002d5df436ce9e27de297fc1c5873d41333 100644 GIT binary patch literal 628 zcmV-)0*n2H0t^FCms>i{cG18A5C3*B2@&~9>BCbQ(-=kL&(>pMR^EqtKt7r|*;AfR zzL{|%%uEvBOl>ZH1O_MAXKV^vO-|0L-cW%hq#_kUgBc}Scu08mJ@qG$ST*B#7Jg#n z2bi-$UA?!uCWazM)bFXuBo?t=nA{9~OT`|eW@U9=5FF%+&}Z@AXZaO4>^sS4B=Ala z`Z7Tr!nQgHL9*tbej4)HZaCCfv1p1&rNf^fe+$1`9$1}dBP|KY1_wQnR3XC)g^l$l ze}W;jvIyek9=^K1C%^jZJa7vMF`+Q--=ADUpwiCk#B&&gFeHTDDo5|rlBGgn8h!1} zl+6Y4E6G0QD#^1KIby3H!5dj1pDV2NuKDIo?PhPPP;S6x!0B=t{aF+0Tgfs*ZjWmW zLyjpEsSPW{ygEB&L5y43R*%vp!JryY-Z zyv6z~2WxQ|e(r~w(`L{}(X^p9_5;aP8;Hup$)29CNzWN}wR1-IsY+28*l@)V8*5M2 zWMY1slAUQNl@|?&pCC{W4$v9eWNg2kF$G&=j$Y{AIS{rutK&*BQ2v7O*I8}%JY4R7 zSIJOvz=!-5BzvxIAg-2S@jeQ`>$J$(J(^)$O5o_6mcRl^h7>txd{$~mYUMPaz|&x0 zjcVobV{@)$17YcW+X~WS0mj0WQF&7~s1IlYW+*o&Ne|FZybDkttq~lXcICFpDSc&PDz590iaG#mo`-i{cG18A5B(SKd7rc^4l|somy}+lZihA%7}j zPC9{>?_LliJsPp=8!Fz0{6G>RuiX8OwKF1Pg7hc9r=nXS%=&RSWC{yA)vEa8>dYt) zx7?rQ*Q4i{$I#&!jrkP*%Jreg{mirZx`^n1Dj*HH7H_Gdj34T2y086OZd7GQv0=tQ zDe;yF>5~#~Yqm&1p>`H+mH0mv$vk9||MyXq_^IA{Y7FaUszJsU1?rm6b16-g0x(&7 z^g^#ow6_rP7IrfE-!XnOTB+(tA${C$_Vi|L1z&|2WE=oeDyopgX21yu>}s2fA%KO2 z`BgOoT(Ul@P6~JkV0yZ(od1A_mwP`o@;@Ov{v@pBecEn^nWU}0@0zS=O#CodK2JFW zT7&nGi-0EnJqOjvg_a#N#O^x#Z6m0y#Qyk`L|pZT1s_H_<=Ct|;388rkOIGPt-)Wd z=t|-5)=d Date: Wed, 10 Jun 2026 11:15:36 -0400 Subject: [PATCH 16/16] [emacs] Add ledger --- emacs/.config/doom/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/.config/doom/init.el b/emacs/.config/doom/init.el index f9e30ef..be6501e 100644 --- a/emacs/.config/doom/init.el +++ b/emacs/.config/doom/init.el @@ -148,7 +148,7 @@ ;;kotlin ; a better, slicker Java(Script) ;;latex ; writing papers in Emacs has never been so fun ;;lean ; for folks with too much to prove - ;;ledger ; be audit you can be + ledger ; be audit you can be ;;lua ; one-based indices? one-based indices markdown ; writing docs for people to ignore ;;nim ; python + lisp at the speed of c