dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit f290e3e486c2e10622f2542495cd85c556d6c134
parent 0fa29af813d37a44d90b4f6736357cc067622b9d
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed, 15 Jan 2020 12:13:58 +0100

Run curl in silent mode

Diffstat:
M.local/bin/lyrics | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/lyrics b/.local/bin/lyrics @@ -61,7 +61,7 @@ fetch_lyrics_lyricwiki() if command -v hurl >/dev/null 2>&1; then fetcher=hurl elif command -v curl >/dev/null 2>&1; then - fetcher=curl + fetcher="curl -s" else die 'hurl or curl not installed' fi