mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
530 lines
21 KiB
Nix
530 lines
21 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
imports = [./autoRotate.nix ./randomWallpaper.nix ./redShift.nix ./virtKeyboard.nix];
|
|
options = {
|
|
alyraffauf.desktop.sway.enable = lib.mkEnableOption "Sway with extra apps.";
|
|
alyraffauf.desktop.sway.randomWallpaper = lib.mkOption {
|
|
description = "Whether to enable random wallpaper script.";
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
alyraffauf.desktop.sway.autoSuspend = lib.mkOption {
|
|
description = "Whether to autosuspend on idle.";
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
alyraffauf.desktop.sway.redShift = lib.mkOption {
|
|
description = "Whether to redshift display colors at night.";
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
alyraffauf.desktop.sway.tabletMode = {
|
|
enable = lib.mkEnableOption "Tablet mode for Sway.";
|
|
autoRotate = lib.mkOption {
|
|
description = "Whether to autorotate screen.";
|
|
default = config.alyraffauf.desktop.sway.tabletMode.enable;
|
|
type = lib.types.bool;
|
|
};
|
|
menuButton = lib.mkOption {
|
|
description = "Whether to add menu button for waybar.";
|
|
default = config.alyraffauf.desktop.sway.tabletMode.enable;
|
|
type = lib.types.bool;
|
|
};
|
|
virtKeyboard = lib.mkOption {
|
|
description = "Whether to enable dynamic virtual keyboard.";
|
|
default = config.alyraffauf.desktop.sway.tabletMode.enable;
|
|
type = lib.types.bool;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.desktop.sway.enable {
|
|
alyraffauf = {
|
|
apps = {
|
|
alacritty.enable = lib.mkDefault true;
|
|
firefox.enable = lib.mkDefault true;
|
|
fuzzel.enable = lib.mkDefault true;
|
|
mako.enable = lib.mkDefault true;
|
|
swaylock.enable = lib.mkDefault true;
|
|
thunar.enable = lib.mkDefault true;
|
|
waybar.enable = lib.mkDefault true;
|
|
wlogout.enable = lib.mkDefault true;
|
|
};
|
|
desktop = {
|
|
theme.enable = lib.mkDefault true;
|
|
defaultApps.enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
services.cliphist.enable = lib.mkDefault true;
|
|
services.swayosd.enable = lib.mkDefault true;
|
|
|
|
programs.waybar = {
|
|
settings = {
|
|
mainBar = {
|
|
modules-left =
|
|
if config.alyraffauf.desktop.sway.tabletMode.menuButton
|
|
then ["custom/menu" "custom/sway-close" "sway/workspaces" "sway/scratchpad" "sway/mode"]
|
|
else ["sway/workspaces" "sway/scratchpad" "sway/mode"];
|
|
};
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.sway.enable = true;
|
|
wayland.windowManager.sway.package =
|
|
if config.alyraffauf.desktop.sway.tabletMode.enable
|
|
then pkgs.sway
|
|
else pkgs.swayfx;
|
|
wayland.windowManager.sway.wrapperFeatures.gtk = true;
|
|
wayland.windowManager.sway.checkConfig = false;
|
|
|
|
alyraffauf.desktop.theme.gtk.hideTitleBar =
|
|
if config.wayland.windowManager.sway.package == pkgs.sway
|
|
then true
|
|
else false;
|
|
|
|
wayland.windowManager.sway.config = let
|
|
modifier = "Mod4";
|
|
|
|
# Default apps
|
|
browser = config.alyraffauf.desktop.defaultApps.webBrowser.exe;
|
|
fileManager = lib.getExe pkgs.xfce.thunar;
|
|
editor = config.alyraffauf.desktop.defaultApps.editor.exe;
|
|
terminal = config.alyraffauf.desktop.defaultApps.terminal.exe;
|
|
|
|
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";
|
|
|
|
# Sway desktop utilities
|
|
bar = lib.getExe pkgs.waybar;
|
|
launcher = lib.getExe pkgs.fuzzel;
|
|
notifyd = lib.getExe pkgs.mako;
|
|
wallpaperd = lib.getExe pkgs.swaybg;
|
|
logout = lib.getExe pkgs.wlogout;
|
|
lock = lib.getExe pkgs.swaylock;
|
|
idled =
|
|
if config.alyraffauf.desktop.sway.autoSuspend
|
|
then ''
|
|
${lib.getExe pkgs.swayidle} -w \
|
|
timeout 240 '${lib.getExe pkgs.brightnessctl} -s set 10' \
|
|
resume '${lib.getExe pkgs.brightnessctl} -r' \
|
|
timeout 300 '${lock}' \
|
|
timeout 330 '${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} "output * dpms off"' \
|
|
resume '${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} "output * dpms on"' \
|
|
timeout 900 '${lib.getExe' pkgs.systemd "systemctl"} suspend' \
|
|
before-sleep '${media} pause' \
|
|
before-sleep '${lock}'
|
|
''
|
|
else ''
|
|
${lib.getExe pkgs.swayidle} -w \
|
|
timeout 240 '${lib.getExe pkgs.brightnessctl} -s set 10' \
|
|
resume '${lib.getExe pkgs.brightnessctl} -r' \
|
|
timeout 300 '${lock}' \
|
|
timeout 330 '${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} "output * dpms off"' \
|
|
resume '${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} "output * dpms on"' \
|
|
before-sleep '${media} pause' \
|
|
before-sleep '${lock}'
|
|
'';
|
|
|
|
screenshot = lib.getExe' pkgs.shotman "shotman";
|
|
# screenshot_folder = "~/pics/screenshots";
|
|
# screenshot_screen = "${screenshot} ${screenshot_folder}/$(date +'%s_grim.png')";
|
|
# screenshot_region = "${screenshot} -m region -o ${screenshot_folder}";
|
|
screenshot_screen = "${screenshot} --capture output";
|
|
screenshot_region = "${screenshot} --capture region";
|
|
|
|
qt_platform_theme = "gtk2";
|
|
gdk_scale = "1.5";
|
|
|
|
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.alyraffauf.desktop.theme.colors.primary}EE";
|
|
colors.focused = {
|
|
background = "${config.alyraffauf.desktop.theme.colors.primary}EE";
|
|
border = "${config.alyraffauf.desktop.theme.colors.primary}EE";
|
|
childBorder = "${config.alyraffauf.desktop.theme.colors.primary}EE";
|
|
indicator = "${config.alyraffauf.desktop.theme.colors.primary}EE";
|
|
text = "${config.alyraffauf.desktop.theme.colors.text}";
|
|
};
|
|
colors.focusedInactive = {
|
|
background = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
border = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
childBorder = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
indicator = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
text = "${config.alyraffauf.desktop.theme.colors.text}";
|
|
};
|
|
colors.unfocused = {
|
|
background = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
border = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
childBorder = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
indicator = "${config.alyraffauf.desktop.theme.colors.inactive}AA";
|
|
text = "${config.alyraffauf.desktop.theme.colors.text}";
|
|
};
|
|
defaultWorkspace = "workspace number 1";
|
|
focus = {
|
|
followMouse = "always";
|
|
newWindow = "focus";
|
|
# mouseWarping = "container";
|
|
};
|
|
fonts = {
|
|
names = ["${config.alyraffauf.desktop.theme.font.name}"];
|
|
style = "Bold";
|
|
size = config.alyraffauf.desktop.theme.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";
|
|
};
|
|
"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";
|
|
|
|
# TODO: scroll with mouse up/down through workspaces
|
|
|
|
# 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 = "${bar}";}
|
|
{command = "${wallpaperd}";}
|
|
{command = "${fileManager} --daemon";}
|
|
{command = "${idled}";}
|
|
{command = "${notifyd}";}
|
|
{command = "${lib.getExe pkgs.autotiling}";}
|
|
{command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";}
|
|
{command = ''${lib.getExe' pkgs.networkmanagerapplet "nm-applet"}'';}
|
|
{command = ''${lib.getExe' pkgs.blueman "blueman-applet"}'';}
|
|
{command = ''${lib.getExe' pkgs.swayosd "swayosd-server"}'';}
|
|
{command = ''${lib.getExe' pkgs.playerctl "playerctld"}'';}
|
|
{command = ''${lib.getExe' pkgs.wl-clipboard "wl-paste"} --type image --watch ${lib.getExe pkgs.cliphist} store'';}
|
|
{command = ''${lib.getExe' pkgs.wl-clipboard "wl-paste"} --type text --watch ${lib.getExe pkgs.cliphist} store'';}
|
|
];
|
|
output = {
|
|
"BOE 0x095F Unknown" = {
|
|
scale = "1.5";
|
|
};
|
|
"LG Display 0x0569 Unknown" = {
|
|
scale = "1.25";
|
|
};
|
|
"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;
|
|
};
|
|
|
|
wayland.windowManager.sway.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.alyraffauf.desktop.theme.colors.shadow}
|
|
|
|
default_dim_inactive 0.05
|
|
|
|
layer_effects launcher blur enable
|
|
layer_effects launcher blur_ignore_transparent enable
|
|
layer_effects swaybar blur enable
|
|
layer_effects swaybar blur_ignore_transparent enable
|
|
layer_effects waybar blur enable
|
|
layer_effects waybar blur_ignore_transparent enable
|
|
layer_effects notifications blur enable
|
|
layer_effects notifications blur_ignore_transparent enable
|
|
layer_effects logout_dialog blur enable
|
|
layer_effects swayosd blur enable
|
|
layer_effects swayosd blur_ignore_transparent enable"
|
|
else ""
|
|
}
|
|
|
|
'';
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
configPackages = [pkgs.xdg-desktop-portal-wlr];
|
|
extraPortals = [pkgs.xdg-desktop-portal-wlr];
|
|
};
|
|
};
|
|
}
|