From f7ac71e0328f61148894a97ee36ab2b99377c273 Mon Sep 17 00:00:00 2001 From: arock093 <44488583+arock093@users.noreply.github.com> Date: Sun, 23 Jun 2024 08:33:54 -0600 Subject: [PATCH 1/3] Add Mac solutions to README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ab5259..62f1303 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,16 @@ It adds wait times between mouse clicks. After a certain amount of clicks, the w It also requires capslock to be held. It can be a little frustrating sometimes but it can help you persist in learning more advanced keyboard shortcuts. -#### Mac Version Coming Soon -Script to disable dock and temporary show it. +#### Mac Version +There are a couple decent solutions for MacOS. +The first is to make the dock as small as possible. You can also move it to the side of your screen. +The second is to set the autohide delay to a longer amount of time. +For when you do still need to access the dock, you can get to it in Mission Control or set the delay to around 8 seconds. +This command will set the autohide delay time in seconds.\ +```defaults write com.apple.dock autohide-delay -float 1000; killall Dock```\ +This command will restore to the default behavior.\ +```defaults delete com.apple.dock autohide-delay; killall Dock```\ +I may also add a Script to temporary show the dock again using a keyboard shortcut. ## Installing First install AutoHotKey to be able to run the scripts. From 1fc9d679f12014b847b381d8f98ec67a473deed3 Mon Sep 17 00:00:00 2001 From: arock093 <44488583+arock093@users.noreply.github.com> Date: Sun, 23 Jun 2024 09:30:23 -0600 Subject: [PATCH 2/3] Update Mac solutions in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 62f1303..afd8f5f 100644 --- a/README.md +++ b/README.md @@ -51,10 +51,10 @@ It can be a little frustrating sometimes but it can help you persist in learning #### Mac Version There are a couple decent solutions for MacOS. The first is to make the dock as small as possible. You can also move it to the side of your screen. -The second is to set the autohide delay to a longer amount of time. -For when you do still need to access the dock, you can get to it in Mission Control or set the delay to around 8 seconds. +The second is to set the autohide delay to around 8 seconds or even a longer amount of time. +For when you do still need to access the dock quickly, you can get to it from Mission Control which can also be disabled if desired. This command will set the autohide delay time in seconds.\ -```defaults write com.apple.dock autohide-delay -float 1000; killall Dock```\ +```defaults write com.apple.dock autohide-delay -float 8; killall Dock```\ This command will restore to the default behavior.\ ```defaults delete com.apple.dock autohide-delay; killall Dock```\ I may also add a Script to temporary show the dock again using a keyboard shortcut. From 45a2741dd29f863c794f4e32551038625a3a29ec Mon Sep 17 00:00:00 2001 From: arock093 <44488583+arock093@users.noreply.github.com> Date: Sun, 23 Jun 2024 09:33:08 -0600 Subject: [PATCH 3/3] Add acknowledgement for Mac solutions to README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index afd8f5f..928c4d1 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,9 @@ This command will restore to the default behavior.\ ```defaults delete com.apple.dock autohide-delay; killall Dock```\ I may also add a Script to temporary show the dock again using a keyboard shortcut. +Acknowledgement\ +The Mac solutions were inspired by a post on Stack Exchange. You can view the original solutions [here](https://apple.stackexchange.com/questions/59556/is-there-a-way-to-completely-disable-dock). + ## Installing First install AutoHotKey to be able to run the scripts.