diff options
| -rw-r--r-- | .config/shell/envvarrc | 3 | ||||
| -rw-r--r-- | .config/x11/xresources | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.config/shell/envvarrc b/.config/shell/envvarrc index b22a4b5..5401b1d 100644 --- a/.config/shell/envvarrc +++ b/.config/shell/envvarrc @@ -45,7 +45,10 @@ export ENVVARRC="$ZDOTDIR/envvarrc" # X / input export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc" export XINPUTRC="$XDG_CONFIG_HOME/x11/xinputrc" +export XENVIRONMENT="$XDG_CONFIG_HOME/x11/xresources" export XPROFILE="$XDG_CONFIG_HOME/x11/xprofile" +export XCURSOR_THEME=Adwaita +export XCURSOR_SIZE=24 # Language runtimes & tools # Rust diff --git a/.config/x11/xresources b/.config/x11/xresources new file mode 100644 index 0000000..6e9af40 --- /dev/null +++ b/.config/x11/xresources @@ -0,0 +1,15 @@ +!! Transparency (0-1): +*.alpha: 0.8 + +!! Set a default font and font size as below: +*.font: monospace:size=10 + +!! Change how fonts are rasterized: +Xft.antialias: 1 +Xft.hinting: 1 +Xft.hintstyle: hintfull +Xft.rgba: rgb + +!! Mouse cursor +Xcursor.theme: Adwaita +Xcursor.size: 24 |
