nixos-config/common/home-manager/wayland/sway.nix

118 lines
4.3 KiB
Nix
Raw Normal View History

2022-01-06 21:14:02 -05:00
{ pkgs, ... }:
let
2022-05-11 17:18:58 -04:00
modifier = "Mod4";
2022-01-06 21:14:02 -05:00
terminal = "alacritty";
in {
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = "1";
MOZ_USE_XINPUT2 = "1";
};
home.packages = with pkgs; [ swayidle wl-clipboard wlroots ];
wayland.windowManager.sway = {
enable = true;
wrapperFeatures.gtk = true;
config = {
inherit modifier terminal;
menu = "wofi --show drun";
fonts = {
names = [ "UbuntuMono" ];
style = "Medium";
size = 11.0;
};
bars = [{ command = "waybar"; }];
window.border = 1;
gaps = {
inner = 10;
outer = 5;
};
colors = {
unfocused.border = "#333333";
unfocused.background = "#000000a0";
unfocused.text = "#a0a0a0";
unfocused.indicator = "#2d292e";
unfocused.childBorder = "#333333";
focused.border = "#808080";
focused.background = "#000000";
focused.text = "#ffffff";
focused.indicator = "#2d292e";
focused.childBorder = "#ffffff";
focusedInactive.border = "#333333";
focusedInactive.background = "#000000";
focusedInactive.text = "#ffffff";
focusedInactive.indicator = "#4e4850";
focusedInactive.childBorder = "#333333";
urgent.border = "#000000";
urgent.background = "#900000";
urgent.text = "#ffffff";
urgent.indicator = "#900000";
urgent.childBorder = "#000000";
};
startup = map (x: { command = x; }) [
''~/.azotebg''
# Make wob channels
''mkfifo $SWAYSOCK.volume.wob && tail -f $SWAYSOCK.volume.wob | wob''
''mkfifo $SWAYSOCK.brightness.wob && tail -f $SWAYSOCK.brightness.wob | wob \
--border-color "#FFFF00FF" --bar-color "#FFFF00FF"''
2022-01-06 21:14:02 -05:00
''swayidle timeout 120 'swaylock -f --grace=180' \
timeout 600 'systemctl suspend' \
before-sleep 'swaylock -f' ''
''export XDG_SESSION_TYPE=wayland''
''export XDG_CURRENT_DESKTOP=sway''
];
keybindings = let
# Volume using pamixer and wob
audio-disp = ''pamixer --get-volume > $SWAYSOCK.volume.wob'';
2022-01-06 21:14:02 -05:00
audio = cmd: "exec pamixer ${cmd} && ${audio-disp}";
# Brightness using brightnessctl and wob
2022-06-06 17:48:20 -04:00
brightness-disp = ''brightnessctl -e -m | cut -d "," -f4 | tr -d "%" > $SWAYSOCK.brightness.wob'';
brightness = x: "exec brightnessctl -e set ${x} && ${brightness-disp}";
# Play controls using playerctl
2022-01-06 21:14:02 -05:00
playerctl = cmd: "exec playerctl ${cmd}";
2022-04-13 17:56:08 -04:00
# Grim screenshot file name
2022-06-06 19:04:14 -04:00
filename = ''~/Pictures/$(date +%Y-%m-%d_%H-%m-%S).png'';
2022-01-06 21:14:02 -05:00
in pkgs.lib.mkOptionDefault {
"${modifier}+Shift+d" = ''exec wofi --show run'';
2022-06-06 19:04:14 -04:00
"${modifier}+Shift+m" = ''exec swaylock'';
2022-01-06 21:14:02 -05:00
# Screenshot
2022-04-13 17:56:08 -04:00
"Print" = ''exec grim ${filename}'';
"Shift+Print" = ''exec grim -g "$(slurp)" ${filename}'';
"${modifier}+Print" = ''exec grim -g "$(swaymsg -t get_tree | jq -j '.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"')" ${filename}'';
2022-01-06 21:14:02 -05:00
# Special XF86 key bindings
"XF86AudioRaiseVolume" = audio "-ui 2";
"XF86AudioLowerVolume" = audio "-ud 2";
"Shift+XF86AudioRaiseVolume" = audio "-ui 2 --allow-boost";
"Shift+XF86AudioLowerVolume" = audio "-ud 2 --allow-boost";
"XF86AudioMute" = ''exec pamixer --toggle-mute'';
"XF86AudioMicMute" = ''exec pactl set-source-mute @DEFAULT_SOURCE@ toggle'';
2022-03-03 09:09:03 -05:00
"XF86MonBrightnessDown" = brightness "4%-";
2022-06-06 19:04:14 -04:00
"XF86MonBrightnessUp" = brightness "4%+";
"XF86AudioPlay" = playerctl "play-pause";
"XF86AudioNext" = playerctl "next";
"XF86AudioPrev" = playerctl "previous";
# Exit
2022-06-06 19:04:14 -04:00
"${modifier}+Shift+e" = ''exec swaynag -t warning -m \
"You pressed the exit shortcut. Do you really want to exit sway? \
This will end your Wayland session." -b "Yes, exit sway" "swaymsg exit" '';
2022-01-06 21:14:02 -05:00
};
output."*" = {
2022-04-15 09:14:22 -04:00
bg = "${../../../assets/background.png} fill";
2022-01-06 21:14:02 -05:00
};
};
};
}