feat(sway): cleanup

This commit is contained in:
winston 2024-09-08 02:14:51 +02:00
parent ded6d601af
commit 96a2ec0dac
Signed by: winston
GPG key ID: 3786770EDBC2B481
4 changed files with 263 additions and 263 deletions

View file

@ -6,6 +6,15 @@
... ...
}: }:
let let
condition = (
builtins.elem osConfig.dotfiles.desktop [
"hyprland"
"sway"
"swayfx"
]
);
isSwayFx = osConfig.dotfiles.desktop == "swayfx";
fonts = { fonts = {
names = [ names = [
"IBM Plex Sans" "IBM Plex Sans"
@ -21,9 +30,20 @@ let
red = "#f38ba8"; red = "#f38ba8";
mauve = "#cba6f7"; mauve = "#cba6f7";
}; };
mod = "Mod4";
modMove = "${mod}+Shift";
modFocus = "${mod}+Ctrl";
hyper = "Mod4+Mod1+Shift+Ctrl";
filebrowser = lib.getExe pkgs.nautilus;
playerctl = lib.getExe pkgs.playerctl;
screenshot = "${lib.getExe pkgs.sway-contrib.grimshot} copy area";
swayosd-client = "${pkgs.swayosd}/bin/swayosd-client";
swayosd-server = "${pkgs.swayosd}/bin/swayosd-server";
in in
{ {
config = lib.mkIf (osConfig.dotfiles.desktop == "sway") { config = lib.mkIf condition {
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home = { home = {
@ -53,21 +73,17 @@ in
udiskie.enable = true; udiskie.enable = true;
}; };
wayland.windowManager.sway = wayland.windowManager.sway = {
let
modifier = "Mod4";
in
{
enable = true; enable = true;
package = null; package = null;
checkConfig = false; checkConfig = false;
config = rec { config = rec {
inherit modifier; modifier = mod;
focus.wrapping = "no"; focus.wrapping = "no";
focus.mouseWarping = "container"; focus.mouseWarping = "container";
startup = [ startup = [
{ {
command = "${pkgs.autotiling}/bin/autotiling -l2"; command = "${lib.getExe pkgs.autotiling} -l2";
always = true; always = true;
} }
{ command = "1password --silent"; } { command = "1password --silent"; }
@ -82,7 +98,7 @@ in
always = true; always = true;
} }
{ {
command = "${pkgs.swayosd}/bin/swayosd-server"; command = swayosd-server;
always = true; always = true;
} }
{ command = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; } { command = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; }
@ -97,19 +113,7 @@ in
scale = "2"; scale = "2";
bg = "${../wallpapers/dhm_1610.png} fill #171320"; bg = "${../wallpapers/dhm_1610.png} fill #171320";
}; };
keybindings = keybindings = {
let
mod = modifier;
modMove = "${mod}+Shift";
modFocus = "${mod}+Ctrl";
hyper = "Mod4+Mod1+Shift+Ctrl";
filebrowser = lib.getExe pkgs.nautilus;
screenshot = "${lib.getExe pkgs.sway-contrib.grimshot} copy area";
playerctl = lib.getExe pkgs.playerctl;
swayosd = pkgs.swayosd + "/bin/swayosd-client";
in
{
"${mod}+Shift+b" = "border none"; "${mod}+Shift+b" = "border none";
"${mod}+b" = "border pixel 2"; "${mod}+b" = "border pixel 2";
"${mod}+n" = "border normal"; "${mod}+n" = "border normal";
@ -197,12 +201,12 @@ in
# rofi instead of drun # rofi instead of drun
"${mod}+space" = "exec --no-startup-id ${menu} -show drun -dpi $dpi"; "${mod}+space" = "exec --no-startup-id ${menu} -show drun -dpi $dpi";
# 1password # 1password
"${mod}+Shift+space" = "exec ${pkgs._1password-gui}/bin/1password --quick-access"; "${mod}+Shift+space" = "exec ${lib.getExe pkgs._1password-gui} --quick-access";
# audio # audio
"XF86AudioRaiseVolume" = "exec ${swayosd} --output-volume 5"; "XF86AudioRaiseVolume" = "exec ${swayosd-client} --output-volume 5";
"XF86AudioLowerVolume" = "exec ${swayosd} --output-volume -5"; "XF86AudioLowerVolume" = "exec ${swayosd-client} --output-volume -5";
"XF86AudioMute" = "exec ${swayosd} --output-volume mute-toggle"; "XF86AudioMute" = "exec ${swayosd-client} --output-volume mute-toggle";
"XF86AudioNext" = "exec --no-startup-id ${playerctl} next"; "XF86AudioNext" = "exec --no-startup-id ${playerctl} next";
"XF86AudioPrev" = "exec --no-startup-id ${playerctl} previous"; "XF86AudioPrev" = "exec --no-startup-id ${playerctl} previous";
"XF86AudioPlay" = "exec --no-startup-id ${playerctl} play-pause"; "XF86AudioPlay" = "exec --no-startup-id ${playerctl} play-pause";
@ -263,21 +267,21 @@ in
hideEdgeBorders = "none"; hideEdgeBorders = "none";
border = 2; border = 2;
}; };
gaps = { gaps = lib.mkIf isSwayFx {
inner = 5; inner = 5;
outer = 2; outer = 2;
}; };
bars = [ bars = [
{ {
inherit fonts; inherit fonts;
mode = "hide";
position = "top"; position = "top";
statusCommand = "${config.programs.i3status-rust.package}/bin/i3status-rs ~/.config/i3status-rust/config-top.toml"; statusCommand = "${lib.getExe config.programs.i3status-rust.package} ~/.config/i3status-rust/config-top.toml";
} }
]; ];
}; };
extraConfig = '' extraConfig =
''
for_window [floating] border pixel 2 for_window [floating] border pixel 2
# floating sticky # floating sticky
@ -305,10 +309,13 @@ in
# keep apps in scratchpad # keep apps in scratchpad
for_window [class="discord"] move scratchpad sticky for_window [class="discord"] move scratchpad sticky
# fullscreen apps inhibit idle
for_window [class=".*"] inhibit_idle fullscreen
set $mode_gaps Gaps: (o)uter, (i)nner set $mode_gaps Gaps: (o)uter, (i)nner
set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global) set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global) set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
bindsym ${modifier}+Shift+g mode "$mode_gaps" bindsym ${mod}+Shift+g mode "$mode_gaps"
mode "$mode_gaps" { mode "$mode_gaps" {
bindsym o mode "$mode_gaps_outer" bindsym o mode "$mode_gaps_outer"
@ -340,7 +347,8 @@ in
bindsym Return mode "$mode_gaps" bindsym Return mode "$mode_gaps"
bindsym Escape mode "default" bindsym Escape mode "default"
} }
''
+ lib.optionalString isSwayFx ''
shadows enable shadows enable
shadow_color #11111b99 shadow_color #11111b99
shadow_blur_radius 20 shadow_blur_radius 20
@ -351,8 +359,6 @@ in
blur enable blur enable
blur_passes 2 blur_passes 2
blur_radius 4 blur_radius 4
layer_effects "swaync-notification-window" blur enable; shadows enable; corner_radius 5;
''; '';
systemd = { systemd = {
enable = true; enable = true;

View file

@ -5,44 +5,28 @@
... ...
}: }:
let let
inherit (config.dotfiles) desktop;
condition = ( condition = (
builtins.elem config.dotfiles.desktop [ builtins.elem desktop [
"hyprland" "hyprland"
"sway" "sway"
"swayfx"
] ]
); );
binary =
{
swayfx = "sway";
sway = "sway";
hyprland = "hypr";
}
.${desktop} or (throw "greetd: desktop not supported");
in in
{ {
config = lib.mkIf condition { config = lib.mkIf condition {
programs.regreet = { services.greetd = {
enable = true; enable = true;
settings = { settings.default_session.command = "${lib.getExe pkgs.greetd.tuigreet} --cmd '${pkgs.dbus}/bin/dbus-run-session ${binary}'";
background = {
path = ../../../home/wallpapers/dhm_1610.png;
fit = "Cover";
}; };
GTK = {
cursor_theme_name = "macOS-Monterey";
font_name = "IBM Plex Sans 16";
icon_theme_name = "WhiteSur";
theme_name = "WhiteSur-Dark";
};
};
font.name = "IBM Plex Sans";
cursorTheme = {
name = "macOS-Monterey";
package = pkgs.apple-cursor;
};
iconTheme = {
name = "WhiteSur-Dark";
package = pkgs.whitesur-icon-theme;
};
theme = {
name = "WhiteSur-Dark";
package = pkgs.whitesur-gtk-theme;
};
};
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
security.pam.services.greetd = { security.pam.services.greetd = {
enableGnomeKeyring = true; enableGnomeKeyring = true;

View file

@ -4,8 +4,17 @@
pkgs, pkgs,
... ...
}: }:
let
condition = (
builtins.elem config.dotfiles.desktop [
"hyprland"
"sway"
"swayfx"
]
);
in
{ {
config = lib.mkIf (config.dotfiles.desktop == "sway") { config = lib.mkIf condition {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# file management # file management
p7zip p7zip
@ -28,7 +37,7 @@
programs.sway = { programs.sway = {
enable = true; enable = true;
package = pkgs.swayfx; package = lib.mkIf (config.dotfiles.desktop == "swayfx") pkgs.swayfx;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
swaylock-effects swaylock-effects
swayidle swayidle
@ -61,8 +70,8 @@
"org.freedesktop.impl.portal.Settings" = [ "darkman" ]; "org.freedesktop.impl.portal.Settings" = [ "darkman" ];
}; };
extraPortals = with pkgs; [ extraPortals = with pkgs; [
darkman
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
darkman
]; ];
wlr.enable = true; wlr.enable = true;
xdgOpenUsePortal = true; xdgOpenUsePortal = true;

View file

@ -74,6 +74,7 @@ rec {
"gnome" "gnome"
"hyprland" "hyprland"
"sway" "sway"
"swayfx"
] ]
); );
default = if (pkgs.stdenv.isLinux && isGraphical) then "sway" else null; default = if (pkgs.stdenv.isLinux && isGraphical) then "sway" else null;