Skip to content

Instantly share code, notes, and snippets.

@svandragt
Created October 26, 2022 15:35
Show Gist options
  • Save svandragt/d731081c660d374ddab846e7f4c07198 to your computer and use it in GitHub Desktop.
Save svandragt/d731081c660d374ddab846e7f4c07198 to your computer and use it in GitHub Desktop.
Hide others for elementary / ubuntu.
#!/bin/bash
# hideothers.sh
active_window_id=$(xdotool getactivewindow)
for window_id in $(xdotool search --onlyvisible ".*")
do
if [ $window_id != $active_window_id ]
then
wname=$(xdotool getwindowname $window_id)
if [ "$wname" != "" ] && [ "$wname" != "plank" ] && [ "$wname" != "io.elementary.wingpanel" ]
then
echo $wname
xdotool windowminimize $window_id
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment