From 3e3c14063fd6698db7a16ddc3033cc4bc0581d37 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 31 May 2018 13:59:32 +0200 Subject: [PATCH 1/2] xfce4-session: Also scale the font on HiDPI systems Setting `GDK_DPI_SCALE` to .5 causes the font to be too small, so set it to 1. --- xfce4-session.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-session.be0 b/xfce4-session.be0 index c29bf03a0..ed6a587c3 100755 --- a/xfce4-session.be0 +++ b/xfce4-session.be0 @@ -63,7 +63,7 @@ mee_install_post() { start_cmd cat >${D}${BINDIR}/startxfce4_hidpi <<-EOF #!/bin/bash export GDK_SCALE=2 - export GDK_DPI_SCALE=.5 + export GDK_DPI_SCALE=1 export QT_AUTO_SCREEN_SCALE_FACTOR=1 export XCURSOR_SIZE=48 /usr/bin/startxfce4 "$@" From 96205fafd13eb9f08827a8527af79e49ef799f07 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 31 May 2018 14:00:25 +0200 Subject: [PATCH 2/2] xfce4-session: Increment revision --- xfce4-session.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-session.be0 b/xfce4-session.be0 index ed6a587c3..5e912c2dc 100755 --- a/xfce4-session.be0 +++ b/xfce4-session.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION xfce4-session-4.12.1-4 +# BEE_VERSION xfce4-session-4.12.1-5 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.)