Add HiDPI support to .zprofile and bspwmrc
This commit is contained in:
@@ -3,8 +3,13 @@
|
|||||||
#--- General ---#
|
#--- General ---#
|
||||||
|
|
||||||
# Basic definitions
|
# Basic definitions
|
||||||
|
if [ "$HIDPI" = true ]; then
|
||||||
bspc config border_width 4
|
bspc config border_width 4
|
||||||
bspc config window_gap 20
|
bspc config window_gap 20
|
||||||
|
else
|
||||||
|
bspc config border_width 2
|
||||||
|
bspc config window_gap 10
|
||||||
|
fi
|
||||||
bspc config split_ratio 0.502
|
bspc config split_ratio 0.502
|
||||||
bspc config top_padding "$PANEL_HEIGHT"
|
bspc config top_padding "$PANEL_HEIGHT"
|
||||||
|
|
||||||
|
|||||||
@@ -26,8 +26,10 @@ export HIDPI=true
|
|||||||
export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"
|
export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"
|
||||||
|
|
||||||
# GTK
|
# GTK
|
||||||
|
if [ "$HIDPI" = true ]; then
|
||||||
export GDK_SCALE=2
|
export GDK_SCALE=2
|
||||||
export GDK_DPI_SCALE=0.5
|
export GDK_DPI_SCALE=0.5
|
||||||
|
fi
|
||||||
|
|
||||||
# Gradle
|
# Gradle
|
||||||
export GRADLE_USER_HOME="$XDG_DATA_HOME/gradle"
|
export GRADLE_USER_HOME="$XDG_DATA_HOME/gradle"
|
||||||
@@ -50,12 +52,14 @@ export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
|
|||||||
export RANDFILE="$XDG_CACHE_HOME/rnd"
|
export RANDFILE="$XDG_CACHE_HOME/rnd"
|
||||||
|
|
||||||
# Panel
|
# Panel
|
||||||
export PANEL_HEIGHT=38
|
[ "$HIDPI" = true ] && export PANEL_HEIGHT=38 || export PANEL_HEIGHT=22
|
||||||
export PANEL_NAME="polybar_panel"
|
export PANEL_NAME="polybar_panel"
|
||||||
|
|
||||||
# Qt5
|
# Qt5
|
||||||
|
if [ "$HIDPI" = true ]; then
|
||||||
export QT_AUTO_SCREEN_SCALE_FACTOR=0
|
export QT_AUTO_SCREEN_SCALE_FACTOR=0
|
||||||
export QT_SCREEN_SCALE_FACTORS=2
|
export QT_SCREEN_SCALE_FACTORS=2
|
||||||
|
fi
|
||||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||||
|
|
||||||
# Terminal
|
# Terminal
|
||||||
|
|||||||
Reference in New Issue
Block a user