From 6a54f1fba7856f6329765eb579aef59d99045d61 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com> Date: Mon, 22 May 2023 00:23:27 +0530 Subject: [PATCH] hsmodule: remove unnecessary welcome notification --- extensions/_coresetup/_coresetup.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/_coresetup/_coresetup.lua b/extensions/_coresetup/_coresetup.lua index cb21dbff8..bf29f029c 100644 --- a/extensions/_coresetup/_coresetup.lua +++ b/extensions/_coresetup/_coresetup.lua @@ -617,7 +617,6 @@ coroutine.applicationYield = hs.coroutineApplicationYield if not hasinitfile then require("hs.osascript") - local notify = require("hs.notify") local printf = hs.printf bundlePath = hs.processInfo["bundlePath"] if bundlePath == "/Applications/Live Enhancement Suite.app" then @@ -628,7 +627,6 @@ coroutine.applicationYield = hs.coroutineApplicationYield ]], "Ok", "", "critical") os.exit() end - notify.show("Live Enhancement Suite", "Welcome to LES!", "Please wait a moment while we set get things ready...") bundlePath = bundlePath:gsub(" ", "\\ ") -- Escape character for spaces to make shell happy copyExecInstruction = "cp " .. bundlePath .. "/Contents/Resources/extensions/hs/les/jumpstart.lua ~/.les/init.lua" os.execute("zsh -c \"" .. copyExecInstruction .. "\"")