summaryrefslogtreecommitdiff
path: root/scripts/theme
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-02-21 18:45:07 -0500
commita504b63dfaa23ac6ba420942f71d859630c03e0e (patch)
tree9dff1f05c408fabfa5da7dcbfc5b901f14706af9 /scripts/theme
parentc82d20316320d8584f0a9fa1218f0e73d1fc4530 (diff)
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
Diffstat (limited to 'scripts/theme')
-rwxr-xr-xscripts/theme14
1 files changed, 0 insertions, 14 deletions
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