diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-02-27 20:30:31 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-02-27 20:30:31 -0500 |
commit | eb53922048e2c899523d79cc32fc58c493dab358 (patch) | |
tree | 6e776ff62ed0808613dc33ffb61ac5202055392f /.local/bin | |
parent | f9f5eac7caed27e67b219e596a09e48b3c4094ed (diff) | |
parent | 285e484ff96c28440b661c4ed3e281a070e97b45 (diff) |
Merge branch 'master' into gluglugt60-par/master
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/xrdb-set-dpi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/xrdb-set-dpi b/.local/bin/xrdb-set-dpi index 2a6b055..d728b91 100755 --- a/.local/bin/xrdb-set-dpi +++ b/.local/bin/xrdb-set-dpi @@ -1,4 +1,4 @@ #!/usr/bin/env bash -dpi=$(LC_ALL=C DISPLAY=:0 xdpyinfo|sed -rn 's/^\s*resolution:\s*(.*) dots per inch$/\1/p') +dpi=$(LC_ALL=C xdpyinfo|sed -rn 's/^\s*resolution:\s*(.*) dots per inch$/\1/p') xrdb -merge <<<"Xft.dpi: ${dpi}" |