bu en azından kde ve xfce için çalışır (gnome test edilmemiştir, ancak aynı zamanda işe yarayabilir):
1) wmctrl yükleyin
2) sonra şu adlı bir komut dosyası oluşturun close_windows.sh
:
# close all open windows gracefully without closing the Desktop environment
WIN_IDs=$(wmctrl -l | grep -vwE "Desktop$|xfce4-panel$" | cut -f1 -d' ')
for i in $WIN_IDs; do wmctrl -ic "$i"; done
# Keep checking and waiting until all windows are closed (you probably don't need this section)
while test $WIN_IDs; do
sleep 0.1;
WIN_IDs=$(wmctrl -l | grep -vwE "Desktop$|xfce4-panel$" | cut -f1 -d' ')
done
3) çalıştırılabilir yapın:chmod +x ./close_windows.sh
3) başlat menüsünde close_windows komut dosyasını işaret eden bir giriş oluşturun.
4) bu girişten close_windows komut dosyasını yürütün.
kaynak: https://forum.manjaro.org/index.php?topic=4412.0 :