mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:53:55 -05:00
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
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:
parent
5bc55968b4
commit
88f3e8434a
|
@ -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.
|
||||||
|
|
|
@ -17,30 +17,33 @@ 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";
|
background = "${cfg.theme.colors.primary}EE";
|
||||||
border = "${cfg.theme.colors.primary}EE";
|
|
||||||
childBorder = "${cfg.theme.colors.primary}EE";
|
|
||||||
indicator = "${cfg.theme.colors.primary}EE";
|
|
||||||
text = "${cfg.theme.colors.text}";
|
|
||||||
};
|
|
||||||
|
|
||||||
colors.focusedInactive = {
|
focused = {
|
||||||
background = "${cfg.theme.colors.inactive}AA";
|
background = "${cfg.theme.colors.primary}EE";
|
||||||
border = "${cfg.theme.colors.inactive}AA";
|
border = "${cfg.theme.colors.primary}EE";
|
||||||
childBorder = "${cfg.theme.colors.inactive}AA";
|
childBorder = "${cfg.theme.colors.primary}EE";
|
||||||
indicator = "${cfg.theme.colors.inactive}AA";
|
indicator = "${cfg.theme.colors.primary}EE";
|
||||||
text = "${cfg.theme.colors.text}";
|
text = "${cfg.theme.colors.text}";
|
||||||
};
|
};
|
||||||
|
|
||||||
colors.unfocused = {
|
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";
|
||||||
indicator = "${cfg.theme.colors.inactive}AA";
|
indicator = "${cfg.theme.colors.inactive}AA";
|
||||||
text = "${cfg.theme.colors.text}";
|
text = "${cfg.theme.colors.text}";
|
||||||
|
};
|
||||||
|
|
||||||
|
unfocused = {
|
||||||
|
background = "${cfg.theme.colors.inactive}AA";
|
||||||
|
border = "${cfg.theme.colors.inactive}AA";
|
||||||
|
childBorder = "${cfg.theme.colors.inactive}AA";
|
||||||
|
indicator = "${cfg.theme.colors.inactive}AA";
|
||||||
|
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" = {
|
||||||
|
|
Loading…
Reference in a new issue