dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 2921261bde4d2310bc417bb9a1d7c8ca91ae72b8
parent 55157bb6d69f38dd39aace31533b11dc5529ea15
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sun, 16 Dec 2018 16:17:28 +0100

Radio visualiser is off by default

Turn on by passing "-v" option on startup


Former-commit-id: 4b0e76f8ed457f0492b5c5f0dd99cdc3aed20b68
Diffstat:
Mbin/radio | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/radio b/bin/radio @@ -12,11 +12,11 @@ fi ## MAIN SCRIPT ## -VISUALISER=true -while getopts ":n" opt; do +VISUALISER=false +while getopts ":v" opt; do case ${opt} in - n ) - VISUALISER=false + v ) + VISUALISER=true esac done