2

假设我想在一个工作区中运行

sleep 10 && zenity --warning --text 'Wake up!'

然后我在不同的工作区处理其他东西。如何在我所在的任何工作区而不是我输入命令的原始工作区中弹出这个 zenity 窗口?还是更容易让它在所有工作区中弹出?

4

2 回答 2

4

我还没有找到一种优雅的方式来同时在所有工作区中弹出这样的对话框(多路复用),但是在一些摆弄之后发现它wmctrl可以让你设置一个窗口的位置、大小和(最重要的是)让它在当前活动的工作区。

在我的具体情况下,我需要它也适用于计划通过的通知cronat这需要稍微不同的方法,如以下 shellscript 所示:

#!/usr/bin/env bash
## demo of how to raise a zenity-notification on the active workspace
## license: MIT  copyright: antiplex

export DISPLAY=:0.0

## start wmctrl with a delay in subshell
(sleep 1; wmctrl -r TimedWarning -e 0,40,30,-1,-1; wmctrl -R TimedWarning) &

## launch a zenity dialogue of your choice
zenity --warning --title="TimedWarning" --text="Time is up!" --display=:0.0

at出于某种奇怪的原因,上面的脚本还会在使用终端进行调度并且终端仍处于打开状态时,将我从中安排执行的终端窗口拉到活动工作区。

这是另一个使用通知守护进程/libnotify(libnotify-bin在基于 debian 的系统上检查包)的变体,它也不会在活动工作区上启动终端:

#!/usr/bin/env bash
## demo of how to raise a non-volatile libnotify-notification 
## on the currently active workspace
## license: MIT  copyright: antiplex

export DISPLAY=:0.0

## critical notifications with expire time 0 need to be manually confirmed
notify-send --expire-time 0 -u critical TimedWarning "Time is up!"

## rename window title as notify-send would name all its windows 'notify-send'
wmctrl -r notify-send -T TimedWarning

## set new position in upper left corner, keeping the windows size
wmctrl -r TimedWarning -e "0,40,30,-1,-1"

## raise window on currently active workspace
wmctrl -R TimedWarning 
于 2013-11-14T22:54:45.017 回答
1

I've found a bit better way based on the antiplex's answer:

function alert {
    # https://stackoverflow.com/questions/18880524/how-do-i-raise-window-to-all-workspaces-automatically-in-gnome2-metacity/19990162#19990162
    export DISPLAY=:0.0

    name="TimedWarning"
    text="Time is up!"

    function set-properties() {
        while [ x"$(wmctrl -l | grep -i "$name")" = "x" ] ; do
            sleep 0.001
        done
        wmctrl -r $name -b add,sticky,above
    }
    zenity --warning --title="$name" --text="$text" --display=:0.0 &
    set-properties &
}
于 2014-12-07T17:31:35.570 回答