Application

Reopen last chat on launch

Open the same server and text channel the next time MetoYou starts.

Launch on system startup

@if (isElectron) {

Automatically start MetoYou when you sign in

} @else {

This setting is only available in the desktop app.

}

Minimize to tray on close

@if (isElectron) {

Keep MetoYou running in the tray when you click the X button

} @else {

This setting is only available in the desktop app.

}

Experimental VLC.js playback

@if (experimentalMedia.vlcJsRuntimeStatus() === 'checking') {

Checking for a bundled VLC.js runtime...

} @else if (experimentalMedia.vlcJsRuntimeAvailable()) {

Offer a manual player for unsupported downloaded audio and video files.

} @else {

No VLC.js runtime is bundled. Unsupported desktop media can be opened in the system player.

}
@if (isElectron) {

Game detection

MetoYou prefers the currently focused window when detecting your game. Add process names here to permanently hide apps that get mistakenly identified as games (e.g. "spotify", "obs64"). Entries are matched case-insensitively against the executable name without its extension.

@if (ignoredGameProcesses().length === 0) {

No ignored processes yet.

} @else {
    @for (entry of ignoredGameProcesses(); track entry) {
  • {{ entry }}
  • }
}
}