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;
|
2024-03-10 15:32:42 +00:00
|
|
|
package = pkgs.unstable.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;
|
|
|
|
|
|
|
|
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-04-22 11:02:01 +00:00
|
|
|
"${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel";
|
2024-01-19 14:36:08 +00:00
|
|
|
|
2024-05-06 11:32:00 +00:00
|
|
|
"${mod}+p" = "exec ${pkgs.unstable.sway-contrib.grimshot}/bin/grimshot copy area";
|
|
|
|
"${mod}+Alt+p" = "exec ${pkgs.unstable.sway-contrib.grimshot}/bin/grimshot copy window";
|
2024-04-15 18:34:06 +00:00
|
|
|
"${mod}+Shift+p" = "exec ${pkgs.unstable.sway-contrib.grimshot}/bin/grimshot copy output";
|
|
|
|
|
2024-01-26 12:43:46 +00:00
|
|
|
"${mod}+z" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set 1%-";
|
|
|
|
"${mod}+x" = "exec ${pkgs.brightnessctl}/bin/brightnessctl set +1%";
|
2024-01-26 11:58:50 +00:00
|
|
|
"${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";
|
2024-02-06 16:22:18 +00:00
|
|
|
"${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 = ''
|
2024-05-17 09:05:25 +00:00
|
|
|
for_window [all] title_format ""
|
2024-01-19 14:36:08 +00:00
|
|
|
for_window [title="^oyster$"] floating enable
|
2024-03-04 14:50:42 +00:00
|
|
|
for_window [app_id="^pavucontrol$"] floating enable
|
2024-01-19 14:36:08 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.swaylock = {
|
|
|
|
enable = true;
|
2024-02-06 19:44:56 +00:00
|
|
|
settings = with colors; {
|
2024-01-19 14:36:08 +00:00
|
|
|
ignore-empty-password = true;
|
2024-02-14 15:19:40 +00:00
|
|
|
color = bright.white;
|
2024-02-06 19:44:56 +00:00
|
|
|
key-hl-color = normal.green;
|
|
|
|
bs-hl-color = normal.red;
|
|
|
|
caps-lock-key-hl-color = normal.green;
|
|
|
|
caps-lock-bs-hl-color = normal.red;
|
2024-02-14 15:19:40 +00:00
|
|
|
inside-color = bright.white;
|
|
|
|
inside-clear-color = bright.white;
|
|
|
|
inside-caps-lock-color = bright.white;
|
|
|
|
inside-ver-color = bright.white;
|
|
|
|
inside-wrong-color = bright.white;
|
2024-02-06 19:44:56 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
};
|
2024-02-10 16:41:20 +00:00
|
|
|
|
|
|
|
systemd.user.services = {
|
|
|
|
autotile-rs = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Autotiling for sway (and possibly i3)";
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
2024-04-02 21:41:53 +00:00
|
|
|
ExecStart = "${pkgs.autotiling-rs}/bin/autotiling-rs -w 1 2 3 4 5 6 7 9";
|
2024-02-10 16:41:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Install = {
|
|
|
|
WantedBy = ["sway-session.target"];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-01-19 14:36:08 +00:00
|
|
|
};
|
|
|
|
}
|