feat: Hyprland monitor config and display scale
Change displayScale to 2 Add explicit eDP config
This commit is contained in:
parent
2173217135
commit
c2e4f54322
2 changed files with 9 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
||||||
config = rec {
|
config = rec {
|
||||||
myUserName = "stvnliu";
|
myUserName = "stvnliu";
|
||||||
myHostName = "nixos-msi";
|
myHostName = "nixos-msi";
|
||||||
displayScale = 1;
|
displayScale = 2;
|
||||||
myWallPaperPathString = "/home/${myUserName}/wallpaper.jpg";
|
myWallPaperPathString = "/home/${myUserName}/wallpaper.jpg";
|
||||||
myDisplayName = "Zhongheng Liu";
|
myDisplayName = "Zhongheng Liu";
|
||||||
myEmail = "z.liu@outlook.com.gr";
|
myEmail = "z.liu@outlook.com.gr";
|
||||||
|
|
|
@ -9,12 +9,18 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
# The hyprland package to use
|
# The hyprland package to use
|
||||||
package = pkgs.hyprland;
|
package = pkgs.hyprland;
|
||||||
plugins = with pkgs.hyprlandPlugins; [hyprfocus csgo-vulkan-fix];
|
plugins = with pkgs.hyprlandPlugins; [
|
||||||
|
hyprfocus
|
||||||
|
csgo-vulkan-fix
|
||||||
|
];
|
||||||
# Whether to enable XWayland
|
# Whether to enable XWayland
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
xwayland = {force_zero_scaling = true;};
|
xwayland = {force_zero_scaling = true;};
|
||||||
monitor = ",preferred,auto,${builtins.toString config.displayScale}";
|
monitor = [
|
||||||
|
#"eDP-1, 1920x1080@165,0x0,1"
|
||||||
|
",preferred, auto, ${builtins.toString config.displayScale}"
|
||||||
|
];
|
||||||
input = {
|
input = {
|
||||||
# xset rate 250 50 replacement on wayland...
|
# xset rate 250 50 replacement on wayland...
|
||||||
# FAST MODE LET'S GOOO
|
# FAST MODE LET'S GOOO
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue