2023-11-05 11:40:44 +01:00
|
|
|
{pkgs, ...}: let
|
2023-11-13 00:16:48 +01:00
|
|
|
wall-change = pkgs.writeShellScriptBin "wall-change" ''swaybg -m fill -i $1'';
|
|
|
|
|
wallpaper-picker = pkgs.writeShellScriptBin "wallpaper-picker" (builtins.readFile ./scripts/wallpaper-picker.sh);
|
|
|
|
|
push = pkgs.writeShellScriptBin "push" (builtins.readFile ./scripts/push.sh);
|
|
|
|
|
commit = pkgs.writeShellScriptBin "commit" (builtins.readFile ./scripts/commit.sh);
|
|
|
|
|
dsize = pkgs.writeShellScriptBin "dsize" (builtins.readFile ./scripts/dsize.sh);
|
|
|
|
|
runbg = pkgs.writeShellScriptBin "runbg" (builtins.readFile ./scripts/runbg.sh);
|
|
|
|
|
music = pkgs.writeShellScriptBin "music" (builtins.readFile ./scripts/music.sh);
|
|
|
|
|
toogle_blur = pkgs.writeScriptBin "toogle_blur" (builtins.readFile ./scripts/toogle_blur.sh);
|
|
|
|
|
toogle_oppacity = pkgs.writeScriptBin "toogle_oppacity" (builtins.readFile ./scripts/toogle_oppacity.sh);
|
2023-11-05 11:40:44 +01:00
|
|
|
in {
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
wall-change
|
|
|
|
|
wallpaper-picker
|
2023-11-12 11:58:49 +01:00
|
|
|
|
2023-11-05 11:40:44 +01:00
|
|
|
push
|
2023-11-10 20:38:11 +01:00
|
|
|
commit
|
2023-11-12 11:58:49 +01:00
|
|
|
|
2023-11-11 22:42:57 +01:00
|
|
|
dsize
|
|
|
|
|
runbg
|
|
|
|
|
music
|
2023-11-12 11:58:49 +01:00
|
|
|
|
|
|
|
|
toogle_blur
|
|
|
|
|
toogle_oppacity
|
2023-11-05 11:40:44 +01:00
|
|
|
];
|
|
|
|
|
}
|