mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:03:55 -05:00
Aly Raffauf
05d84e4762
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
brightness = rec {
|
|
bin = lib.getExe' pkgs.swayosd "swayosd-client";
|
|
up = "${bin} --brightness=raise";
|
|
down = "${bin} --brightness=lower";
|
|
};
|
|
|
|
media = rec {
|
|
bin = lib.getExe pkgs.playerctl;
|
|
play = "${bin} play-pause";
|
|
paus = "${bin} pause";
|
|
next = "${bin} next";
|
|
prev = "${bin} previous";
|
|
};
|
|
|
|
screenshot = pkgs.writeShellScript "screenshooter" ''
|
|
FILENAME=${config.xdg.userDirs.pictures}/screenshots/$(date +'%Y-%m-%d-%H:%M:%S_grim.png')
|
|
MAKO_MODE=$(${lib.getExe' pkgs.mako "makoctl"} mode)
|
|
|
|
if echo "$MAKO_MODE" | grep -q "do-not-disturb"; then
|
|
DND=true
|
|
else
|
|
DND=false
|
|
${lib.getExe' pkgs.mako "makoctl"} mode -t do-not-disturb
|
|
fi
|
|
|
|
${lib.getExe pkgs.grim} -g "$(${lib.getExe pkgs.slurp} -o)" "$FILENAME"
|
|
|
|
if [ "$DND" = false ]; then
|
|
${lib.getExe' pkgs.mako "makoctl"} mode -t do-not-disturb
|
|
fi
|
|
|
|
if [ -e "$FILENAME" ]; then
|
|
${lib.getExe' pkgs.wl-clipboard-rs "wl-copy"} -t image/png < $FILENAME
|
|
${lib.getExe' pkgs.libnotify "notify-send"} "Screenshot saved" "$FILENAME" -i "$FILENAME"
|
|
fi
|
|
'';
|
|
|
|
volume = rec {
|
|
bin = lib.getExe' pkgs.swayosd "swayosd-client";
|
|
up = "${bin} --output-volume=raise";
|
|
down = "${bin} --output-volume=lower";
|
|
mute = "${bin} --output-volume=mute-toggle";
|
|
micMute = "${bin} --input-volume=mute-toggle";
|
|
};
|
|
}
|