This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # An oven timer. This script uses the "notify-send" program to display a | |
| # message after a certain amount of time specified as command line arguments. | |
| # It optionally plays a sound using "mplayer" after calling "notify-send". | |
| # Waiting time can be specified in a user friendly (hours : minutes : seconds) | |
| # format, e.g. "hh:mm:ss" or "mm:ss". | |
| # | |
| # Copyright (C) Ramin Honary 2014, all rights reserved. | |
| # Licensed under the GNU General Public License: | |
| # http://www.gnu.org/licenses/gpl.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env bash | |
| # Skip all of this if we don't have a TTY | |
| tty -s || return 0 | |
| # Colors + \[...\] wrapping to ensure there's no odd wrapping on command line | |
| C_OFF="\[$(tput sgr0)\]" | |
| C_BOLD="\[$(tput bold)\]" | |
| C_BLACK="\[$(tput setaf 0)\]" | |
| C_RED="\[$(tput setaf 1)\]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Data> | |
| <Series> | |
| <id>83462</id> | |
| <Actors>|Nathan Fillion|Stana Katic|Molly C. Quinn|Jon Huertas|Seamus Dever|Tamala Jones|Susan Sullivan|Ruben Santiago-Hudson|Monet Mazur|</Actors> | |
| <Airs_DayOfWeek>Monday</Airs_DayOfWeek> | |
| <Airs_Time>10:00 PM</Airs_Time> | |
| <ContentRating>TV-PG</ContentRating> | |
| <FirstAired>2009-03-09</FirstAired> | |
| <Genre>|Drama|</Genre> |