this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: screen mirroring using wl-mirror

+4 -1
+1
users/hannah/desktop.nix
··· 27 27 xwayland-satellite 28 28 dconf 29 29 gsettings-desktop-schemas 30 + wl-mirror 30 31 ]; 31 32 }
+3 -1
users/hannah/niri/keybinds.nix
··· 1 - { lib, config, pkgs, ... }: 1 + { config, pkgs, ... }: 2 2 3 3 let 4 4 apps = import ./applications.nix { inherit pkgs; }; ··· 9 9 grim = "${pkgs.grim}/bin/grim"; 10 10 satty = "${pkgs.satty}/bin/satty"; 11 11 slurp = "${pkgs.slurp}/bin/slurp"; 12 + mirror = "${pkgs.wl-mirror}/bin/wl-mirror"; 12 13 13 14 volume-up = spawn pactl [ "set-sink-volume" "@DEFAULT_SINK@" "+5%" ]; 14 15 volume-down = spawn pactl [ "set-sink-volume" "@DEFAULT_SINK@" "-5%" ]; ··· 39 40 "super+shift+s".action = screenshot; 40 41 #"control+shift+2".action = screenshot-window { write-to-disk = true; }; 41 42 43 + "super+p".action = spawn mirror ["eDP-1"]; 42 44 43 45 "super+Left".action = focus-column-left; 44 46 "super+Right".action = focus-column-right;