mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 04:13: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.
|
||||
- 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
|
||||
|
||||
- SUPER + C: Kill focused window.
|
||||
|
|
|
@ -17,9 +17,11 @@ in {
|
|||
config = {
|
||||
bars = [{command = lib.getExe pkgs.waybar;}];
|
||||
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";
|
||||
border = "${cfg.theme.colors.primary}EE";
|
||||
childBorder = "${cfg.theme.colors.primary}EE";
|
||||
|
@ -27,7 +29,7 @@ in {
|
|||
text = "${cfg.theme.colors.text}";
|
||||
};
|
||||
|
||||
colors.focusedInactive = {
|
||||
focusedInactive = {
|
||||
background = "${cfg.theme.colors.inactive}AA";
|
||||
border = "${cfg.theme.colors.inactive}AA";
|
||||
childBorder = "${cfg.theme.colors.inactive}AA";
|
||||
|
@ -35,13 +37,14 @@ in {
|
|||
text = "${cfg.theme.colors.text}";
|
||||
};
|
||||
|
||||
colors.unfocused = {
|
||||
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";
|
||||
|
||||
|
@ -56,8 +59,10 @@ in {
|
|||
size = config.gtk.font.size + 0.0;
|
||||
};
|
||||
|
||||
gaps.inner = 5;
|
||||
gaps.outer = 5;
|
||||
gaps = {
|
||||
inner = 5;
|
||||
outer = 5;
|
||||
};
|
||||
|
||||
input = {
|
||||
"type:touchpad" = {
|
||||
|
|
Loading…
Reference in a new issue