Compare commits

..

No commits in common. '82d6ef17f723967b0d9dd103c768d9495e116e50' and '6b3c2c56f901246f9bb42a5ce49e37cf5919f45a' have entirely different histories.

  1. 2
      git/global.gitconfig
  2. 10
      hammerspoon/Spoons/BingDaily.spoon/init.lua

2
git/global.gitconfig

@ -137,5 +137,3 @@
defaultBranch = master
[log]
date = local
[http]
postBuffer = 524288000

10
hammerspoon/Spoons/BingDaily.spoon/init.lua

@ -71,13 +71,9 @@ local function bingRequest()
end
function create_dir(path)
if hs.fs.displayName(path) == nil then
local result = hs.fs.mkdir(path)
if result == true then
log.i("path: " .. path .. " create successfully!")
else
log.i("path: " .. path .. " create failed!")
end
if hs.fs.dir(path) == nil then
hs.fs.mkdir(path)
log.i("path: " .. path .. " create successfully!")
end
end

Loading…
Cancel
Save