It is proposed to redesign the login screen #2342
Replies: 11 comments 22 replies
-
I have two ideas. Idea one. Advantages: less work as you only need to change the default values in xrdp.ini Idea two. Advantages: visually impressive big change |
Beta Was this translation helpful? Give feedback.
-
Colour scheme from mstsc.exe for Windows 10 and RDP login screen without background image.
I wanted to change the logo as well, but I have no graphic design background myself... |
Beta Was this translation helpful? Give feedback.
-
Thanks for this @TOMATO-ONE I'm away for a week or so. When I get back I'll give you my thoughts on the above. Hopefully others will comment too. |
Beta Was this translation helpful? Give feedback.
-
Hi, it sounds a good idea if we introduce new look. What about replacing xrdp logo on login dialog? The current one is also cool, I like the atom-like picture but it is jaggy and not scalable. This one is an unofficial one which I created years ago. I used it at xrdp users' group Japan. I own vector version of this logo. I think it suits modern UI like flat-design or material-design. |
Beta Was this translation helpful? Give feedback.
-
@metalefty @TOMATO-ONE Besides that it looks really good. For a local desktop i would like such wallpapers, but we are talking about remote ;-) therefor, causing less traffic is better in my opinion :-) |
Beta Was this translation helpful? Give feedback.
-
@Samoangtagey makes a good point about bandwidth. I think the default should be low bandwidth so as not to discourage new users with poor performance. Putting the above together, I get this. It's a test build so there's some funnies in it I've just noticed like an upper-case 'P' for password:- It's a great logo! Thoughts:-
Comments? |
Beta Was this translation helpful? Give feedback.
-
Also, here's the scaled one for higher-res screens which is what would happen with #2341 That's not using a scalable logo, but even so it looks pretty good. |
Beta Was this translation helpful? Give feedback.
-
@matt335672 I think this looks really nice and fits to actual used styles :-) |
Beta Was this translation helpful? Give feedback.
-
For reference, the Win10 RDP login screen looks like this (background colour = 0x003057) :- And the Win 11 RDP login screen looks like this (background colour = 0x000000) :- It's not something a lot of people will see as you have to disable NLA to get to it. For the Win 10 password screen background I get a background colour of 0x003157(?) For Win 11 I get 0x000000. I got the background colour numbers from snapshotting a VM screen image into the GIMP. @TOMATO-ONE - your background colour is 0x1c4f84. I think it looks pretty good, but I just wondered where you got it from. Am I missing a Windows screen somewhere? I don't have a server installation available. |
Beta Was this translation helpful? Give feedback.
-
It's been a while. I am preparing a Pull request. I am wondering about image files to add to archive. My idea is to attach the following five image files 1. a logo file in bmp format for a standard-size logins screen, with the background colour set to #f0f0f0 The total of the five files amounts to 355 Kbytes. |
Beta Was this translation helpful? Give feedback.
-
Hi @TOMATO-ONE I don't think you should assume that the logos will be sized for only the 10 point and 18 point font, as the users now have the capability to create their own fonts. Just let xrdp or imlib2 handle the scaling for you - xrdp has basic scaling code built-in if it's not built with imlib2. I think you only need two files:-
In xrdp.ini, constrain the logo with:-
Within the code, if /* if logo image not specified, use default */
if (globals->ls_logo_filename[0] == 0)
{
#ifdef USE_IMLIB2
g_snprintf(globals->ls_logo_filename, 255, XRDP_SHARE_PATH "/xrdp_logo.png");
#else
g_snprintf(globals->ls_logo_filename, 255, XRDP_SHARE_PATH "/xrdp_logo.bmp");
#if
} If you want to include metalefty's .svg file too that's fine, but we can't load it directly at the moment. Alternatively you could add a README.logo which links to metalefty's repo. Use whatever size logo works best when it's scaled up or down. Does that sound reasonable, or have I missed something? |
Beta Was this translation helpful? Give feedback.
-
I propose to change the design of the xrdp login screen.
As discussed in #2274 for the next major version, I think it is a good idea to change the design of the login screen if it involves a big leap.
This is because the login screen is the first thing most people see, so a change in design would be a strong signal of a big leap forward.
In the past, xrdp has changed the login screen for major leaps forward.
For the sake of discussion, here are the login screens from previous versions of xrdp.
Version 0.6.

Note: I think this is inspired by Windows NT Server 4.0 Terminal Server Edition.
Version 0.9

Note: The colour scheme is similar to that of Windows XP/2003.
Beta Was this translation helpful? Give feedback.
All reactions