Re: [orca-list] Addons



Howdy,

SOPS already provides an script for that using weather-util (location needs to be changed in the script i attach it below)

but you can also use notify-send (what will result in having a lot of new notifications i think)
notify-send test

or pipe the result to spd-say (what will not use orca speech settings, may not be a problem to set it up if you do not use different settings here)

or you can fire a window with the information using yad or an similar tool

cheers chrys

<weather script>
#!/bin/bash
# this presents the weather
# change the city to yours (see manual)
# for this you need weather-util
# in Arch the AUR package is called weather
# in Debian, Mint and Ubuntu its called weather-util
# this is the default of the software

if [ -e /usr/bin/weather ]; then
    weather nuernberg | tail -n  +5
fi

#sadly in arch it is renamed caused by an fileconflict so we have to check
if [ -e /usr/bin/weather-report ]; then
    weather-report nuernberg | tail -n  +5
fi
</weather script>

Am 22.03.2018 um 09:24 schrieb Arkadiusz Kozioł:
Hello.

Must I install SImple orca plugin systems to write small script getting weather information to orca? Can i do it in other methods?

_______________________________________________
orca-list mailing list
orca-list gnome org
https://mail.gnome.org/mailman/listinfo/orca-list
Orca wiki: https://wiki.gnome.org/Projects/Orca
Orca documentation: https://help.gnome.org/users/orca/stable/
GNOME Universal Access guide: https://help.gnome.org/users/gnome-help/stable/a11y.html
Log bugs and feature requests at http://bugzilla.gnome.org




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]