fine tune after powerline PR
This commit is contained in:
parent
b4869b3dc0
commit
52022a22a3
4 changed files with 5 additions and 2 deletions
|
@ -19,3 +19,4 @@ Customize the status bar by adding any of these lines to your .tmux.conf as desi
|
|||
* Disable network functionality: `set -g @dracula-show-network false`
|
||||
* Disable weather functionality: `set -g @dracula-show-weather false`
|
||||
* Switch from default fahrenheit to celsius: `set -g @dracula-show-fahrenheit false`
|
||||
* Enable powerline symbols: `set -g @dracula-show-powerline true`
|
||||
|
|
|
@ -14,6 +14,7 @@ Configuration and options can be found at [draculatheme.com/tmux](https://dracul
|
|||
|
||||
## Features
|
||||
|
||||
* Support for powerline
|
||||
* Day, date, time, timezone
|
||||
* Current location based on network with temperature and forecast icon (if available)
|
||||
* Network connection status and SSID
|
||||
|
|
|
@ -1 +1 @@
|
|||
☀ 18° Pleasanton, CA
|
||||
☁ 57° Pleasanton, CA
|
||||
|
|
|
@ -20,7 +20,8 @@ main()
|
|||
show_network=$(get_tmux_option "@dracula-show-network" true)
|
||||
show_weather=$(get_tmux_option "@dracula-show-weather" true)
|
||||
show_fahrenheit=$(get_tmux_option "@dracula-show-fahrenheit" true)
|
||||
show_powerline=$(get_tmux_option "@dracula-show-powerline" true)
|
||||
show_powerline=$(get_tmux_option "@dracula-show-powerline" false)
|
||||
|
||||
# Dracula Color Pallette
|
||||
white='#f8f8f2'
|
||||
gray='#44475a'
|
||||
|
|
Loading…
Reference in a new issue