Bar, Panels, Conky, Notifications - Desktop Customization & Workflow

Users browsing this thread: 1 Guest(s)
stratex
Nixers
You can also use a regular terminal window and a cronjob to do your notifications, my own weather example (bash):
Code:
#!/bin/bash
urxvtc -bg "#232323" -fg "#909090" -name notification -geometry 33x7+2230+60 -e /bin/bash -c "echo -en '\e[?25l\033]0;\n' ; curl wttr.in/new-york?Q0 ; sleep 5"

you need to make it floating and not focusable by your WM:
Code:
bspc rule -a URxvt:notification focus=off manage=off state=floating

This one should be POSIX complaint variant:
Code:
#!/bin/sh
urxvtc -name notification -geometry 33x7+2230+60 -e /bin/sh -c "tput civis ; echo '\n' ; curl wttr.in/new-york?Q0 ; sleep 5"


Messages In This Thread
Bar, Panels, Conky, Notifications - by venam - 05-03-2019, 06:13 AM
RE: Bar, Panels, Conky, Notifications - by venam - 05-03-2019, 06:41 AM
RE: Bar, Panels, Conky, Notifications - by mort - 05-03-2019, 10:12 AM
RE: Bar, Panels, Conky, Notifications - by venam - 06-03-2019, 02:29 AM
RE: Bar, Panels, Conky, Notifications - by venam - 06-03-2019, 02:03 PM
RE: Bar, Panels, Conky, Notifications - by venam - 10-03-2019, 05:54 AM
RE: Bar, Panels, Conky, Notifications - by stratex - 02-12-2020, 07:58 PM
RE: Bar, Panels, Conky, Notifications - by Dworin - 02-12-2020, 11:43 PM
RE: Bar, Panels, Conky, Notifications - by Dworin - 03-12-2020, 01:36 AM
RE: Bar, Panels, Conky, Notifications - by pfr - 03-12-2020, 11:21 PM
RE: Bar, Panels, Conky, Notifications - by pfr - 03-12-2020, 11:46 PM