@Emanate Presence :-
As I believe I mentioned earlier in this thread - or it could have been elsewhere - you can 'enlarge' the GUI in Brave and, indeed, any Chromium-based browser. However, it is NOT a 'point-and-click' operation within the Settings/Preferences.
(There IS the text increase that can be applied while browsing; press & hold 'Ctrl', then scroll up or down with your mouse to increase/decrease text size......but this only affects what's within the browser window. It doesn't touch the actual GUI.)
You have to locate the Brave 'launch wrapper' script; all Chromium-based browsers use one of these. You need to open that script with your favourite text editor .....and then you need to locate, and modify, the 'exec' line.
Here's my own 'exec' line from the wrapper launch script in my Brave-portable:-
Ignore the "$HERE" variable; these 'portable' browsers are set to recognise the portable's directory as analagous to the normal /home/user directory, which helps to keep everything together in one place.
The item you're interested in is that final 'switch' (with these browsers, a 'switch' is a command-line instruction to the browser at launch time, is always preceded by the double-dash "--", and is always separated from any other instruction by a space):-
1 is standard view. 2 would be 100% larger - double the size. The 1.2 as shown gives me about 20% extra size.....combined with a bigger than usual global DPI across the OS, this gives me the GUI size increase I want.
It takes a bit of experimenting to find the magnification factor you're happy with.....but setting it up this way means the size increase is PERMANENT. There's no danger of the browser deciding to "lose" the increased size during a restart or a system reboot.
I would recommend starting with 1.5, then working up (or down) from there. This tweak will work for any Chromium-based browser; once you've got it to your liking, you can copy/paste this section into the wrapper script exec line for any other of these browsers.
Mike.
As I believe I mentioned earlier in this thread - or it could have been elsewhere - you can 'enlarge' the GUI in Brave and, indeed, any Chromium-based browser. However, it is NOT a 'point-and-click' operation within the Settings/Preferences.
(There IS the text increase that can be applied while browsing; press & hold 'Ctrl', then scroll up or down with your mouse to increase/decrease text size......but this only affects what's within the browser window. It doesn't touch the actual GUI.)
You have to locate the Brave 'launch wrapper' script; all Chromium-based browsers use one of these. You need to open that script with your favourite text editor .....and then you need to locate, and modify, the 'exec' line.
~~~~~~~~~~~~~~~~~~~
Here's my own 'exec' line from the wrapper launch script in my Brave-portable:-
Code:
"$HERE/brave/brave" --user-data-dir=$HERE/PROFILE/spot/Brave-Browser --disk-cache-size=50000000 --media-cache-size=50000000 --allow-outdated-plugins --force-device-scale-factor=1.2 "$@"
Ignore the "$HERE" variable; these 'portable' browsers are set to recognise the portable's directory as analagous to the normal /home/user directory, which helps to keep everything together in one place.
The item you're interested in is that final 'switch' (with these browsers, a 'switch' is a command-line instruction to the browser at launch time, is always preceded by the double-dash "--", and is always separated from any other instruction by a space):-
Code:
--force-device-scale-factor=1.2
1 is standard view. 2 would be 100% larger - double the size. The 1.2 as shown gives me about 20% extra size.....combined with a bigger than usual global DPI across the OS, this gives me the GUI size increase I want.
It takes a bit of experimenting to find the magnification factor you're happy with.....but setting it up this way means the size increase is PERMANENT. There's no danger of the browser deciding to "lose" the increased size during a restart or a system reboot.
I would recommend starting with 1.5, then working up (or down) from there. This tweak will work for any Chromium-based browser; once you've got it to your liking, you can copy/paste this section into the wrapper script exec line for any other of these browsers.
Mike.