terminal-notifier
installieren,- TV-Browser-Einstellungen öffnen,
- Plugins --> Erinnerer,
- "Applikation ausführen" aktivieren,
- "Konfigurieren" anklicken,
- Applikation:
/Applications/terminal-notifier.app/Contents/MacOS/terminal-notifier
, - Parameter:
-sender tvbrowser.TVBrowser -title "{title}" -message "{channel_name} / {leadingZero(start_hour, "1")}:{leadingZero(start_minute, "1")}Uhr" -subtitle "{episode}"
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
$colors: ( | |
1: $blog-navigation-color1, | |
2: $blog-navigation-color2, | |
3: $blog-navigation-color3, | |
4: $blog-navigation-color4, | |
5: $blog-navigation-color5 | |
); | |
@each $color in $colors { | |
$nr: nth($color, 1); | |
$color: nth($color, 2); |
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
// frontpage widget colors | |
$frontpage-widget-color1: #00B5CC; | |
$frontpage-widget-color2: $green; | |
$frontpage-widget-color3: #CC181E; // youtube-rot | |
$frontpage-widget-icon1: "\f086"; // comments | |
$frontpage-widget-icon2: "\f007"; // user | |
$frontpage-widget-icon3: "\f16a"; // youtube-play | |
$colors: ( |
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 | |
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787779 | |
exec /bin/ntfs-3g.orig ${*/-s/} |
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
--- | |
parser: "babel-eslint" | |
plugins: | |
- "react" | |
ecmaFeatures: | |
jsx: true | |
modules: true | |
spread: true | |
generators: true | |
env: |
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
web: | |
image: 'gitlab/gitlab-ce:8.17.3-ce.0' | |
restart: always | |
hostname: 'git.example.com' | |
environment: | |
GITLAB_OMNIBUS_CONFIG: | | |
external_url 'https://git.example.com' | |
nginx['listen_port'] = 80 | |
nginx['listen_https'] = false | |
nginx['proxy_set_headers'] = {"X-Forwarded-Proto" => "https","X-Forwarded-Ssl" => "on"} |
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/sh | |
if [ $# -eq 0 ]; | |
then echo -e "No arguments specified. Usage:\necho upload /tmp/test.md\ncat /tmp/test.md | upload test.md"; | |
return 1; | |
fi | |
tmpfile=$( mktemp -t uploadXXX ); | |
if tty -s; |
OlderNewer