aboutsummaryrefslogtreecommitdiff
path: root/plugins/i18n_subsites/test_data/output/de/drafts/an-untranslated-article-en.html
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2013-06-17 22:20:59 +0200
committerSébastien Dailly <sebastien@chimrod.com>2013-06-22 16:42:08 +0200
commit09545394a9939358087a8b263ba7a74a02e01765 (patch)
tree52c7468e594876b0f1c27d064633e067c9475e60 /plugins/i18n_subsites/test_data/output/de/drafts/an-untranslated-article-en.html
parent5286cd3a70193af8d04f6d0788c72106e42016d6 (diff)
Connecting turntable with linux
Diffstat (limited to 'plugins/i18n_subsites/test_data/output/de/drafts/an-untranslated-article-en.html')
0 files changed, 0 insertions, 0 deletions
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh

set -u
set -e

tmpdir=$(mktemp -d)

on_exit() {
    rm -r "${tmpdir}"
}

on_preExit() {
    on_exit
}

trap on_exit EXIT                           # EXIT = 0
trap on_preExit HUP INT QUIT TERM STOP PWR  # 1 2 3 15 30

if [ -z ${1+x} ]; then
    # We are using dash, the process substitution syntax is not allowed
    # sort -u <(…) <(…)
    # so, we are using pipes for that
    mkfifo ${tmpdir}/p1 ${tmpdir}/p2
    echo "Chat\nWeb\nMail\nmusique\nDiscord" > "${tmpdir}/p1" &
    bspc query --names -D > "${tmpdir}/p2" &
    sort -u "${tmpdir}/p1" "${tmpdir}/p2"
else
  ~/scripts/sxhkd/show.sh $1
fi