1 2 3 4 5 6 7 8 9 10 11
#!/bin/bash if [ -z ${VISUAL+x} ]; then if [ -z ${EDITOR+x} ]; then echo 'Please set the VISUAL or EDITOR environment variable' else $EDITOR /etc/auralux-visualizer-git/viz.conf fi else $VISUAL /etc/auralux-visualizer-git/viz.conf fi