From 3eb0fccb06ac9ef8afc825ad8759afb1734faa40 Mon Sep 17 00:00:00 2001 From: 3gghead <3gghead.00@node303.com> Date: Wed, 28 Aug 2013 10:39:36 -0700 Subject: [PATCH] A quick and easy tweak for linux desktop users. --- Easy-pop-up-notifications-using-libnotify.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Easy-pop-up-notifications-using-libnotify.md diff --git a/Easy-pop-up-notifications-using-libnotify.md b/Easy-pop-up-notifications-using-libnotify.md new file mode 100644 index 0000000..89e1f7a --- /dev/null +++ b/Easy-pop-up-notifications-using-libnotify.md @@ -0,0 +1,7 @@ +Folks running qBittorrent on a linux desktop can easily setup pop-up alerts (among other things) triggered when a torrent download finishes. For the purpose of this example, let's assume a pop-up notice is the goal. + +The libnotify package should have both "notify-send" and "libnotify," the former being a CLI to the later. To incorporate it into your qBittorrent configuration, open the "Options" window and select the "Downloads" page. Enable the "Run an external program on torrent completion" check-box and enter the following into the command text-box: + +/usr/bin/notify-send -a /usr/bin/qbittorrent -i /usr/share/icons/hicolor/96x96/apps/qbittorrent.png -t 15000 "qBT Download Complete" "%n" + +This will cause a notification bubble containing the qBT icon, message and torrent name to display for 15 seconds. Of course you may want/need to change the paths or other settings to suit your needs. \ No newline at end of file