-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move main method dedicated shell file
- Loading branch information
Showing
2 changed files
with
28 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
SCRIPT_SRC="$(dirname "${BASH_SOURCE[${#BASH_SOURCE[@]} - 1]}")" | ||
readonly SCRIPT_SRC | ||
CURRENT_DIR=$(cd "${SCRIPT_SRC}" >/dev/null 2>&1 && pwd) | ||
readonly CURRENT_DIR | ||
readonly THEME_OPTION="@tmux-gruvbox" | ||
readonly DEFAULT_THEME="dark" | ||
|
||
get_theme() { | ||
local option="$1" | ||
local default_value="$2" | ||
local option_value | ||
option_value=$(tmux show-option -gqv "$option") | ||
if [ -z "$option_value" ]; then | ||
echo "$default_value" | ||
else | ||
echo "$option_value" | ||
fi | ||
} | ||
|
||
main() { | ||
local theme | ||
theme=$(get_theme "$THEME_OPTION" "$DEFAULT_THEME") | ||
tmux source-file "$CURRENT_DIR/tmux-gruvbox-${theme}.conf" | ||
} | ||
|
||
main "$@" | ||
source "./src/gruvbox-main.sh" | ||
|
||
# vim: ai et ft=bash |
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,27 @@ | ||
#!/bin/bash | ||
|
||
SCRIPT_SRC="$(dirname "${BASH_SOURCE[${#BASH_SOURCE[@]} - 1]}")" | ||
readonly SCRIPT_SRC | ||
CURRENT_DIR=$(cd "${SCRIPT_SRC}" >/dev/null 2>&1 && pwd) readonly CURRENT_DIR | ||
readonly THEME_OPTION="@tmux-gruvbox" | ||
readonly DEFAULT_THEME="dark" | ||
|
||
get_theme() { | ||
local option="$1" | ||
local default_value="$2" | ||
local option_value | ||
option_value=$(tmux show-option -gqv "$option") | ||
if [ -z "$option_value" ]; then | ||
echo "$default_value" | ||
else | ||
echo "$option_value" | ||
fi | ||
} | ||
|
||
main() { | ||
local theme | ||
theme=$(get_theme "$THEME_OPTION" "$DEFAULT_THEME") | ||
tmux source-file "$CURRENT_DIR/tmux-gruvbox-${theme}.conf" | ||
} | ||
|
||
main "$@" |