c7934633be
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
6 lines
235 B
Bash
Executable File
6 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
KERNEL=$(uname -sr)
|
|
[[ $KERNEL =~ "Microsoft" ]] && "/mnt/c/Program Files/Mozilla Firefox/firefox.exe" "$@"
|
|
[[ $KERNEL =~ "gentoo" ]] && GDK_DPI_SCALE="1.2" firefox "$@"
|
|
#brave-bin --force-device-scale-factor=1.2 "$@"&
|