We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e4bc35 + e8be48e commit 0698e8fCopy full SHA for 0698e8f
scripts/handle_tmux_automatic_start/osx_enable.sh
@@ -65,6 +65,8 @@ main() {
65
local tmux_start_script_path="${CURRENT_DIR}/osx_${strategy}_start_tmux.sh"
66
67
local launchd_plist_file_content="$(template "$tmux_start_script_path" "$fullscreen_option_value")"
68
- echo "$launchd_plist_file_content" > "$osx_auto_start_file_path"
+ if ! diff "$osx_auto_start_file_path" <(echo "$launchd_plist_file_content") &>/dev/null ; then
69
+ echo "$launchd_plist_file_content" > "$osx_auto_start_file_path"
70
+ fi
71
}
72
main
0 commit comments