Force dpi 96
This commit is contained in:
parent
ef916319ca
commit
da67a6d08f
2 changed files with 5 additions and 4 deletions
|
@ -11,9 +11,9 @@
|
||||||
{
|
{
|
||||||
devShells.default = import ./shell.nix { inherit pkgs; };
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
||||||
}) // {
|
}) // {
|
||||||
packages.x86_64-linux.default =
|
packages.aarch64-linux.default =
|
||||||
# Notice the reference to nixpkgs here.
|
# Notice the reference to nixpkgs here.
|
||||||
with import nixpkgs { system = "x86_64-linux"; };
|
with import nixpkgs { system = "aarch64-linux"; };
|
||||||
haskellPackages.callCabal2nix "xmonad-config" ./. {};
|
haskellPackages.callCabal2nix "xmonad-config" ./. {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,5 +17,6 @@ modify :: XConfig l -> XConfig l
|
||||||
modify = addAfterRescreenHook afterRescreen
|
modify = addAfterRescreenHook afterRescreen
|
||||||
|
|
||||||
afterRescreen :: X ()
|
afterRescreen :: X ()
|
||||||
afterRescreen = spawn "/home/e/.fehbg"
|
afterRescreen = do
|
||||||
|
spawn "xrandr --dpi 96"
|
||||||
|
spawn "/home/e/.fehbg"
|
||||||
|
|
Loading…
Reference in a new issue