diff --git a/apps/crafter.lua b/apps/Crafter.lua similarity index 99% rename from apps/crafter.lua rename to apps/Crafter.lua index d73166c..22d8d7e 100644 --- a/apps/crafter.lua +++ b/apps/Crafter.lua @@ -10,13 +10,10 @@ local Terminal = require('terminal') local Util = require('util') local colors = _G.colors -local multishell = _ENV.multishell local os = _G.os local term = _G.term local turtle = _G.turtle -multishell.setTitle(multishell.getCurrent(), 'Crafter') - local config = { computerFacing = 'north', monitor = 'type/monitor', diff --git a/apps/Peripherals.lua b/apps/Devices.lua similarity index 97% rename from apps/Peripherals.lua rename to apps/Devices.lua index 1ab841f..e4f66ba 100644 --- a/apps/Peripherals.lua +++ b/apps/Devices.lua @@ -6,11 +6,8 @@ local UI = require('ui') local Util = require('util') local colors = _G.colors -local multishell = _ENV.multishell local peripheral = _G.peripheral -multishell.setTitle(multishell.getCurrent(), 'Devices') - --[[ -- PeripheralsPage -- ]] -- local peripheralsPage = UI.Page { grid = UI.ScrollingGrid { diff --git a/apps/Events.lua b/apps/Events.lua index 36ea739..1b1734c 100644 --- a/apps/Events.lua +++ b/apps/Events.lua @@ -7,7 +7,6 @@ local Util = require('util') local multishell = _ENV.multishell local os = _G.os -multishell.setTitle(multishell.getCurrent(), 'Events') UI:configure('Events', ...) local page = UI.Page { diff --git a/apps/music.lua b/apps/Music.lua similarity index 98% rename from apps/music.lua rename to apps/Music.lua index 57d5768..c33f3ef 100644 --- a/apps/music.lua +++ b/apps/Music.lua @@ -7,10 +7,6 @@ local colors = _G.colors local device = _G.device local turtle = _G.turtle -local multishell = _ENV.multishell - -multishell.setTitle(multishell.getCurrent(), 'Music') - if not turtle then error('This program can only be run on a turtle') end diff --git a/apps/Script.lua b/apps/Script.lua index 1415e44..20c72f5 100644 --- a/apps/Script.lua +++ b/apps/Script.lua @@ -8,14 +8,12 @@ local Util = require('util') local colors = _G.colors local fs = _G.fs -local multishell = _ENV.multishell local os = _G.os local shell = _ENV.shell local GROUPS_PATH = 'usr/groups' local SCRIPTS_PATH = 'usr/etc/scripts' -multishell.setTitle(multishell.getCurrent(), 'Script') UI:configure('script', ...) local config = { diff --git a/apps/Turtles.lua b/apps/Turtles.lua index 6e132be..a91fd32 100644 --- a/apps/Turtles.lua +++ b/apps/Turtles.lua @@ -16,7 +16,6 @@ local os = _G.os local shell = _ENV.shell local term = _G.term -multishell.setTitle(multishell.getCurrent(), 'Turtles') UI.Button.defaults.focusIndicator = ' ' UI:configure('Turtles', ...) diff --git a/apps/builder.lua b/apps/builder.lua index 73189d9..c64b14c 100644 --- a/apps/builder.lua +++ b/apps/builder.lua @@ -15,7 +15,6 @@ local Util = require('util') local colors = _G.colors local fs = _G.fs -local multishell = _ENV.multishell local BUILDER_DIR = 'usr/builder' @@ -748,8 +747,6 @@ if not Builder.itemAdapter then error('A chest or ME interface must be below turtle') end -multishell.setTitle(multishell.getCurrent(), 'Builder') - subDB:load() UI.term:reset() diff --git a/apps/chestManager.lua b/apps/chestManager.lua index 34420eb..912d43e 100644 --- a/apps/chestManager.lua +++ b/apps/chestManager.lua @@ -20,7 +20,9 @@ local peripheral = _G.peripheral local term = _G.term local turtle = _G.turtle -multishell.setTitle(multishell.getCurrent(), 'Resource Manager') +if multishell then + multishell.setTitle(multishell.getCurrent(), 'Resource Manager') +end local config = { computerFacing = 'north', -- direction turtle is facing diff --git a/etc/fstab.ignore b/etc/fstab.ignore deleted file mode 100644 index 7c8538b..0000000 --- a/etc/fstab.ignore +++ /dev/null @@ -1 +0,0 @@ -forced fstab overwrite \ No newline at end of file