this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Small kinto tweaks and check in start VBS

+14
+1
.gitignore
··· 15 15 !/.termux/ 16 16 !/.vim/ 17 17 !/.vscode/ 18 + !/.kinto/ 18 19 19 20 # Naming convention for certain yadm alt files 20 21 *.local
+7
.kinto/kinto-start.vbs
··· 1 + Set oShell = CreateObject("Shell.Application") 2 + Set wShell = WScript.CreateObject("WScript.Shell") 3 + Set fso = CreateObject("Scripting.FileSystemObject") 4 + 5 + path = wShell.ExpandEnvironmentStrings("""%userprofile%") 6 + strFolder = fso.BuildPath( path, "\.kinto\kinto.ahk"" win") 7 + oShell.ShellExecute "C:\Program Files\AutoHotkey\AutoHotkey.exe", strFolder, , , 0
+6
.kinto/kinto.ahk
··· 146 146 GroupAdd, terminals, Fluent Terminal ahk_class ApplicationFrameWindow 147 147 GroupAdd, terminals, ahk_class Console_2_Main 148 148 149 + ;; Vscode has integrated terminal and neovim bindings which act similar to terminals: 150 + GroupAdd, terminals, ahk_exe Code.exe 151 + 149 152 GroupAdd, posix, ahk_exe ubuntu.exe 150 153 GroupAdd, posix, ahk_exe ubuntu2004.exe 151 154 GroupAdd, posix, ahk_exe ConEmu.exe ··· 156 159 GroupAdd, posix, Fluent Terminal ahk_class ApplicationFrameWindow 157 160 GroupAdd, posix, ahk_class Console_2_Main 158 161 GroupAdd, posix, ahk_exe WindowsTerminal.exe 162 + 163 + ;; Vscode has integrated terminal and neovim bindings which act similar to posix: 164 + GroupAdd, posix, ahk_exe Code.exe 159 165 160 166 GroupAdd, ConEmu, ahk_exe ConEmu.exe 161 167 GroupAdd, ConEmu, ahk_exe ConEmu64.exe