2022-04-27 00:21:19 +02:00
|
|
|
{ lib
|
|
|
|
, pkgs
|
|
|
|
, config
|
|
|
|
, ...
|
2022-03-01 22:19:03 +01:00
|
|
|
}:
|
|
|
|
with lib; let
|
2021-11-12 17:10:17 +01:00
|
|
|
cfg = config.eboskma.programs.sway;
|
|
|
|
mod = "Mod4";
|
2022-07-13 17:48:08 +02:00
|
|
|
wallpapers = {
|
2022-10-05 15:36:12 +02:00
|
|
|
hd = ./wallpapers/river-1920.png;
|
|
|
|
qhd = ./wallpapers/river-2560.png;
|
|
|
|
uhd = ./wallpapers/river-3840.png;
|
2022-07-13 17:48:08 +02:00
|
|
|
};
|
|
|
|
swaylockcmd = "${pkgs.swaylock-effects}/bin/swaylock --ignore-empty-password --daemonize --show-failed-attempts --indicator-caps-lock --clock --image ${wallpapers.qhd} --fade-in 0.5 --scaling fill";
|
2021-11-22 08:04:54 +01:00
|
|
|
rofiPower = pkgs.writeShellScriptBin "rofi-power" (builtins.readFile ./powermenu.sh);
|
2022-04-27 00:21:19 +02:00
|
|
|
in
|
|
|
|
{
|
2021-11-12 17:10:17 +01:00
|
|
|
options.eboskma.programs.sway.enable = mkEnableOption "Enable sway";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
modifier = mod;
|
|
|
|
|
|
|
|
assigns = {
|
2022-04-27 00:21:19 +02:00
|
|
|
"1" = [{ app_id = "firefox"; }];
|
|
|
|
"2" = [{ app_id = "Alacritty"; } { app_id = "foot"; }];
|
2022-08-18 16:37:26 +02:00
|
|
|
"3" = [{ class = "Code"; } { app_id = "emacs"; }];
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
2022-05-30 16:21:13 +02:00
|
|
|
bars = [ ];
|
2021-12-18 16:23:14 +01:00
|
|
|
|
|
|
|
# Dracula theme
|
|
|
|
colors = {
|
|
|
|
background = "#f8f8f2";
|
|
|
|
focused = {
|
|
|
|
border = "#6272a4";
|
|
|
|
background = "#6272A4";
|
|
|
|
text = "#f8f8f2";
|
|
|
|
indicator = "#6272a4";
|
|
|
|
childBorder = "#6272a4";
|
|
|
|
};
|
|
|
|
focusedInactive = {
|
|
|
|
border = "#44475a";
|
|
|
|
background = "#44475a";
|
|
|
|
text = "#f8f8f2";
|
|
|
|
indicator = "#44475a";
|
|
|
|
childBorder = "#44475a";
|
|
|
|
};
|
|
|
|
unfocused = {
|
|
|
|
border = "#282a36";
|
|
|
|
background = "#282a36";
|
|
|
|
text = "#bfbfbf";
|
|
|
|
indicator = "#282a36";
|
|
|
|
childBorder = "#282a36";
|
|
|
|
};
|
|
|
|
urgent = {
|
|
|
|
border = "#44475a";
|
|
|
|
background = "#ff5555";
|
|
|
|
text = "#f8f8f2";
|
|
|
|
indicator = "#ff5555";
|
|
|
|
childBorder = "#ff5555";
|
|
|
|
};
|
|
|
|
placeholder = {
|
|
|
|
border = "#282a36";
|
|
|
|
background = "#282a36";
|
|
|
|
text = "#f8f8f2";
|
|
|
|
indicator = "#282a36";
|
|
|
|
childBorder = "#282a36";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-06 12:28:23 +01:00
|
|
|
defaultWorkspace = "workspace number 1";
|
|
|
|
|
2021-11-12 17:10:17 +01:00
|
|
|
left = "n";
|
|
|
|
down = "e";
|
|
|
|
up = "i";
|
|
|
|
right = "o";
|
|
|
|
|
|
|
|
floating = {
|
2022-04-27 00:21:19 +02:00
|
|
|
criteria = [{ app_id = "gnome-calculator"; }];
|
2021-11-12 17:10:17 +01:00
|
|
|
modifier = mod;
|
|
|
|
};
|
|
|
|
|
|
|
|
fonts = {
|
2022-04-27 00:21:19 +02:00
|
|
|
names = [ "Iosevka Nerd Font" ];
|
2021-11-12 17:10:17 +01:00
|
|
|
style = "Regular";
|
|
|
|
size = 12.0;
|
|
|
|
};
|
|
|
|
|
|
|
|
gaps = {
|
|
|
|
inner = 10;
|
|
|
|
outer = 5;
|
|
|
|
smartBorders = "on";
|
|
|
|
};
|
|
|
|
|
|
|
|
input = {
|
|
|
|
"36125:40349:splitKB_Kyria" = {
|
2021-11-25 17:18:13 +01:00
|
|
|
xkb_layout = "us";
|
2021-12-10 10:53:40 +01:00
|
|
|
xkb_options = "lv3:ralt_switch,eurosign:5";
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
|
|
|
"1133:49291:Logitech_G502_HERO_SE" = {
|
|
|
|
natural_scroll = "enabled";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
output = {
|
|
|
|
"Virtual-1" = {
|
2022-07-13 17:48:08 +02:00
|
|
|
bg = "${wallpapers.hd} fill";
|
2021-11-12 17:10:17 +01:00
|
|
|
mode = "1920x1080@60Hz";
|
|
|
|
};
|
|
|
|
"DP-2" = {
|
2022-07-13 17:48:08 +02:00
|
|
|
bg = "${wallpapers.qhd} fill";
|
2022-10-30 21:11:48 +01:00
|
|
|
mode = "2560x1440@165Hz";
|
2022-09-21 18:34:10 +02:00
|
|
|
adaptive_sync = "on";
|
|
|
|
max_render_time = "2";
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-11-22 08:04:54 +01:00
|
|
|
# menu = "${pkgs.wofi}/bin/wofi --show drun -i | ${pkgs.findutils}/bin/xargs swaymsg exec --";
|
|
|
|
menu = "${pkgs.rofi}/bin/rofi -show drun -no-lazy-grab";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
|
|
|
keybindings = {
|
|
|
|
"${mod}+Return" = "exec ${config.wayland.windowManager.sway.config.terminal}";
|
|
|
|
"${mod}+Shift+q" = "kill";
|
|
|
|
"${mod}+s" = "exec ${config.wayland.windowManager.sway.config.menu}";
|
|
|
|
"${mod}+Shift+s" = "exec ${pkgs.wofi}/bin/wofi --show run | ${pkgs.findutils}/bin/xargs swaymsg exec --";
|
|
|
|
|
|
|
|
"${mod}+${config.wayland.windowManager.sway.config.left}" = "focus left";
|
|
|
|
"${mod}+${config.wayland.windowManager.sway.config.down}" = "focus down";
|
|
|
|
"${mod}+${config.wayland.windowManager.sway.config.up}" = "focus up";
|
|
|
|
"${mod}+${config.wayland.windowManager.sway.config.right}" = "focus right";
|
|
|
|
|
|
|
|
"${mod}+Left" = "focus left";
|
|
|
|
"${mod}+Down" = "focus down";
|
|
|
|
"${mod}+Up" = "focus up";
|
|
|
|
"${mod}+Right" = "focus right";
|
|
|
|
|
|
|
|
"${mod}+Shift+${config.wayland.windowManager.sway.config.left}" = "move left";
|
|
|
|
"${mod}+Shift+${config.wayland.windowManager.sway.config.down}" = "move down";
|
|
|
|
"${mod}+Shift+${config.wayland.windowManager.sway.config.up}" = "move up";
|
|
|
|
"${mod}+Shift+${config.wayland.windowManager.sway.config.right}" = "move right";
|
|
|
|
|
|
|
|
"${mod}+Shift+Left" = "move left";
|
|
|
|
"${mod}+Shift+Down" = "move down";
|
|
|
|
"${mod}+Shift+Up" = "move up";
|
|
|
|
"${mod}+Shift+Right" = "move right";
|
|
|
|
|
|
|
|
"${mod}+h" = "split h";
|
|
|
|
"${mod}+v" = "split v";
|
|
|
|
"${mod}+t" = "fullscreen toggle";
|
|
|
|
"${mod}+a" = "focus parent";
|
|
|
|
|
|
|
|
"${mod}+r" = "layout stacking";
|
|
|
|
"${mod}+w" = "layout tabbed";
|
|
|
|
"${mod}+f" = "layout toggle split";
|
|
|
|
|
|
|
|
"${mod}+Shift+space" = "floating toggle";
|
|
|
|
"${mod}+space" = "focus mode_toggle";
|
2022-10-10 18:34:23 +02:00
|
|
|
"${mod}+Shift+k" = "sticky toggle";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
|
|
|
"${mod}+1" = "workspace number 1";
|
|
|
|
"${mod}+2" = "workspace number 2";
|
|
|
|
"${mod}+3" = "workspace number 3";
|
|
|
|
"${mod}+4" = "workspace number 4";
|
|
|
|
"${mod}+5" = "workspace number 5";
|
|
|
|
"${mod}+6" = "workspace number 6";
|
|
|
|
"${mod}+7" = "workspace number 7";
|
|
|
|
"${mod}+8" = "workspace number 8";
|
|
|
|
"${mod}+9" = "workspace number 9";
|
2021-12-06 09:58:39 +01:00
|
|
|
"${mod}+0" = "workspace number 10";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
"${mod}+Shift+1" = "move container to workspace number 1";
|
|
|
|
"${mod}+Shift+2" = "move container to workspace number 2";
|
|
|
|
"${mod}+Shift+3" = "move container to workspace number 3";
|
|
|
|
"${mod}+Shift+4" = "move container to workspace number 4";
|
|
|
|
"${mod}+Shift+5" = "move container to workspace number 5";
|
|
|
|
"${mod}+Shift+6" = "move container to workspace number 6";
|
|
|
|
"${mod}+Shift+7" = "move container to workspace number 7";
|
|
|
|
"${mod}+Shift+8" = "move container to workspace number 8";
|
|
|
|
"${mod}+Shift+9" = "move container to workspace number 9";
|
|
|
|
"${mod}+Shift+0" = "move container to workspace number 10";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
|
|
|
"${mod}+Shift+minus" = "move scratchpad";
|
|
|
|
"${mod}+minus" = "scratchpad show";
|
|
|
|
|
|
|
|
"${mod}+Shift+c" = "reload";
|
|
|
|
|
2021-11-22 08:04:54 +01:00
|
|
|
"${mod}+Shift+f" = "exec --no-startup-id ${rofiPower}/bin/rofi-power";
|
2021-11-12 17:10:17 +01:00
|
|
|
"${mod}+l" = "exec ${swaylockcmd}";
|
|
|
|
"${mod}+p" = "mode resize";
|
|
|
|
|
2022-11-11 20:39:13 +01:00
|
|
|
"${mod}+Pause" = "mode passthrough";
|
|
|
|
|
2022-10-05 11:32:13 +02:00
|
|
|
"${mod}+c" = mkIf config.eboskma.programs.emacs.enable "exec ${config.eboskma.programs.emacs.package}/bin/emacsclient -c";
|
2022-07-29 09:57:50 +02:00
|
|
|
|
2021-11-18 15:02:12 +01:00
|
|
|
"${mod}+Print" = "exec ${pkgs.grim}/bin/grim -o $(${pkgs.sway}/bin/swaymsg -t get_outputs | ${pkgs.jq}/bin/jq -r '.[] | select(.focused) | .name')";
|
|
|
|
"${mod}+Shift+Print" = "exec ${pkgs.grim}/bin/grim -o $(${pkgs.sway}/bin/swaymsg -t get_outputs | ${pkgs.jq}/bin/jq -r '.[] | select(.focused) | .name') - | ${pkgs.wl-clipboard}/bin/wl-copy -t \"image/png\" -f";
|
|
|
|
"${mod}+Shift+Ctrl+Print" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.wl-clipboard}/bin/wl-copy -t \"image/png\" -f";
|
|
|
|
"${mod}+Shift+Alt+Print" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\"";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
2021-11-25 17:18:13 +01:00
|
|
|
"XF86AudioRaiseVolume" = "exec ${pkgs.pamedia}/bin/pamedia up";
|
|
|
|
"XF86AudioLowerVolume" = "exec ${pkgs.pamedia}/bin/pamedia down";
|
|
|
|
"XF86AudioMute" = "exec ${pkgs.pamedia}/bin/pamedia mute";
|
2021-11-12 17:10:17 +01:00
|
|
|
"XF86Calculator" = "exec ${pkgs.gnome.gnome-calculator}/bin/gnome-calculator";
|
2022-04-11 09:57:19 +02:00
|
|
|
|
2022-11-19 17:23:53 +01:00
|
|
|
"${mod}+d" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client --toggle-panel --skip-wait";
|
|
|
|
"${mod}+Shift+d" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client --toggle-dnd --skip-wait";
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
|
|
|
|
2022-11-11 20:39:13 +01:00
|
|
|
modes = {
|
|
|
|
passthrough = {
|
|
|
|
"${mod}+Pause" = "mode default";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-12-20 12:07:24 +01:00
|
|
|
# terminal = "${pkgs.alacritty}/bin/alacritty";
|
|
|
|
terminal = "${pkgs.foot}/bin/foot";
|
2021-11-12 17:10:17 +01:00
|
|
|
|
|
|
|
window = {
|
|
|
|
border = 1;
|
|
|
|
titlebar = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
workspaceAutoBackAndForth = true;
|
|
|
|
|
2022-02-21 21:20:04 +01:00
|
|
|
seat = {
|
|
|
|
"*" = {
|
|
|
|
hide_cursor = "when-typing enable";
|
|
|
|
};
|
|
|
|
};
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
|
|
|
extraConfig = ''
|
|
|
|
for_window [app_id="^.*"] inhibit_idle fullscreen
|
|
|
|
for_window [class="^.*"] inhibit_idle fullscreen
|
2022-08-09 17:03:21 +02:00
|
|
|
for_window [app_id="org.gnome.Calculator"] floating enable
|
2021-12-06 09:58:39 +01:00
|
|
|
for_window [shell="xwayland"] title_format "%title [XWayland]"
|
2021-11-12 17:10:17 +01:00
|
|
|
|
|
|
|
exec --no-startup-id ${pkgs.networkmanagerapplet}/bin/nm-applet --indicator
|
2022-03-01 22:19:03 +01:00
|
|
|
|
2021-11-23 12:09:24 +01:00
|
|
|
include /etc/sway/config.d/*
|
2021-11-12 17:10:17 +01:00
|
|
|
'';
|
2022-08-18 16:37:43 +02:00
|
|
|
# exec --no-startup-id ${pkgs.swaynotificationcenter}/bin/swaync
|
2022-01-09 14:00:24 +01:00
|
|
|
|
|
|
|
# exec --no-startup-id ${pkgs.swayidle}/bin/swayidle -w timeout 900 "${swaylockcmd}"
|
|
|
|
# exec --no-startup-id ${pkgs.swayidle}/bin/swayidle -w timeout 1200 "${pkgs.sway}/bin/swaymsg 'output * dpms off'" resume "${pkgs.sway}/bin/swaymsg 'output * dpms on'"
|
2022-01-06 12:28:23 +01:00
|
|
|
# exec_always --no-startup-id systemctl --user import-environment _JAVA_AWT_WM_NONREPARENTING MOZ_ENABLE_WAYLAND MOZ_DBUS_REMOTE QT_QPA_PLATFORM QT_WAYLAND_DISABLE_WINDOWDECORATION QT_QPA_PLATFORMTHEME SDL_VIDEODRIVER SSH_AUTH_SOCK
|
|
|
|
# exec_always --no-startup-id dbus-update-activation-environment --systemd _JAVA_AWT_WM_NONREPARENTING MOZ_ENABLE_WAYLAND MOZ_DBUS_REMOTE QT_QPA_PLATFORM QT_WAYLAND_DISABLE_WINDOWDECORATION QT_QPA_PLATFORMTHEME SDL_VIDEODRIVER SSH_AUTH_SOCK
|
2021-11-18 15:02:12 +01:00
|
|
|
|
2021-11-29 08:05:46 +01:00
|
|
|
# extraSessionCommands =
|
|
|
|
# ''
|
|
|
|
# export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
# export MOZ_ENABLE_WAYLAND=1
|
|
|
|
# export MOZ_DBUS_REMOTE=1
|
|
|
|
# export QT_QPA_PLATFORM=wayland
|
|
|
|
# export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
|
|
|
|
# export QT_QPA_PLATFORMTHEME=qt5ct
|
|
|
|
# export SDL_VIDEODRIVER=wayland
|
|
|
|
# export SSH_AUTH_SOCK="''${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh"
|
|
|
|
# '';
|
2021-11-18 15:02:12 +01:00
|
|
|
|
|
|
|
wrapperFeatures = {
|
|
|
|
base = true;
|
|
|
|
gtk = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
xwayland = true;
|
2022-01-06 12:28:23 +01:00
|
|
|
|
2022-03-18 21:14:51 +01:00
|
|
|
systemdIntegration = true;
|
2021-11-18 15:02:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
|
|
|
file.".wallpapers".source = ./wallpapers;
|
|
|
|
|
|
|
|
packages = with pkgs; [
|
2022-04-11 09:57:19 +02:00
|
|
|
# dunst
|
2022-02-03 22:57:53 +01:00
|
|
|
# swayidle
|
|
|
|
# swaylock-effects
|
2021-11-18 15:02:12 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-01-09 14:00:24 +01:00
|
|
|
services = {
|
|
|
|
swayidle = {
|
|
|
|
enable = true;
|
|
|
|
timeouts = [
|
2022-03-01 22:19:03 +01:00
|
|
|
{
|
|
|
|
timeout = 900;
|
|
|
|
command = swaylockcmd;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
timeout = 1200;
|
|
|
|
command = "${pkgs.sway}/bin/swaymsg 'output * dpms off'";
|
2022-04-04 09:41:26 +02:00
|
|
|
resumeCommand = "${pkgs.sway}/bin/swaymsg 'output * dpms on'";
|
2022-03-01 22:19:03 +01:00
|
|
|
}
|
2022-01-09 14:00:24 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-11-18 15:02:12 +01:00
|
|
|
systemd.user.targets.tray = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Home Manager System Tray";
|
2022-04-27 00:21:19 +02:00
|
|
|
Requires = [ "graphical-session-pre.target" ];
|
2021-11-18 15:02:12 +01:00
|
|
|
};
|
2021-11-12 17:10:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|