This commit is contained in:
2024-10-10 00:35:46 -04:00
parent 7ba187dff3
commit 3c08138ccc
6 changed files with 42 additions and 42 deletions

View File

@@ -7,10 +7,10 @@
prefer-no-csd = true;
spawn-at-startup = [
#waybar
# waybar
{ command = [ "${pkgs.waybar}/bin/waybar" ]; }
#swaybg works on more than just sway (sets a wallpaper)
# swaybg works on more than just sway (sets a wallpaper)
{
command = [
"${pkgs.swaybg}/bin/swaybg"
@@ -36,25 +36,25 @@
];
binds = with config.lib.niri.actions; {
#application launcher
# application launcher
"Mod+Space".action = spawn [
"${pkgs.rofi-wayland}/bin/rofi"
"-show"
"combi"
];
#open a terminal
# open a terminal
"Mod+T".action = spawn "${pkgs.alacritty}/bin/alacritty";
#lock the screen
# lock the screen
"Mod+X".action = spawn "${pkgs.swaylock}/bin/swaylock";
#screenshotting
# screenshotting
"Print".action = screenshot;
"Ctrl+Print".action = screenshot-screen;
"Alt+Print".action = screenshot-window;
#Volume control
# Volume control
"XF86AudioRaiseVolume".action = spawn [
"${pkgs.avizo}/bin/volumectl"
"-u"
@@ -85,12 +85,12 @@
"down"
];
#Force close a window
# Force close a window
"Mod+Q".action = close-window;
"Mod+Shift+Q".action = quit;
#bindings for like window management ig
# bindings for like window management ig
"Mod+Left".action = focus-column-left;
"Mod+Down".action = focus-window-down;