From 3354c1c8f13c722d0e66c5cc63b3a0fa79afc026 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Sat, 15 Apr 2023 10:48:43 -0700 Subject: [PATCH 1/3] ignore windows stuff --- .gitignore | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c77e864..f5f9868 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,30 @@ src/calva-fmt/atom-language-clojure/.cache/ src/calva-fmt/atom-language-clojure/.bash_history # Leiningen -.lein-repl-history \ No newline at end of file +.lein-repl-history + + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk From 7a2bb306fd5ef7f7cfe9f1289627967f4ceff326 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Sat, 15 Apr 2023 10:51:41 -0700 Subject: [PATCH 2/3] add stuff from win --- .gitignore | 1 + config/ahk/BasicUtils.ahk | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f5f9868..5c1573d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # other stuff *.swp +*.exe # General .DS_Store diff --git a/config/ahk/BasicUtils.ahk b/config/ahk/BasicUtils.ahk index 0b70100..d52fff9 100644 --- a/config/ahk/BasicUtils.ahk +++ b/config/ahk/BasicUtils.ahk @@ -80,9 +80,11 @@ FocusOrOpen(name, launchExec:=-1) Run, %launchExec% } -^!e::FocusOrOpen("gvim.exe", "gvim.bat") +; ^!e::FocusOrOpen("gvim.exe", "gvim.bat") +^!e::FocusOrOpen("code.exe", "code.cmd") ^!v::FocusOrOpen("code.exe", "code.cmd") ^!t::FocusOrOpen("windowsterminal.exe", "wt.exe") ^!o::FocusOrOpen("Obsidian.exe", "Obsidian") -^!w::FocusOrOpen("brave.exe") +^!w::FocusOrOpen("firefox.exe") +^!s::FocusOrOpen("signal.exe") From 2b18907902b816adb391a618b819175faa9ecd3d Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Sat, 15 Apr 2023 13:46:27 -0700 Subject: [PATCH 3/3] windows config update --- config/ahk/BasicUtils.ahk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config/ahk/BasicUtils.ahk b/config/ahk/BasicUtils.ahk index d52fff9..ec64973 100644 --- a/config/ahk/BasicUtils.ahk +++ b/config/ahk/BasicUtils.ahk @@ -85,6 +85,9 @@ FocusOrOpen(name, launchExec:=-1) ^!v::FocusOrOpen("code.exe", "code.cmd") ^!t::FocusOrOpen("windowsterminal.exe", "wt.exe") ^!o::FocusOrOpen("Obsidian.exe", "Obsidian") -^!w::FocusOrOpen("firefox.exe") -^!s::FocusOrOpen("signal.exe") +^!w::FocusOrOpen("brave.exe") +^!s::FocusOrOpen("signal.exe", "Signal") +^!m::FocusOrOpen("spotify.exe", "Spotify") +^!j::FocusOrOpen("idea.exe", "idea.bat") +^!n::FocusOrOpen("nvim-qt.exe", "nvim-qt")