-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3b58ba
commit cc3013c
Showing
5 changed files
with
91 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env bash | ||
|
||
#Tokyo Night Day Pallet | ||
declare -A PALLETE=( | ||
[none]="NONE" | ||
[bg]="#1a1b26" | ||
[bg_dark]="#16161e" | ||
[bg_highlight]="#292e42" | ||
[terminal_black]="#414868" | ||
[fg]="#c0caf5" | ||
[fg_dark]="#a9b1d6" | ||
[fg_gutter]="#3b4261" | ||
[dark3]="#545c7e" | ||
[comment]="#565f89" | ||
[dark5]="#737aa2" | ||
[blue0]="#3d59a1" | ||
[blue]="#7aa2f7" | ||
[cyan]="#7dcfff" | ||
[blue1]="#2ac3de" | ||
[blue2]="#0db9d7" | ||
[blue5]="#89ddff" | ||
[blue6]="#b4f9f8" | ||
[blue7]="#394b70" | ||
[magenta]="#bb9af7" | ||
[magenta2]="#ff007c" | ||
[purple]="#9d7cd8" | ||
[orange]="#ff9e64" | ||
[yellow]="#e0af68" | ||
[green]="#9ece6a" | ||
[green1]="#73daca" | ||
[green2]="#41a6b5" | ||
[teal]="#1abc9c" | ||
[red]="#f7768e" | ||
[red1]="#db4b4b" | ||
[white]="#ffffff" | ||
) | ||
|
||
export PALLETE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# shellcheck disable=SC2005 | ||
|
||
plugin_datetime_icon=$(get_tmux_option "@theme_plugin_datetime_icon" "") | ||
plugin_datetime_accent_color=$(get_tmux_option "@theme_plugin_datetime_accent_color" "blue7") | ||
plugin_datetime_accent_color_icon=$(get_tmux_option "@theme_plugin_datetime_accent_color_icon" "blue0") | ||
|
||
# https://man7.org/linux/man-pages/man1/date.1.html | ||
plugin_datetime_format=$(get_tmux_option "@theme_plugin_datetime_format" "%F") | ||
plugin_datetime_format=$(get_tmux_option "@theme_plugin_datetime_format" "%c") | ||
|
||
function load_plugin() { | ||
echo "$(date +"${plugin_datetime_format}")" | ||
echo "${plugin_datetime_format}" | ||
} | ||
|
||
export plugin_datetime_icon plugin_datetime_accent_color plugin_datetime_accent_color_icon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# shellcheck disable=SC2005 | ||
plugin_weather_icon=$(get_tmux_option "@theme_plugin_weather_icon" "") | ||
plugin_weather_accent_color=$(get_tmux_option "@theme_plugin_weather_accent_color" "blue7") | ||
plugin_weather_accent_color_icon=$(get_tmux_option "@theme_plugin_weather_accent_color_icon" "blue0") | ||
|
||
# https://man7.org/linux/man-pages/man1/date.1.html | ||
plugin_weather_format=$(get_tmux_option "@theme_plugin_weather_format" "%c") | ||
|
||
function load_plugin() { | ||
echo "${plugin_weather_format}" | ||
} | ||
|
||
export plugin_weather_icon plugin_weather_accent_color plugin_weather_accent_color_icon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters