add format
option to spectacle-screenshot
This commit is contained in:
parent
210d45a02e
commit
426206d4b3
3 changed files with 41 additions and 12 deletions
|
@ -3,13 +3,21 @@ let
|
|||
config = { };
|
||||
overlays = [ ];
|
||||
};
|
||||
pythonPackages = with pkgs.python312Packages; [
|
||||
requests
|
||||
pyperclip
|
||||
pillow
|
||||
pyside6
|
||||
];
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
libnotify
|
||||
python312
|
||||
python312Packages.requests
|
||||
python312Packages.pyperclip
|
||||
python312Packages.pillow
|
||||
];
|
||||
packages =
|
||||
with pkgs;
|
||||
pkgs.lib.lists.unique (
|
||||
[
|
||||
libnotify
|
||||
python312
|
||||
]
|
||||
++ pythonPackages
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue