From 52022a22a395dec672680f35e3d3a83c7f4ffdd0 Mon Sep 17 00:00:00 2001 From: Dane Williams Date: Thu, 14 May 2020 23:47:21 -0700 Subject: [PATCH] fine tune after powerline PR --- INSTALL.md | 1 + README.md | 1 + data/weather.txt | 2 +- scripts/dracula.sh | 3 ++- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 0885555..9ccb56b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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` diff --git a/README.md b/README.md index 94fcca8..cefd29f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/data/weather.txt b/data/weather.txt index 0536cf7..33ebd70 100644 --- a/data/weather.txt +++ b/data/weather.txt @@ -1 +1 @@ -☀ 18° Pleasanton, CA +☁ 57° Pleasanton, CA diff --git a/scripts/dracula.sh b/scripts/dracula.sh index 1c32ecf..99457e4 100755 --- a/scripts/dracula.sh +++ b/scripts/dracula.sh @@ -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'