This commit is contained in:
Brian Zalewski 2023-12-25 04:12:21 +00:00
parent 5798024e5d
commit e092fe9eba
3 changed files with 33 additions and 33 deletions

View file

@ -490,9 +490,9 @@ enableAutoUpdateDarwin() {
ensurePipUpdated() { ensurePipUpdated() {
### python3.10 pip update ### python3.10 pip update
if command -v python3.10 > /dev/null; then # if command -v python3.10 > /dev/null; then
logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip & # logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip &
fi # fi
### python3.11 pip update ### python3.11 pip update
if command -v python3.11 > /dev/null; then if command -v python3.11 > /dev/null; then

View file

@ -685,9 +685,6 @@ defaults write com.apple.terminal SecureKeyboardEntry -bool true
# Disable the annoying line marks # Disable the annoying line marks
defaults write com.apple.Terminal ShowLineMarks -int 0 defaults write com.apple.Terminal ShowLineMarks -int 0
# Install the Solarized Dark theme for iTerm
# open "${HOME}/init/Solarized Dark.itermcolors"
# Dont display the annoying prompt when quitting iTerm # Dont display the annoying prompt when quitting iTerm
defaults write com.googlecode.iterm2 PromptOnQuit -bool false defaults write com.googlecode.iterm2 PromptOnQuit -bool false

View file

@ -676,6 +676,8 @@ apply_konsole() {
} }
apply_darwin() { apply_darwin() {
### Skip iTerm.app terminal theme because it is already stored in ~/Library/Preferences
if [ "$TERM_PROGRAM" != "iTerm.app" ]; then
# | # |
# | Applying values on iTerm2 # | Applying values on iTerm2
# | =========================================== # | ===========================================
@ -706,6 +708,7 @@ apply_darwin() {
echo "${ITERMCOLORS}" > "${PROFILE_NAME}.itermcolors" echo "${ITERMCOLORS}" > "${PROFILE_NAME}.itermcolors"
open "${PROFILE_NAME}.itermcolors" open "${PROFILE_NAME}.itermcolors"
rm "${PROFILE_NAME}.itermcolors" rm "${PROFILE_NAME}.itermcolors"
fi
} }
apply_gtk() { apply_gtk() {