mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-18 01:29:06 +00:00
16 lines
172 B
Bash
Executable File
16 lines
172 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# OSX defaults overrides
|
|
|
|
write_default() {
|
|
if ! is_mac; then
|
|
return 0
|
|
fi
|
|
|
|
name=$1
|
|
value=$2
|
|
defaults write -g $name $value
|
|
return $?
|
|
}
|
|
|