afegits scripts a linux_utils

This commit is contained in:
2025-07-14 12:34:16 +02:00
parent 31910b8a74
commit 043f53fccc
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
for i in {1..50}; do
IS_OVERVIEW=$(dbus-send --print-reply=literal --session \
--dest=org.gnome.Shell --type=method_call /org/gnome/Shell \
org.freedesktop.DBus.Properties.Get string:org.gnome.Shell string:OverviewActive | awk '{print $3}')
if [[ "$IS_OVERVIEW" == "true" ]]; then
dbus-send --session --dest=org.gnome.Shell --type=method_call \
/org/gnome/Shell org.freedesktop.DBus.Properties.Set \
string:org.gnome.Shell string:OverviewActive variant:boolean:false
exit
fi
sleep 0.1
done