diff --git a/res/img/rpc-settings.png b/res/img/rpc-settings.png new file mode 100644 index 0000000..f4b9345 Binary files /dev/null and b/res/img/rpc-settings.png differ diff --git a/scene/settings.lua b/scene/settings.lua index 1187a03..c9663aa 100644 --- a/scene/settings.lua +++ b/scene/settings.lua @@ -8,11 +8,20 @@ local menu_screens = { TuningScene } +local settingsidle = { + "Tweaking some knobs", + "Tuning up", + "Adjusting options", + "Setting up", + "Setting the settings" +} + function SettingsScene:new() self.menu_state = 1 DiscordRPC:update({ - details = "In menus", - state = "Changing settings", + details = "In settings", + state = settingsidle[math.random(#settingsidle)], + largeImageKey = "settings", }) end @@ -62,4 +71,4 @@ function SettingsScene:onInputPress(e) end end -return SettingsScene \ No newline at end of file +return SettingsScene diff --git a/scene/title.lua b/scene/title.lua index 0a53cf6..ba159f9 100644 --- a/scene/title.lua +++ b/scene/title.lua @@ -23,6 +23,10 @@ local mainmenuidle = { "Having a nap", "In menus", "Bottom text", + "Trying to see all the funny rpc messages (maybe)", + "Not not not playing", + "AFK", + "Preparing for their next game" } function TitleScene:new() @@ -35,6 +39,7 @@ function TitleScene:new() DiscordRPC:update({ details = "In menus", state = mainmenuidle[math.random(#mainmenuidle)], + largeImageKey = "icon2", }) end