add user to dialout group for access to Duet3DMC6HC
This commit is contained in:
parent
b20a1f400a
commit
442bbceb38
5 changed files with 92 additions and 94 deletions
|
@ -15,22 +15,16 @@
|
|||
monitor = eDP-2, 2560x1600@165, 0x0, auto # main laptop monitor
|
||||
monitor = DP-3, 1920x1080@119.98, -1280x-1080, auto # left external monitor
|
||||
monitor = DP-2, 1920x1080@119.98, 640x-1080, auto # right external monitor
|
||||
|
||||
debug:disable_logs = false
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mod, mouse:272, movewindow
|
||||
bindm = $mod, mouse:273, resizewindow
|
||||
|
||||
xwayland {
|
||||
force_zero_scaling = true
|
||||
}
|
||||
'';
|
||||
};
|
||||
# Hyprland configuration
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
"$mod" = "SUPER";
|
||||
input = { kb_layout = "gb"; };
|
||||
bindm = [
|
||||
"$mod, mouse:272, movewindow"
|
||||
"$mod, mouse:273, resizewindow"
|
||||
];
|
||||
bind =
|
||||
[
|
||||
# Keybinds for starting programs
|
||||
|
@ -53,17 +47,19 @@
|
|||
# workspaces
|
||||
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
|
||||
builtins.concatLists (builtins.genList (
|
||||
x: let
|
||||
ws = let
|
||||
c = (x + 1) / 10;
|
||||
in
|
||||
builtins.toString (x + 1 - (c * 10));
|
||||
x: let
|
||||
ws = let
|
||||
c = (x + 1) / 10;
|
||||
in
|
||||
builtins.toString (x + 1 - (c * 10));
|
||||
in [
|
||||
"$mod, ${ws}, workspace, ${toString (x + 1)}"
|
||||
"$mod SHIFT, ${ws}, movetoworkspace, ${toString (x + 1)}"
|
||||
]
|
||||
)
|
||||
10)
|
||||
) 10)
|
||||
);
|
||||
xwayland = {
|
||||
force_zero_scaling = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue