aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-03-05 21:07:32 -0500
committerAndrew Lee <alee14498@gmail.com>2019-03-05 21:07:32 -0500
commit6f9fb8cac10cfdf23e7ca3a154e501848c4b0674 (patch)
tree2a901c5266ac67643872bd96b09923de67143e13 /system
parent02217467562da991c5f3335d4847510ac312c981 (diff)
downloadbits-UI-6f9fb8cac10cfdf23e7ca3a154e501848c4b0674.tar.gz
bits-UI-6f9fb8cac10cfdf23e7ca3a154e501848c4b0674.tar.bz2
bits-UI-6f9fb8cac10cfdf23e7ca3a154e501848c4b0674.zip
Moved the config file to the home directory
Diffstat (limited to 'system')
-rw-r--r--system/boot.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/boot.lua b/system/boot.lua
index fd143c7..3361100 100644
--- a/system/boot.lua
+++ b/system/boot.lua
@@ -56,11 +56,11 @@ end
sleep(3)
-if fs.exists("/system/bitUI.config") then
+if fs.exists("/home/.config") then
term.setTextColor(colors.green)
print("[OK] Config has been found...")
else
- config = io.open("/system/bitUI.config", "w")
+ config = io.open("/home/.config", "w")
config:close()
term.setTextColor(colors.blue)
print("[INFO] Config has not been found!")