Skip to content

Commit

Permalink
fix: incorrect path for themes
Browse files Browse the repository at this point in the history
  • Loading branch information
egel committed Sep 19, 2024
1 parent 23bbbfc commit 6595a51
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion gruvbox-tpm.tmux
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash

source "./src/gruvbox-main.sh"
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${CURRENT_DIR}/src/gruvbox-main.sh"

# vim: ai et ft=bash
5 changes: 2 additions & 3 deletions src/gruvbox-main.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/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
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly CURRENT_DIR
readonly THEME_OPTION="@tmux-gruvbox"
readonly DEFAULT_THEME="dark"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6595a51

Please sign in to comment.