From a504b63dfaa23ac6ba420942f71d859630c03e0e Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 21 Feb 2026 18:45:07 -0500 Subject: refactor!: Unused Programs Removed Multiple unused programs have be removed. These programs were unmaintained, no longer functioning, and/or had no purpose anymore. BREAKING CHANGE: Multiple scripts removed --- scripts/theme | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 scripts/theme (limited to 'scripts/theme') diff --git a/scripts/theme b/scripts/theme deleted file mode 100755 index c6f0c2c..0000000 --- a/scripts/theme +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/zsh -# Switch to Solarized Dark if we are currently in dark mode -if [[ "$(uname -s)" == "Darwin" ]]; then - val=$(defaults read -g AppleInterfaceStyle 2>/dev/null) - if [[ $val == "Dark" ]]; then - osascript -e 'tell application "Terminal" - set current settings of tabs of windows to settings set "PaperColor-dark" # Theme name - end tell' - else - osascript -e 'tell application "Terminal" - set current settings of tabs of windows to settings set "PaperColor-light" # Theme name - end tell' - fi -fi -- cgit v1.2.3