14 lines
168 B
Bash
14 lines
168 B
Bash
#!/bin/sh
|
|
|
|
xrdb "$XDG_CONFIG_HOME/xorg/Xresources"
|
|
|
|
# GTK application scaling
|
|
export GDK_SCALE=2
|
|
export GDK_DPI_SCALE=0.5
|
|
|
|
# Screensaver
|
|
xset s off
|
|
xset -dpms
|
|
|
|
exec i3
|