santiago / windowfix.sh

0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív 1747055827
Resize and remove window decoration on PopOS and Linux desktops (from stack overflow)
1 #!/usr/bin/env zsh
2
3
4 wait_find_window_id() {
5 while true; do
6 window_id=$(wmctrl -l | grep "$1" | awk '{print $1}')
7 if [ -n "$window_id" ]; then
8 echo "$window_id"
9 return
10 fi
Újabb Régebbi