web-dev-qa-db-ja.com

Gnomeのロック画面に通知送信コンテンツを表示する

Gnome 3.20のロック画面で、通知送信メッセージの内容を表示する方法を探しています。通常、これは[設定]> [通知]で設定されますが、「通知-送信」については言及されておらず、インストールされているアプリのみが言及されています。

特にorg.gnome.desktop.notifications application-children ['org-gnome-software', 'firefox', 'org-gnome-pomodoro', 'gnome-Tweak-tool', 'evolution', 'ca-desrt-dconf-editor']の下でdconfを使用しても、あまり役に立ちませんでした。

私の通知送信スクリプトは、別のファイルからフェッチされた確認を30分ごとに表示します。

#!/bin/bash
while : ; do
    notify-send -i /usr/share/icons/gnome/scalable/emotes/face-smile-big-symbolic.svg --hint int:transient:1 "$(sort -R ~/Sonstiges/Affirmationen/Affirmationen.txt | head -n 1)"
    sleep 30m           # Zeit in Minuten
done

これを達成する方法はありますか?

2
DMT

Gnome IRC Channel のChris Williams(chrisawi)のおかげで、次の解決策が見つかりました:

次の内容の/.local/bin/notifierというスクリプトを作成します。

#!/usr/bin/python3

# License: MIT
# Author: Chris Williams

APP_ID = "com.example.Notifier"

import sys
from gi.repository import GLib, GObject, Gio

class Notifier(Gio.Application):
    def __init__(self):
        Gio.Application.__init__(self, application_id=APP_ID, flags=Gio.ApplicationFlags.HANDLES_COMMAND_LINE)
        self.set_option_context_parameter_string ("ID TITLE [MESSAGE...]")
        self.add_main_option("icon", ord('i'), GLib.OptionFlags.NONE, GLib.OptionArg.STRING, "Icon name or file", None)
        #self.add_main_option("quit", ord('q'), GLib.OptionFlags.NONE, GLib.OptionArg.NONE, "Quit", None)
        self.add_main_option(GLib.OPTION_REMAINING, 0, GLib.OptionFlags.NONE, GLib.OptionArg.STRING_ARRAY, "", None)

    def do_command_line(self, cl):
        Gio.Application.do_command_line(self, cl)
        opts = cl.get_options_dict().end().unpack()

        #if opts.get("quit"):
        #    self.quit()

        args = opts.get(GLib.OPTION_REMAINING, [])
        if len(args) >= 2:
            notification = Gio.Notification()
            notification.set_title(args[1])

            if len(args) >= 3:
                notification.set_body(" ".join(args[2:]))

            icon_str = opts.get("icon")
            if icon_str:
                try:
                    icon = Gio.Icon.new_for_string(icon_str)
                except GLib.Error as e:
                    if not e.matches(Gio.io_error_quark(), Gio.IOErrorEnum.INVALID_ARGUMENT):
                        raise
                else:
                    notification.set_icon(icon)

            self.send_notification(args[0], notification)
        else:
            print ("not enough arguments")

        return 0

if __name__ == '__main__':
    app = Notifier()
    app.run(sys.argv)

/.local/bin/にもある元の通知送信スクリプトでそれを言及します。

#!/bin/bash
while : ; do
    notifier -i emote-love-symbolic idxyz "$(sort -R ~/Sonstiges/Affirmationen/Affirmationen.txt | head -n 1)"
    sleep 30m   # time in minutes
done

起動時にこのスクリプトを実行する場合は、.desktopまたは/.local/share/applications//.config/autostart/ファイルを作成する必要もあります。 /affirmationen.desktop/.config/autostart/は次のようになります。

[Desktop Entry]
Name=Affirmationen
Exec=affirmationen
Icon=emote-love-symbolic
Type=Application
StartupNotify=true
Hidden=false
NoDisplay=false
Terminal=false
X-GNOME-UsesNotifications=true
X-GNOME-Autostart-enabled=true

楽しい!

0
DMT