Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.0 KiB

{ pkgs, lib, ... }:
let
mod = "Mod4";
in {
# Dependencies
home.packages = with pkgs; [
playerctl # pactl comes with PulseAudio
scrot # Screnshot keybindings
xclip # Copying screenshots to clipboard
];
xsession.windowManager.i3 = {
enable = true;
config = {
defaultWorkspace = "workspace number 1"; # defaults to 10 for some reason
modifier = mod;
# i3-gaps-specific configuration
gaps = {
inner = 12;
smartGaps = true;
};
colors = {
focused = {
border = "#4c566a";
background = "#4c566a";
text = "#eceff4";
indicator = "#ff00ff";
childBorder = "#ff00ff";
};
focusedInactive = {
border = "#434c5e";
background = "#434c5e";
text = "#e5e9f0";
indicator = "#ff00ff";
childBorder = "#ff00ff";
};
unfocused = {
border = "#2e3440";
background = "#2e3440";
text = "#e5e9f0";
indicator = "#ff00ff";
childBorder = "#ff00ff";
};
};
startup = [
{
command = "(systemctl --user restart polybar &) && (nm-applet &) && lock";
always = true;
notification = false;
}
];
keybindings = lib.mkOptionDefault {
"${mod}+Return" = "exec kitty";
"${mod}+Shift+e" = "exec i3-msg exit"; # bypass default session exit confirmation menu
"Mod1+Q" = "exec /etc/profiles/per-user/elnu/bin/rofi-power";
# Audio controls
"XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%";
"XF86AudioLowerVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10%";
"XF86AudioMute" = "exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle";
"XF86AudioMicMute" = "exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle";
# Media player controls
"XF86AudioPlay" = "exec playerctl play-pause";
"XF86AudioNext" = "exec playerctl next";
"XF86AudioPrev" = "exec playerctl previous";
# Multi-screen screenshots with scrot
"Print" = "exec scrot 'screenshot_%Y%m%d_%H%M%S.png' -e 'mkdir -p ~/Pictures/screenshots && mv $f ~/Pictures/screenshots && xclip -selection clipboard -t image/png -i ~/Pictures/screenshots/`ls -1 -t ~/Pictures/screenshots | head -1`"; # All screens
# OSX-like area selection screenshots
"Shift+Print" = "exec scrot -s 'screenshot_%Y%m%d_%H%M%S.png' -e 'mkdir -p ~/Pictures/screenshots && mv $f ~/Pictures/screenshots && xclip -selection clipboard -t image/png -i ~/Pictures/screenshots/`ls -1 -t ~/Pictures/screenshots | head -1`'"; # Area selection
};
keycodebindings = {
"133" = "--release exec rofi -show run -theme";
};
window.commands = [
{
command = "border pixel 0";
criteria = { class = "^.*"; };
}
];
bars = [];
};
};
}