home/sway: simplify and normalize with hyprland
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-07-23 18:25:18 -04:00
parent 5bc55968b4
commit 88f3e8434a
2 changed files with 41 additions and 22 deletions

View file

@ -46,6 +46,20 @@
- SUPER + Period: Switch to next numbered workspace. - SUPER + Period: Switch to next numbered workspace.
- TOUCHPAD: 3 Finger Swipe Left/Right. - TOUCHPAD: 3 Finger Swipe Left/Right.
#### Multi-Monitor Workspace Management
- SUPER CTRL SHIFT + Down: Move current workspace to monitor below.
- SUPER CTRL SHIFT + Up: Move current workspace to monitor above.
- SUPER CTRL SHIFT + Left: Move current workspace to monitor left.
- SUPER CTRL SHIFT + Right: Move current workspace to monitor right.
______________________________________________________________________
- SUPER CTRL SHIFT + J: Move current workspace to monitor below.
- SUPER CTRL SHIFT + K: Move current workspace to monitor above.
- SUPER CTRL SHIFT + H: Move current workspace to monitor left.
- SUPER CTRL SHIFT + L: Move current workspace to monitor right.
### Window Management ### Window Management
- SUPER + C: Kill focused window. - SUPER + C: Kill focused window.

View file

@ -17,9 +17,11 @@ in {
config = { config = {
bars = [{command = lib.getExe pkgs.waybar;}]; bars = [{command = lib.getExe pkgs.waybar;}];
modifier = modifier; modifier = modifier;
colors.background = "${cfg.theme.colors.primary}EE";
colors.focused = { colors = {
background = "${cfg.theme.colors.primary}EE";
focused = {
background = "${cfg.theme.colors.primary}EE"; background = "${cfg.theme.colors.primary}EE";
border = "${cfg.theme.colors.primary}EE"; border = "${cfg.theme.colors.primary}EE";
childBorder = "${cfg.theme.colors.primary}EE"; childBorder = "${cfg.theme.colors.primary}EE";
@ -27,7 +29,7 @@ in {
text = "${cfg.theme.colors.text}"; text = "${cfg.theme.colors.text}";
}; };
colors.focusedInactive = { focusedInactive = {
background = "${cfg.theme.colors.inactive}AA"; background = "${cfg.theme.colors.inactive}AA";
border = "${cfg.theme.colors.inactive}AA"; border = "${cfg.theme.colors.inactive}AA";
childBorder = "${cfg.theme.colors.inactive}AA"; childBorder = "${cfg.theme.colors.inactive}AA";
@ -35,13 +37,14 @@ in {
text = "${cfg.theme.colors.text}"; text = "${cfg.theme.colors.text}";
}; };
colors.unfocused = { unfocused = {
background = "${cfg.theme.colors.inactive}AA"; background = "${cfg.theme.colors.inactive}AA";
border = "${cfg.theme.colors.inactive}AA"; border = "${cfg.theme.colors.inactive}AA";
childBorder = "${cfg.theme.colors.inactive}AA"; childBorder = "${cfg.theme.colors.inactive}AA";
indicator = "${cfg.theme.colors.inactive}AA"; indicator = "${cfg.theme.colors.inactive}AA";
text = "${cfg.theme.colors.text}"; text = "${cfg.theme.colors.text}";
}; };
};
defaultWorkspace = "workspace number 1"; defaultWorkspace = "workspace number 1";
@ -56,8 +59,10 @@ in {
size = config.gtk.font.size + 0.0; size = config.gtk.font.size + 0.0;
}; };
gaps.inner = 5; gaps = {
gaps.outer = 5; inner = 5;
outer = 5;
};
input = { input = {
"type:touchpad" = { "type:touchpad" = {