rice/users/buffet/sway.nix

232 lines
6.4 KiB
Nix
Raw Normal View History

2024-01-19 14:36:08 +00:00
{
pkgs,
lib,
...
}: let
colors = import ./colors.nix;
in {
home-manager.users.buffet = {
wayland.windowManager.sway = {
enable = true;
package = pkgs.swayfx.overrideAttrs (_: {passthru.providedSessions = ["sway"];});
2024-01-19 14:36:08 +00:00
systemd.enable = true;
wrapperFeatures.gtk = true;
config = let
mod = "Mod4";
in {
input."*" = {
xkb_layout = "us";
xkb_options = "compose:prsc";
};
seat."*" = {hide_cursor = "when-typing enable";};
floating.modifier = mod;
# TODO: screenshot keybinds
keybindings = let
makeWorkspaceBinds = num: let
ws = toString num;
in {
"${mod}+${ws}" = "workspace ${ws}";
"${mod}+Shift+${ws}" = "move container to workspace ${ws}";
};
joinAttrSets = builtins.foldl' (x: y: x // y) {};
in
{
"${mod}+Return" = "exec ${pkgs.foot}/bin/foot";
"${mod}+i" = "exec ${pkgs.firefox-wayland}/bin/firefox";
"${mod}+Shift+y" = "exec swaylock";
2024-02-01 14:38:00 +00:00
"${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel"; # TODO: config
2024-01-19 14:36:08 +00:00
"${mod}+z" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set 1%-";
"${mod}+x" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set +1%";
"${mod}+Shift+z" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set 5%-";
"${mod}+Shift+x" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set +5%";
2024-01-19 14:36:08 +00:00
2024-01-21 13:22:13 +00:00
"${mod}+Shift+q" = "kill";
2024-01-19 14:36:08 +00:00
"${mod}+Shift+c" = "reload";
"${mod}+Shift+e" = "exit";
"${mod}+h" = "focus left";
"${mod}+j" = "focus down";
"${mod}+k" = "focus up";
"${mod}+l" = "focus right";
"${mod}+Left" = "focus left";
"${mod}+Down" = "focus down";
"${mod}+Up" = "focus up";
"${mod}+Right" = "focus right";
"${mod}+Shift+h" = "move left";
"${mod}+Shift+j" = "move down";
"${mod}+Shift+k" = "move up";
"${mod}+Shift+l" = "move right";
"${mod}+o" = "splith";
"${mod}+u" = "splitv";
"${mod}+s" = "layout stacking";
"${mod}+t" = "layout tabbed";
"${mod}+e" = "layout toggle split";
"${mod}+f" = "fullscreen";
"${mod}+Shift+space" = "floating toggle";
"${mod}+space" = "focus mode_toggle";
2024-01-19 14:36:08 +00:00
"${mod}+Shift+minus" = "move scratchpad";
"${mod}+minus" = "scratchpad show";
}
// (joinAttrSets (map makeWorkspaceBinds (lib.range 1 9)));
output."*" = {
bg = "${colors.wallpaper} solid_color";
};
gaps = {
inner = 12;
left = 8;
right = 8;
bottom = 8;
top = 0;
};
window.border = 1;
fonts = {
names = ["APL386 Unicode"];
2024-01-21 13:22:13 +00:00
style = "Regular";
2024-01-19 14:36:08 +00:00
size = 8.0;
};
colors = rec {
focused = rec {
border = colors.focused;
childBorder = border;
background = border;
text = border;
indicator = border;
};
unfocused = rec {
border = colors.unfocused;
childBorder = border;
background = border;
text = border;
indicator = border;
};
focusedInactive = unfocused;
};
bars = [
{
position = "top";
fonts = {
names = ["APL386 Unicode"];
2024-01-21 13:22:13 +00:00
style = "Regular";
2024-01-19 14:36:08 +00:00
size = 8.0;
};
statusCommand = toString (pkgs.writeScript "status_command" ''
#!/bin/sh
while :; do
energy_full=0
energy_now=0
charging=
for bat in /sys/class/power_supply/*/capacity; do
bat="''${bat%/*}"
read -r full <"$bat/energy_full"
read -r now <"$bat/energy_now"
energy_full=$((energy_full + full))
energy_now=$((energy_now + now))
done
if cat /sys/class/power_supply/*/status | grep -q Charging; then
charging=+
fi
percentage=$((energy_now * 100 / energy_full))
printf '%s %s ' "$charging$percentage%" "$(date +'%H:%M:%S')"
sleep 1
done
'');
colors = rec {
statusline = colors.primary.foreground;
inherit (colors.primary) background;
focusedWorkspace = rec {
background = colors.focused;
border = background;
text = colors.primary.background;
};
inactiveWorkspace = rec {
inherit (colors.primary) background;
border = background;
text = colors.primary.foreground;
};
};
extraConfig = ''
gaps 16 20
'';
}
];
};
extraConfig = ''
for_window [title="."] title_format ""
for_window [title="^oyster$"] floating enable
corner_radius 3
smart_corner_radius enable
shadows enable
2024-01-19 14:36:08 +00:00
'';
};
programs.swaylock = {
enable = true;
settings = with colors; {
2024-01-19 14:36:08 +00:00
ignore-empty-password = true;
color = wallpaper;
key-hl-color = normal.green;
bs-hl-color = normal.red;
caps-lock-key-hl-color = normal.green;
caps-lock-bs-hl-color = normal.red;
inside-color = wallpaper;
inside-clear-color = wallpaper;
inside-caps-lock-color = wallpaper;
inside-ver-color = wallpaper;
inside-wrong-color = wallpaper;
ring-color = bright.white;
ring-clear-color = bright.white;
ring-caps-lock-color = bright.white;
ring-ver-color = bright.white;
ring-wrong-color = bright.white;
2024-01-19 14:36:08 +00:00
};
};
systemd.user.services = {
autotile-rs = {
Unit = {
Description = "Autotiling for sway (and possibly i3)";
};
Service = {
ExecStart = "${pkgs.autotiling-rs}/bin/autotiling-rs";
};
Install = {
WantedBy = ["sway-session.target"];
};
};
};
2024-01-19 14:36:08 +00:00
};
}