diff --git a/homeManagerModules/desktop/hyprland/scripts.nix b/homeManagerModules/desktop/hyprland/scripts.nix index f3aa6114..71c30c1b 100644 --- a/homeManagerModules/desktop/hyprland/scripts.nix +++ b/homeManagerModules/desktop/hyprland/scripts.nix @@ -28,7 +28,7 @@ in { idleD = pkgs.writeShellScript "hyprland-idled" '' ${lib.getExe pkgs.swayidle} -w \ - before-sleep '${lib.getExe pkgs.playerctl} play-pause' \ + before-sleep '${lib.getExe pkgs.playerctl} pause' \ before-sleep '${lib.getExe pkgs.swaylock}' \ timeout 240 '${lib.getExe pkgs.brightnessctl} -s set 10' \ resume '${lib.getExe pkgs.brightnessctl} -r' \ diff --git a/homeManagerModules/desktop/sway/default.nix b/homeManagerModules/desktop/sway/default.nix index a747f879..99297b81 100644 --- a/homeManagerModules/desktop/sway/default.nix +++ b/homeManagerModules/desktop/sway/default.nix @@ -4,440 +4,13 @@ pkgs, ... }: { - imports = [./randomWallpaper.nix ./redShift.nix]; - config = lib.mkIf config.ar.home.desktop.sway.enable { ar.home.theme.gtk.hideTitleBar = if config.wayland.windowManager.sway.package == pkgs.sway then true else false; - wayland.windowManager.sway = { - enable = true; - wrapperFeatures.gtk = true; - checkConfig = false; - - config = let - modifier = "Mod4"; - swaymsg = lib.getExe' config.wayland.windowManager.sway.package "swaymsg"; - - # Default apps - browser = lib.getExe config.ar.home.defaultApps.webBrowser; - fileManager = lib.getExe config.ar.home.defaultApps.fileManager; - editor = lib.getExe config.ar.home.defaultApps.editor; - terminal = lib.getExe config.ar.home.defaultApps.terminal; - - media = lib.getExe pkgs.playerctl; - - # Sway desktop utilities - bar = lib.getExe pkgs.waybar; - launcher = lib.getExe pkgs.fuzzel; - notifyd = lib.getExe pkgs.mako; - wallpaperd = "${lib.getExe pkgs.swaybg} -i ${config.ar.home.theme.wallpaper}"; - logout = lib.getExe pkgs.wlogout; - lock = lib.getExe pkgs.swaylock; - idled = pkgs.writeShellScript "sway-idled" '' - ${lib.getExe pkgs.swayidle} -w \ - before-sleep '${media} pause' \ - before-sleep '${lock}' \ - timeout 240 '${lib.getExe pkgs.brightnessctl} -s set 10' \ - resume '${lib.getExe pkgs.brightnessctl} -r' \ - timeout 300 '${lock}' \ - timeout 330 '${swaymsg} "output * dpms off"' \ - resume '${swaymsg} "output * dpms on"' \ - ${ - if config.ar.home.desktop.sway.autoSuspend - then ''timeout 900 '${lib.getExe' pkgs.systemd "systemctl"} suspend' \'' - else ''\'' - } - ''; - - screenshot = lib.getExe' pkgs.shotman "shotman"; - screenshot_screen = "${screenshot} --capture output"; - screenshot_region = "${screenshot} --capture region"; - - cycleSwayDisplayModes = pkgs.writeShellScriptBin "cycleSwayDisplayModes" '' - # TODO: remove petalburg hardcodes - current_mode=$(${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} -t get_outputs -p | grep "Current mode" | grep -Eo '[0-9]+x[0-9]+ @ [0-9.]+ Hz' | tr -d " " | grep 2880) - - if [ $current_mode = "2880x1800@90.001Hz" ]; then - ${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} output "eDP-1" mode "2880x1800@60.001Hz"; - ${lib.getExe pkgs.libnotify} "Display set to 2880x1800@60.001Hz." - elif [ $current_mode = "2880x1800@60.001Hz" ]; then - ${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} output "eDP-1" mode "2880x1800@90.001Hz"; - ${lib.getExe pkgs.libnotify} "Display set to 2880x1800@90.001Hz." - fi - ''; - in { - bars = [{command = "${bar}";}]; - modifier = "${modifier}"; - colors.background = "${config.ar.home.theme.colors.primary}EE"; - - colors.focused = { - background = "${config.ar.home.theme.colors.primary}EE"; - border = "${config.ar.home.theme.colors.primary}EE"; - childBorder = "${config.ar.home.theme.colors.primary}EE"; - indicator = "${config.ar.home.theme.colors.primary}EE"; - text = "${config.ar.home.theme.colors.text}"; - }; - - colors.focusedInactive = { - background = "${config.ar.home.theme.colors.inactive}AA"; - border = "${config.ar.home.theme.colors.inactive}AA"; - childBorder = "${config.ar.home.theme.colors.inactive}AA"; - indicator = "${config.ar.home.theme.colors.inactive}AA"; - text = "${config.ar.home.theme.colors.text}"; - }; - - colors.unfocused = { - background = "${config.ar.home.theme.colors.inactive}AA"; - border = "${config.ar.home.theme.colors.inactive}AA"; - childBorder = "${config.ar.home.theme.colors.inactive}AA"; - indicator = "${config.ar.home.theme.colors.inactive}AA"; - text = "${config.ar.home.theme.colors.text}"; - }; - - defaultWorkspace = "workspace number 1"; - - focus = { - followMouse = "always"; - newWindow = "focus"; - # mouseWarping = "container"; - }; - - fonts = { - names = ["${config.gtk.font.name}"]; - style = "Bold"; - size = config.gtk.font.size + 0.0; - }; - - gaps.inner = 5; - gaps.outer = 5; - - input = { - "type:touchpad" = { - click_method = "clickfinger"; - dwt = "enabled"; - natural_scroll = "enabled"; - scroll_method = "two_finger"; - tap = "enabled"; - tap_button_map = "lrm"; - }; - - "type:keyboard" = { - xkb_layout = "us"; - xkb_variant = "altgr-intl"; - }; - - "1386:21186:Wacom_HID_52C2_Finger" = { - map_to_output = "'Samsung Display Corp. 0x4152 Unknown'"; - }; - - "1386:21186:Wacom_HID_52C2_Pen" = { - map_to_output = "'Samsung Display Corp. 0x4152 Unknown'"; - }; - }; - - keybindings = { - # Apps - "${modifier}+B" = "exec ${browser}"; - "${modifier}+E" = "exec ${editor}"; - "${modifier}+F" = "exec ${fileManager}"; - "${modifier}+R" = "exec ${launcher}"; - "${modifier}+T" = "exec ${terminal}"; - - # Manage session. - "${modifier}+C" = "kill"; - "${modifier}+Control+L" = "exec ${lock}"; - "${modifier}+M" = "exec ${logout}"; - - # Basic window management. - "${modifier}+Shift+W" = "fullscreen toggle"; - "${modifier}+Shift+V" = "floating toggle"; - - # Move focus with modifier + arrow keys - "${modifier}+Left" = "focus left"; - "${modifier}+Down" = "focus down"; - "${modifier}+Up" = "focus up"; - "${modifier}+Right" = "focus right"; - - # Move focus with modifier + hjkl keys (vim/ADM-3A terminal) - "${modifier}+H" = "focus left"; - "${modifier}+J" = "focus down"; - "${modifier}+K" = "focus up"; - "${modifier}+L" = "focus right"; - - # Move window with modifier SHIFT + arrow keys - "${modifier}+Shift+Left" = "move left"; - "${modifier}+Shift+Down" = "move down"; - "${modifier}+Shift+Up" = "move up"; - "${modifier}+Shift+Right" = "move right"; - - # Move window with modifier SHIFT + hjkl keys - "${modifier}+Shift+H" = "move left"; - "${modifier}+Shift+J" = "move down"; - "${modifier}+Shift+K" = "move up"; - "${modifier}+Shift+L" = "move right"; - - # Gnome-like workspaces. - "${modifier}+Comma" = "workspace prev"; - "${modifier}+Period" = "workspace next"; - "${modifier}+Shift+Comma" = "move container to workspace prev; workspace prev"; - "${modifier}+Shift+Period" = "move container to workspace next; workspace next"; - - # Switch workspaces with modifier + [0-9] - "${modifier}+1" = "workspace number 1"; - "${modifier}+2" = "workspace number 2"; - "${modifier}+3" = "workspace number 3"; - "${modifier}+4" = "workspace number 4"; - "${modifier}+5" = "workspace number 5"; - "${modifier}+6" = "workspace number 6"; - "${modifier}+7" = "workspace number 7"; - "${modifier}+8" = "workspace number 8"; - "${modifier}+9" = "workspace number 9"; - "${modifier}+0" = "workspace number 10"; - - # Move active window to a workspace with modifier + SHIFT + [0-9] - "${modifier}+Shift+1" = "move container to workspace number 1; workspace 1"; - "${modifier}+Shift+2" = "move container to workspace number 2; workspace 2"; - "${modifier}+Shift+3" = "move container to workspace number 3; workspace 3"; - "${modifier}+Shift+4" = "move container to workspace number 4; workspace 4"; - "${modifier}+Shift+5" = "move container to workspace number 5; workspace 5"; - "${modifier}+Shift+6" = "move container to workspace number 6; workspace 6"; - "${modifier}+Shift+7" = "move container to workspace number 7; workspace 7"; - "${modifier}+Shift+8" = "move container to workspace number 8; workspace 8"; - "${modifier}+Shift+9" = "move container to workspace number 9; workspace 9"; - "${modifier}+Shift+0" = "move container to workspace number 10; workspace 10"; - - # Move workspace to another output. - "${modifier}+Control+Shift+Left" = "move workspace to output left"; - "${modifier}+Control+Shift+Down" = "move workspace to output down"; - "${modifier}+Control+Shift+Up" = "move workspace to output up"; - "${modifier}+Control+Shift+Right" = "move workspace to output right"; - - # Move workspace to another output. - "${modifier}+Control+Shift+H" = "move workspace to output left"; - "${modifier}+Control+Shift+J" = "move workspace to output down"; - "${modifier}+Control+Shift+K" = "move workspace to output up"; - "${modifier}+Control+Shift+L" = "move workspace to output right"; - - # Scratchpad show and move - "${modifier}+S" = "scratchpad show"; - "${modifier}+Shift+S" = "move scratchpad"; - - # For petalburg - "XF86Launch4" = "exec pp-adjuster"; - - "XF86Launch3" = "exec ${lib.getExe cycleSwayDisplayModes}"; - - # Screenshots - "PRINT" = "exec ${screenshot_screen}"; - "${modifier}+PRINT" = "exec ${screenshot_region}"; - - # Show/hide waybar - "${modifier}+F11" = "exec pkill -SIGUSR1 waybar"; - - "Ctrl+Mod1+M" = "mode move"; - "Ctrl+Mod1+R" = "mode resize"; - }; - - modes = { - move = { - Escape = "mode default"; - Left = "move left"; - Down = "move down"; - Up = "move up"; - Right = "move right"; - H = "move left"; - J = "move down"; - K = "move up"; - L = "move right"; - Comma = "move container to workspace prev; workspace prev"; - Period = "move container to workspace next; workspace next"; - "1" = "move container to workspace number 1; workspace 1"; - "2" = "move container to workspace number 2; workspace 2"; - "3" = "move container to workspace number 3; workspace 3"; - "4" = "move container to workspace number 4; workspace 4"; - "5" = "move container to workspace number 5; workspace 5"; - "6" = "move container to workspace number 6; workspace 6"; - "7" = "move container to workspace number 7; workspace 7"; - "8" = "move container to workspace number 8; workspace 8"; - "9" = "move container to workspace number 9; workspace 9"; - "0" = "move container to workspace number 10; workspace 10"; - S = "move scratchpad"; - }; - - resize = { - Escape = "mode default"; - Left = "resize shrink width 10 px"; - Down = "resize grow height 10 px"; - Up = "resize shrink height 10 px"; - Right = "resize grow width 10 px"; - }; - }; - - startup = [ - { - command = - if config.ar.home.desktop.sway.randomWallpaper - then "true" - else "${wallpaperd}"; - } - {command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";} - {command = "${idled}";} - {command = lib.getExe pkgs.autotiling;} - {command = lib.getExe' pkgs.blueman "blueman-applet";} - {command = lib.getExe' pkgs.networkmanagerapplet "nm-applet";} - {command = lib.getExe' pkgs.playerctl "playerctld";} - {command = lib.getExe' pkgs.swayosd "swayosd-server";} - {command = notifyd;} - ]; - - output = { - "BOE 0x095F Unknown".scale = "1.5"; - "LG Display 0x0569 Unknown".scale = "1.0"; - "Samsung Display Corp. 0x4152 Unknown".scale = "2.0"; - "LG Electronics LG ULTRAWIDE 311NTAB5M720".scale = "1.25"; - - "Guangxi Century Innovation Display Electronics Co., Ltd 27C1U-D 0000000000001" = { - scale = "1.5"; - pos = "-2560 0"; - }; - - "HP Inc. HP 24mh 3CM037248S " = { - scale = "1.0"; - pos = "-1920 0"; - }; - }; - - floating.criteria = [ - {app_id = ".blueman-manager-wrapped";} - {app_id = "Bitwarden";} - {app_id = "blueberry.py";} - {app_id = "com.github.wwmm.easyeffects";} - {app_id = "org.keepassxc.KeePassXC";} - {app_id = "pavucontrol";} - {app_id = "solaar";} - {title = "Open File";} - {title = "Open Folder";} - {window_role = "bubble";} - {window_role = "dialog";} - {window_role = "pop-up";} - {window_type = "dialog";} - ]; - - window = { - titlebar = false; - commands = [ - { - command = "floating enable; sticky toggle; resize 35ppt 10ppt"; - criteria = { - title = "^Picture-in-Picture$"; - app_id = "firefox"; - }; - } - { - command = "resize set 40ppt 60ppt; move position center"; - criteria = {title = "Open Folder";}; - } - { - command = "resize set 40ppt 60ppt; move position center"; - criteria = {title = "Open File";}; - } - { - command = "resize set 40ppt 60ppt; move position center"; - criteria = {app_id = "blueberry.py";}; - } - { - command = "resize set 60ppt 80ppt; move position center"; - criteria = {app_id = "solaar";}; - } - { - command = "resize set 80ppt 80ppt; move position center"; - criteria = {app_id = "org.keepassxc.KeePassXC";}; - } - { - command = "resize set 40ppt 60ppt; move position center"; - criteria = {app_id = ".blueman-manager-wrapped";}; - } - { - command = "resize set 40ppt 60ppt; move position center"; - criteria = {app_id = "pavucontrol";}; - } - ]; - }; - - workspaceAutoBackAndForth = true; - }; - - extraConfig = let - brightness = lib.getExe' pkgs.swayosd "swayosd-client"; - brightness_up = "${brightness} --brightness=raise"; - brightness_down = "${brightness} --brightness=lower"; - volume = brightness; - volume_up = "${volume} --output-volume=raise"; - volume_down = "${volume} --output-volume=lower"; - volume_mute = "${volume} --output-volume=mute-toggle"; - mic_mute = "${volume} --input-volume=mute-toggle"; - media = lib.getExe pkgs.playerctl; - media_play = "${media} play-pause"; - media_next = "${media} next"; - media_prev = "${media} previous"; - in '' - bindsym --locked XF86MonBrightnessUp exec ${brightness_up} - bindsym --locked XF86MonBrightnessDown exec ${brightness_down} - bindsym --locked XF86AudioRaiseVolume exec ${volume_up} - bindsym --locked XF86AudioLowerVolume exec ${volume_down} - bindsym --locked XF86AudioMute exec ${volume_mute} - bindsym --locked XF86AudioMicMute exec ${mic_mute} - bindsym --locked XF86AudioPlay exec ${media_play} - bindsym --locked XF86AudioPrev exec ${media_prev} - bindsym --locked XF86AudioNext exec ${media_next} - bindsym --locked XF86Launch2 exec ${media_play} - - mode "move" { - bindgesture swipe:right move container to workspace prev; workspace prev - bindgesture swipe:left move container to workspace next; workspace next - bindgesture pinch:inward+up move up - bindgesture pinch:inward+down move down - bindgesture pinch:inward+left move left - bindgesture pinch:inward+right move right - } - - bindgesture swipe:right workspace prev - bindgesture swipe:left workspace next - - bindswitch --reload --locked lid:on output eDP-1 disable - bindswitch --reload --locked lid:off output eDP-1 enable - - ${ - if config.wayland.windowManager.sway.package == pkgs.swayfx - then " - blur enable - blur_passes 1 - - corner_radius 10 - shadows enable - shadows_on_csd enable - shadow_color ${config.ar.home.theme.colors.shadow} - - default_dim_inactive 0.05 - - layer_effects launcher blur enable - layer_effects launcher blur_ignore_transparent enable - layer_effects logout_dialog blur enable - layer_effects notifications blur enable - layer_effects notifications blur_ignore_transparent enable - layer_effects swaybar blur enable - layer_effects swaybar blur_ignore_transparent enable - layer_effects swayosd blur enable - layer_effects swayosd blur_ignore_transparent enable - layer_effects waybar blur enable - layer_effects waybar blur_ignore_transparent enable" - else "" - } - ''; - }; + wayland.windowManager.sway = import ./settings.nix {inherit config lib pkgs;}; xdg.portal = { enable = true; diff --git a/homeManagerModules/desktop/sway/redShift.nix b/homeManagerModules/desktop/sway/redShift.nix deleted file mode 100644 index 29c0a1cd..00000000 --- a/homeManagerModules/desktop/sway/redShift.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: { - config = lib.mkIf config.ar.home.desktop.sway.redShift { - home.packages = with pkgs; [gammastep]; - - wayland.windowManager.sway.config.startup = [ - {command = "${lib.getExe pkgs.gammastep} -l 33.74:-84.38";} - ]; - }; -} diff --git a/homeManagerModules/desktop/sway/randomWallpaper.nix b/homeManagerModules/desktop/sway/scripts.nix similarity index 51% rename from homeManagerModules/desktop/sway/randomWallpaper.nix rename to homeManagerModules/desktop/sway/scripts.nix index 8b2523a2..96c29f57 100644 --- a/homeManagerModules/desktop/sway/randomWallpaper.nix +++ b/homeManagerModules/desktop/sway/scripts.nix @@ -4,7 +4,26 @@ pkgs, ... }: let - sway-randomWallpaper = pkgs.writeShellScriptBin "sway-randomWallpaper" '' + cfg = config.ar.home; + swaymsg = lib.getExe' config.wayland.windowManager.sway.package "swaymsg"; +in { + idleD = pkgs.writeShellScript "sway-idled" '' + ${lib.getExe pkgs.swayidle} -w \ + before-sleep '${lib.getExe pkgs.playerctl} pause' \ + before-sleep '${lib.getExe pkgs.swaylock}' \ + timeout 240 '${lib.getExe pkgs.brightnessctl} -s set 10' \ + resume '${lib.getExe pkgs.brightnessctl} -r' \ + timeout 300 '${lib.getExe pkgs.swaylock}' \ + timeout 330 '${swaymsg} "output * dpms off"' \ + resume '${swaymsg} "output * dpms on"' \ + ${ + if cfg.desktop.sway.autoSuspend + then ''timeout 900 '${lib.getExe' pkgs.systemd "systemctl"} suspend' \'' + else ''\'' + } + ''; + + randomWallpaper = pkgs.writeShellScript "sway-randomWallpaper" '' kill `pidof swaybg` OLD_PIDS=() @@ -35,15 +54,4 @@ done fi ''; -in { - config = lib.mkIf config.ar.home.desktop.sway.randomWallpaper { - home.packages = [ - pkgs.swaybg - sway-randomWallpaper - ]; - - wayland.windowManager.sway.config.startup = [ - {command = "${lib.getExe sway-randomWallpaper}";} - ]; - }; } diff --git a/homeManagerModules/desktop/sway/settings.nix b/homeManagerModules/desktop/sway/settings.nix new file mode 100644 index 00000000..b2bc3e72 --- /dev/null +++ b/homeManagerModules/desktop/sway/settings.nix @@ -0,0 +1,339 @@ +{ + config, + lib, + pkgs, + ... +}: let + cfg = config.ar.home; + scripts = import ./scripts.nix {inherit config lib pkgs;}; + helpers = import ../wayland/helpers.nix {inherit config lib pkgs;}; + modifier = "Mod4"; +in { + enable = true; + wrapperFeatures.gtk = true; + checkConfig = false; + + config = { + bars = [{command = lib.getExe pkgs.waybar;}]; + modifier = modifier; + colors.background = "${cfg.theme.colors.primary}EE"; + + colors.focused = { + 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 = { + 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}"; + }; + + colors.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"; + + focus = { + followMouse = "always"; + newWindow = "focus"; + }; + + fonts = { + names = ["${config.gtk.font.name}"]; + style = "Bold"; + size = config.gtk.font.size + 0.0; + }; + + gaps.inner = 5; + gaps.outer = 5; + + input = { + "type:touchpad" = { + click_method = "clickfinger"; + dwt = "enabled"; + natural_scroll = "enabled"; + scroll_method = "two_finger"; + tap = "enabled"; + tap_button_map = "lrm"; + }; + + "type:keyboard" = { + xkb_layout = "us"; + xkb_variant = "altgr-intl"; + }; + }; + + keybindings = { + # Apps + "${modifier}+B" = "exec ${lib.getExe cfg.defaultApps.webBrowser}"; + "${modifier}+E" = "exec ${lib.getExe cfg.defaultApps.editor}"; + "${modifier}+F" = "exec ${lib.getExe cfg.defaultApps.fileManager}"; + "${modifier}+R" = "exec ${lib.getExe pkgs.fuzzel}"; + "${modifier}+T" = "exec ${lib.getExe cfg.defaultApps.terminal}"; + + # Manage session. + "${modifier}+C" = "kill"; + "${modifier}+Control+L" = "exec ${lib.getExe pkgs.swaylock}"; + "${modifier}+M" = "exec ${lib.getExe pkgs.wlogout}"; + + # Basic window management. + "${modifier}+Shift+W" = "fullscreen toggle"; + "${modifier}+Shift+V" = "floating toggle"; + + # Move focus with modifier + arrow keys + "${modifier}+Left" = "focus left"; + "${modifier}+Down" = "focus down"; + "${modifier}+Up" = "focus up"; + "${modifier}+Right" = "focus right"; + + # Move focus with modifier + hjkl keys (vim/ADM-3A terminal) + "${modifier}+H" = "focus left"; + "${modifier}+J" = "focus down"; + "${modifier}+K" = "focus up"; + "${modifier}+L" = "focus right"; + + # Move window with modifier SHIFT + arrow keys + "${modifier}+Shift+Left" = "move left"; + "${modifier}+Shift+Down" = "move down"; + "${modifier}+Shift+Up" = "move up"; + "${modifier}+Shift+Right" = "move right"; + + # Move window with modifier SHIFT + hjkl keys + "${modifier}+Shift+H" = "move left"; + "${modifier}+Shift+J" = "move down"; + "${modifier}+Shift+K" = "move up"; + "${modifier}+Shift+L" = "move right"; + + # Gnome-like workspaces. + "${modifier}+Comma" = "workspace prev"; + "${modifier}+Period" = "workspace next"; + "${modifier}+Shift+Comma" = "move container to workspace prev; workspace prev"; + "${modifier}+Shift+Period" = "move container to workspace next; workspace next"; + + # Switch workspaces with modifier + [0-9] + "${modifier}+1" = "workspace number 1"; + "${modifier}+2" = "workspace number 2"; + "${modifier}+3" = "workspace number 3"; + "${modifier}+4" = "workspace number 4"; + "${modifier}+5" = "workspace number 5"; + "${modifier}+6" = "workspace number 6"; + "${modifier}+7" = "workspace number 7"; + "${modifier}+8" = "workspace number 8"; + "${modifier}+9" = "workspace number 9"; + "${modifier}+0" = "workspace number 10"; + + # Move active window to a workspace with modifier + SHIFT + [0-9] + "${modifier}+Shift+1" = "move container to workspace number 1; workspace 1"; + "${modifier}+Shift+2" = "move container to workspace number 2; workspace 2"; + "${modifier}+Shift+3" = "move container to workspace number 3; workspace 3"; + "${modifier}+Shift+4" = "move container to workspace number 4; workspace 4"; + "${modifier}+Shift+5" = "move container to workspace number 5; workspace 5"; + "${modifier}+Shift+6" = "move container to workspace number 6; workspace 6"; + "${modifier}+Shift+7" = "move container to workspace number 7; workspace 7"; + "${modifier}+Shift+8" = "move container to workspace number 8; workspace 8"; + "${modifier}+Shift+9" = "move container to workspace number 9; workspace 9"; + "${modifier}+Shift+0" = "move container to workspace number 10; workspace 10"; + + # Move workspace to another output. + "${modifier}+Control+Shift+Left" = "move workspace to output left"; + "${modifier}+Control+Shift+Down" = "move workspace to output down"; + "${modifier}+Control+Shift+Up" = "move workspace to output up"; + "${modifier}+Control+Shift+Right" = "move workspace to output right"; + + # Move workspace to another output. + "${modifier}+Control+Shift+H" = "move workspace to output left"; + "${modifier}+Control+Shift+J" = "move workspace to output down"; + "${modifier}+Control+Shift+K" = "move workspace to output up"; + "${modifier}+Control+Shift+L" = "move workspace to output right"; + + # Scratchpad show and move + "${modifier}+S" = "scratchpad show"; + "${modifier}+Shift+S" = "move scratchpad"; + + # Screenshots + "PRINT" = "exec ${helpers.screenshot.screen}"; + "${modifier}+PRINT" = "exec ${helpers.screenshot.region}"; + + # Show/hide waybar + "${modifier}+F11" = "exec pkill -SIGUSR1 waybar"; + + "Ctrl+Mod1+M" = "mode move"; + "Ctrl+Mod1+R" = "mode resize"; + }; + + modes = { + move = { + Escape = "mode default"; + Left = "move left"; + Down = "move down"; + Up = "move up"; + Right = "move right"; + H = "move left"; + J = "move down"; + K = "move up"; + L = "move right"; + Comma = "move container to workspace prev; workspace prev"; + Period = "move container to workspace next; workspace next"; + "1" = "move container to workspace number 1; workspace 1"; + "2" = "move container to workspace number 2; workspace 2"; + "3" = "move container to workspace number 3; workspace 3"; + "4" = "move container to workspace number 4; workspace 4"; + "5" = "move container to workspace number 5; workspace 5"; + "6" = "move container to workspace number 6; workspace 6"; + "7" = "move container to workspace number 7; workspace 7"; + "8" = "move container to workspace number 8; workspace 8"; + "9" = "move container to workspace number 9; workspace 9"; + "0" = "move container to workspace number 10; workspace 10"; + S = "move scratchpad"; + }; + + resize = { + Escape = "mode default"; + Left = "resize shrink width 10 px"; + Down = "resize grow height 10 px"; + Up = "resize shrink height 10 px"; + Right = "resize grow width 10 px"; + }; + }; + + startup = + [ + {command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";} + {command = "${scripts.idleD}";} + {command = lib.getExe pkgs.autotiling;} + {command = lib.getExe' pkgs.blueman "blueman-applet";} + {command = lib.getExe' pkgs.networkmanagerapplet "nm-applet";} + {command = lib.getExe' pkgs.playerctl "playerctld";} + {command = lib.getExe' pkgs.swayosd "swayosd-server";} + {command = lib.getExe pkgs.mako;} + ] + ++ lib.optional cfg.desktop.sway.redShift + {command = "${lib.getExe pkgs.gammastep} -l 33.74:-84.38";} + ++ lib.optional cfg.desktop.sway.randomWallpaper {command = "${scripts.randomWallpaper}";} + ++ lib.optional (!cfg.desktop.sway.randomWallpaper) {command = "${lib.getExe pkgs.swaybg} -i ${cfg.theme.wallpaper}";}; + + floating.criteria = [ + {app_id = ".blueman-manager-wrapped";} + {app_id = "Bitwarden";} + {app_id = "blueberry.py";} + {app_id = "com.github.wwmm.easyeffects";} + {app_id = "org.keepassxc.KeePassXC";} + {app_id = "pavucontrol";} + {app_id = "solaar";} + {title = "Open File";} + {title = "Open Folder";} + {window_role = "bubble";} + {window_role = "dialog";} + {window_role = "pop-up";} + {window_type = "dialog";} + ]; + + window = { + titlebar = false; + commands = [ + { + command = "floating enable; sticky toggle; resize 35ppt 10ppt"; + criteria = { + title = "^Picture-in-Picture$"; + app_id = "firefox"; + }; + } + { + command = "resize set 40ppt 60ppt; move position center"; + criteria = {title = "Open Folder";}; + } + { + command = "resize set 40ppt 60ppt; move position center"; + criteria = {title = "Open File";}; + } + { + command = "resize set 40ppt 60ppt; move position center"; + criteria = {app_id = "blueberry.py";}; + } + { + command = "resize set 60ppt 80ppt; move position center"; + criteria = {app_id = "solaar";}; + } + { + command = "resize set 80ppt 80ppt; move position center"; + criteria = {app_id = "org.keepassxc.KeePassXC";}; + } + { + command = "resize set 40ppt 60ppt; move position center"; + criteria = {app_id = ".blueman-manager-wrapped";}; + } + { + command = "resize set 40ppt 60ppt; move position center"; + criteria = {app_id = "pavucontrol";}; + } + ]; + }; + + workspaceAutoBackAndForth = true; + }; + + extraConfig = '' + bindsym --locked XF86MonBrightnessUp exec ${helpers.brightness.up} + bindsym --locked XF86MonBrightnessDown exec ${helpers.brightness.down} + bindsym --locked XF86AudioRaiseVolume exec ${helpers.volume.up} + bindsym --locked XF86AudioLowerVolume exec ${helpers.volume.down} + bindsym --locked XF86AudioMute exec ${helpers.volume.mute} + bindsym --locked XF86AudioMicMute exec ${helpers.volume.micMute} + bindsym --locked XF86AudioPlay exec ${helpers.media.play} + bindsym --locked XF86AudioPrev exec ${helpers.media.prev} + bindsym --locked XF86AudioNext exec ${helpers.media.next} + + mode "move" { + bindgesture swipe:right move container to workspace prev; workspace prev + bindgesture swipe:left move container to workspace next; workspace next + bindgesture pinch:inward+up move up + bindgesture pinch:inward+down move down + bindgesture pinch:inward+left move left + bindgesture pinch:inward+right move right + } + + bindgesture swipe:right workspace prev + bindgesture swipe:left workspace next + + bindswitch --reload --locked lid:on output eDP-1 disable + bindswitch --reload --locked lid:off output eDP-1 enable + + ${ + if config.wayland.windowManager.sway.package == pkgs.swayfx + then " + blur enable + blur_passes 1 + + # corner_radius 10 + shadows enable + shadows_on_csd enable + shadow_color ${cfg.theme.colors.shadow} + + default_dim_inactive 0.05 + + layer_effects launcher blur enable + layer_effects launcher blur_ignore_transparent enable + layer_effects logout_dialog blur enable + layer_effects notifications blur enable + layer_effects notifications blur_ignore_transparent enable + layer_effects swaybar blur enable + layer_effects swaybar blur_ignore_transparent enable + layer_effects swayosd blur enable + layer_effects swayosd blur_ignore_transparent enable + layer_effects waybar blur enable + layer_effects waybar blur_ignore_transparent enable" + else "" + } + ''; +} diff --git a/homeManagerModules/desktop/wayland/helpers.nix b/homeManagerModules/desktop/wayland/helpers.nix index 40e77152..81d205dd 100644 --- a/homeManagerModules/desktop/wayland/helpers.nix +++ b/homeManagerModules/desktop/wayland/helpers.nix @@ -1,4 +1,5 @@ { + config, lib, pkgs, ... @@ -17,22 +18,32 @@ prev = "${bin} previous"; }; - screenshot = { - region = pkgs.writeShellScript "screenshot-region" '' - FILENAME=$HOME/pics/screenshots/$(date +'%Y-%m-%d-%H:%M_grim.png') - - ${lib.getExe pkgs.grim} -g "$(${lib.getExe pkgs.slurp})" "$FILENAME" - ${lib.getExe' pkgs.wl-clipboard-rs "wl-copy"} $FILENAME - ${lib.getExe' pkgs.libnotify "notify-send"} "Screenshot saved" "$FILENAME" -i "$FILENAME" + screenshot = rec { + bin = pkgs.writeShellScript "screenshooter" '' + FILENAME=${config.xdg.userDirs.pictures}/screenshots/$(date +'%Y-%m-%d-%H:%M:%S_grim.png') + MAKO_MODE=$(${lib.getExe' pkgs.mako "makoctl"} mode) + + if echo "$MAKO_MODE" | grep -q "do-not-disturb"; then + DND=true + else + DND=false + ${lib.getExe' pkgs.mako "makoctl"} mode -t do-not-disturb + fi + + ${lib.getExe pkgs.grim} -g "$(${lib.getExe pkgs.slurp} -o)" "$FILENAME" + + if [ "$DND" = false ]; then + ${lib.getExe' pkgs.mako "makoctl"} mode -t do-not-disturb + fi + + if [ -e "$FILENAME" ]; then + ${lib.getExe' pkgs.wl-clipboard-rs "wl-copy"} $FILENAME + ${lib.getExe' pkgs.libnotify "notify-send"} "Screenshot saved" "$FILENAME" -i "$FILENAME" + fi ''; - screen = pkgs.writeShellScript "screenshot-screen" '' - FILENAME=$HOME/pics/screenshots/$(date +'%Y-%m-%d-%H:%M_grim.png') - - ${lib.getExe pkgs.grim} -g "$(${lib.getExe pkgs.slurp} -o)" "$FILENAME" - ${lib.getExe' pkgs.wl-clipboard-rs "wl-copy"} $FILENAME - ${lib.getExe' pkgs.libnotify "notify-send"} "Screenshot saved" "$FILENAME" -i "$FILENAME" - ''; + region = "${bin}"; + screen = "${bin}"; }; volume = rec { diff --git a/homes/aly/windowManagers/default.nix b/homes/aly/windowManagers/default.nix index acd3e2e9..5f807b3d 100644 --- a/homes/aly/windowManagers/default.nix +++ b/homes/aly/windowManagers/default.nix @@ -14,6 +14,18 @@ "workspace 10: zoom" = [{class = "zoom";} {app_id = "Zoom";}]; }; + output = { + "Guangxi Century Innovation Display Electronics Co., Ltd 27C1U-D 0000000000001" = { + scale = "1.5"; + pos = "-2560 0"; + }; + + "HP Inc. HP 24mh 3CM037248S " = { + scale = "1.0"; + pos = "-1920 0"; + }; + }; + startup = [ {command = ''${lib.getExe' pkgs.keepassxc "keepassxc"}'';} ]; diff --git a/hosts/fallarbor/home.nix b/hosts/fallarbor/home.nix index 780a258f..fec165fc 100644 --- a/hosts/fallarbor/home.nix +++ b/hosts/fallarbor/home.nix @@ -1,6 +1,7 @@ { home-manager.sharedModules = [ { + wayland.windowManager.sway.config.output = {"BOE 0x095F Unknown".scale = "1.5";}; ar.home.desktop.hyprland.laptopMonitors = ["desc:BOE 0x095F,preferred,auto,1.566667"]; } ]; diff --git a/hosts/lavaridge/home.nix b/hosts/lavaridge/home.nix index 2a0fa9b0..2776799f 100644 --- a/hosts/lavaridge/home.nix +++ b/hosts/lavaridge/home.nix @@ -1,6 +1,8 @@ { home-manager.sharedModules = [ { + wayland.windowManager.sway.config.output = {"BOE 0x095F Unknown".scale = "1.5";}; + ar.home = { desktop.hyprland.laptopMonitors = ["desc:BOE 0x095F,preferred,auto,1.566667"]; diff --git a/hosts/mauville/home.nix b/hosts/mauville/home.nix index fb74598e..9f8b31a7 100644 --- a/hosts/mauville/home.nix +++ b/hosts/mauville/home.nix @@ -7,6 +7,7 @@ home-manager = { sharedModules = [ { + wayland.windowManager.sway.config.output = {"LG Electronics LG ULTRAWIDE 311NTAB5M720".scale = "1.25";}; xdg.userDirs.music = "/mnt/Media/Music"; ar.home = { diff --git a/hosts/petalburg/home.nix b/hosts/petalburg/home.nix index 9f1bd8af..2d10efee 100644 --- a/hosts/petalburg/home.nix +++ b/hosts/petalburg/home.nix @@ -6,19 +6,40 @@ }: { home-manager.sharedModules = [ { - wayland.windowManager.hyprland.settings = { - bind = [ - ",xf86launch4,exec,${lib.getExe self.inputs.pp-adjuster.packages.${pkgs.system}.default}" - ",xf86launch2,exec,${lib.getExe pkgs.playerctl} play-pause" - ]; + wayland.windowManager = { + hyprland.settings = { + bind = [ + ",xf86launch2,exec,${lib.getExe pkgs.playerctl} play-pause" + ",xf86launch4,exec,${lib.getExe self.inputs.pp-adjuster.packages.${pkgs.system}.default}" + ]; - exec-once = [''${ - lib.getExe self.inputs.iio-hyprland.packages.${pkgs.system}.default - } "desc:Samsung Display Corp. 0x4152"'']; + exec-once = [''${ + lib.getExe self.inputs.iio-hyprland.packages.${pkgs.system}.default + } "desc:Samsung Display Corp. 0x4152"'']; - input = { - tablet.output = "eDP-1"; - touchdevice.output = "eDP-1"; + input = { + tablet.output = "eDP-1"; + touchdevice.output = "eDP-1"; + }; + }; + + sway.config = { + input = { + "1386:21186:Wacom_HID_52C2_Finger" = { + map_to_output = "'Samsung Display Corp. 0x4152 Unknown'"; + }; + + "1386:21186:Wacom_HID_52C2_Pen" = { + map_to_output = "'Samsung Display Corp. 0x4152 Unknown'"; + }; + }; + + keybindings = { + "XF86Launch2" = "exec ${lib.getExe pkgs.playerctl} play-pause"; + "XF86Launch4" = "exec ${lib.getExe self.inputs.pp-adjuster.packages.${pkgs.system}.default}"; + }; + + output = {"Samsung Display Corp. 0x4152 Unknown".scale = "2.0";}; }; }; diff --git a/hosts/rustboro/home.nix b/hosts/rustboro/home.nix index a8c1b64a..45dabebc 100644 --- a/hosts/rustboro/home.nix +++ b/hosts/rustboro/home.nix @@ -3,7 +3,7 @@ { gtk.font.size = lib.mkForce 14; home.pointerCursor.size = lib.mkForce 24; - programs.vscode.userSettings."editor.fontSize" = lib.mkForce "16"; + wayland.windowManager.sway.config.output = {"LG Display 0x0569 Unknown".scale = "1.0";}; ar.home = { desktop.hyprland.laptopMonitors = ["desc:LG Display 0x0569,preferred,auto,1.0"];