2023-04-08 02:49:06 +05:30
|
|
|
{ lib, stdenvNoCC, makeWrapper, libnotify, rofi-wayland, tmux, kitty, imagemagick, swaybg, sway, hyprland }:
|
2023-04-06 02:39:57 +05:30
|
|
|
|
2023-04-06 01:27:09 +05:30
|
|
|
stdenvNoCC.mkDerivation {
|
|
|
|
pname = "scripts";
|
2023-04-06 02:45:10 +05:30
|
|
|
version = "0.1";
|
2023-04-06 01:27:09 +05:30
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2023-04-06 03:08:26 +05:30
|
|
|
buildInputs = [ libnotify rofi-wayland tmux kitty ];
|
2023-04-06 01:27:09 +05:30
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp power-menu.sh $out/bin/power-menu
|
|
|
|
chmod +x $out/bin/power-menu
|
2023-04-08 02:49:06 +05:30
|
|
|
wrapProgram $out/bin/power-menu --prefix PATH : ${lib.makeBinPath [ libnotify rofi-wayland sway hyprland ]}
|
2023-04-06 03:08:26 +05:30
|
|
|
|
|
|
|
cp tmux-sessions.sh $out/bin/tmux-sessions
|
|
|
|
chmod +x $out/bin/tmux-sessions
|
|
|
|
wrapProgram $out/bin/tmux-sessions --prefix PATH : ${lib.makeBinPath [ tmux kitty rofi-wayland ]}
|
2023-04-06 03:29:01 +05:30
|
|
|
|
|
|
|
cp chpaper.sh $out/bin/chpaper
|
|
|
|
chmod +x $out/bin/chpaper
|
|
|
|
wrapProgram $out/bin/chpaper --prefix PATH : ${lib.makeBinPath [ imagemagick swaybg ]}
|
2023-04-06 01:27:09 +05:30
|
|
|
'';
|
|
|
|
}
|