This commit is contained in:
Brian Zalewski 2024-01-02 01:33:01 +00:00
parent 1fb6bf5d72
commit 307846ecd5
2 changed files with 3 additions and 2 deletions

View file

@ -214,6 +214,7 @@ diff:
- "--paging"
- never
exclude:
- directory
- externals
- scripts
edit:

View file

@ -128,8 +128,8 @@ disableDStoreFileCreation() {
# @description Enables transparent dark-mode on macOS
enableDarkTransparentMode() {
if command -v m > /dev/null; then
logg info 'Enabling dark mode' && m appearance darkmode YES
logg info 'Enabling theme transparency' && m appearance transparency YES
logg info 'Enabling dark mode' && m appearance darkmode YES > /dev/null
logg info 'Enabling theme transparency' && m appearance transparency YES > /dev/null
fi
}