fixed a couple shebang typos
This commit is contained in:
parent
be0f37e5d0
commit
0b5735373b
2 changed files with 4 additions and 1 deletions
|
@ -18,9 +18,12 @@ main()
|
||||||
{
|
{
|
||||||
# set current directory variable
|
# set current directory variable
|
||||||
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
|
# set configuration option variables
|
||||||
show_battery=$(get_tmux_option "@dracula-show-battery" true)
|
show_battery=$(get_tmux_option "@dracula-show-battery" true)
|
||||||
show_network=$(get_tmux_option "@dracula-show-network" true)
|
show_network=$(get_tmux_option "@dracula-show-network" true)
|
||||||
show_weather=$(get_tmux_option "@dracula-show-weather" true)
|
show_weather=$(get_tmux_option "@dracula-show-weather" true)
|
||||||
|
fahrenheit=$(get_tmux_option "@dracula-fahrenheit" true)
|
||||||
|
|
||||||
# Dracula Color Pallette
|
# Dracula Color Pallette
|
||||||
white='#f8f8f2'
|
white='#f8f8f2'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
#wrapper script for running weather on interval
|
#wrapper script for running weather on interval
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue