From 80b1385b62212cd5fdbb2428bcf31a57f0a3eb94 Mon Sep 17 00:00:00 2001 From: echo <91651232+exhq@users.noreply.github.com> Date: Fri, 21 Oct 2022 13:31:57 +0330 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/main.go b/main.go index 0e22c54..7fc0eef 100644 --- a/main.go +++ b/main.go @@ -20,6 +20,13 @@ func checkforconfigfolder() { } } +func termuxcheck() { + if strings.Contains(os.Getenv("OSTYPE"), "android") { + print("lmao go buy a pc broke ass mf 💀\n") + os.Exit(0) + } +} + func handleConfig() { _, folder := os.Stat(filepath.Dir(data.GetConfigFile())) _, file := os.Stat(data.GetConfigFile()) @@ -88,6 +95,7 @@ func handlePrint(action, format string, rest string) { } func main() { + termuxcheck() checkforconfigfolder() utils.Initargs() utils.Initcolor()