Tutorial  Updated

How-To Start Discord Minimized

Because of the way that Discord was built, the only time you can minimize it is when the actual chat form opens. The beginning update splash page is not part of the main form, so we need to wait for the main chat form. Also you can't give the chat form the command to minimize as it doesn't use the standard winform code. So we give it the taskkill command which Discord intercepts and minimizes to system tray instead of closing.

1) Right click on the Discord system tray icon and uncheck the start when windows starts option.

2) Make a .bat file with the following content:

Code:
@Echo off
start /wait %LOCALAPPDATA%\Discord\Update.exe --processStart Discord.exe

@For /f "Delims=:" %%A in ('tasklist /v /fi "WINDOWTITLE eq Discord"') do @if %%A==INFO echo Prog not running

timeout 10

taskkill /IM discord.exe

3) Put the .bat file in your "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup" folder.

Now Discord will minimize after 10 seconds after it starts up. You can shrink the time by altering the "timeout" function.

If you want an already made batch file visit https://newagesoldier.com/how-to-minimize-discord-on-startup/
 
Last edited by Erfg1,
  • Like
Reactions: Tumoche and spkuja
Obviously SOMEONE wanted this or maybe someone wouldn't have come up with a way to do so. :P

But i just use discord in my chrome web browser, it allow live notifications via windows popup on bottom left of screen, which is nice, no need to install any apps. :)
 
  • Like
Reactions: Enovale
Obviously SOMEONE wanted this or maybe someone wouldn't have come up with a way to do so. :P

But i just use discord in my chrome web browser, it allow live notifications via windows popup on bottom left of screen, which is nice, no need to install any apps. :)
I got a GBAtemp chrome extension which gives me real time notifications and I love it :)
 
Cause it never worked for me, so i uninstalled it. I put it in, and it just does nothing, so i removed it. No notifications or anything. But is not the proper thread to discuss that, so i'll leave it alone.:unsure:
Yeah, not the place or time, but I had to put in some settings and it worked, I can try to see what it is and pm you if you want
 
Because of the way that Discord was built, the only time you can minimize it is when the actual chat form opens. The beginning update splash page is not part of the main form, so we need to wait for the main chat form. Also you can't give the chat form the command to minimize as it doesn't use the standard winform code. So we give it the taskkill command which Discord intercepts and minimizes to system tray instead of closing.

1) Right click on the Discord system tray icon and uncheck the start when windows starts option.

2) Make a .bat file with the following content:

Code:
@Echo off
start /wait %LOCALAPPDATA%\Discord\Update.exe --processStart Discord.exe

@For /f "Delims=:" %%A in ('tasklist /v /fi "WINDOWTITLE eq Discord"') do @if %%A==INFO echo Prog not running

timeout 10

taskkill /IM discord.exe

3) Put the .bat file in your "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup" folder.

Now Discord will minimize after 10 seconds after it starts up. You can shrink the time by altering the "timeout" function.

If you want an already made batch file visit https://newagesoldier.com/how-to-minimize-discord-on-startup/


Thanks for this! It really bugs me that discord starts as a full window.
 
Discord looks like shit.png
Yeah... the Linux version doesn't.
 
Last edited by hobbledehoy899,
@hobbledehoy899 Try this for Linux (make a .sh file with +x permissions)

Code:
#!/bin/sh 
until wmctrl -F -c "Discord"; do sleep 2; done & 
exec /usr/share/discord-canary/DiscordCanary
 
The hell is that supposed to do? All I get is "./dis.sh: 3: exec: /usr/share/discord-canary/DiscordCanary: not found"
As far as I can tell it does the same thing as the batch file.
Canary is the beta build. I suppose you would just replace it with the path to your discord binary.
 
  • Like
Reactions: hobbledehoy899

Site & Scene News

Popular threads in this forum