new script to monitor chat streams

This commit is contained in:
2023-06-24 12:34:01 -06:00
parent 3a0c13c95c
commit 7b0d425454
2 changed files with 6 additions and 0 deletions

View File

@@ -25,6 +25,8 @@ let
(builtins.readFile ./scripts/manage_library.fish); (builtins.readFile ./scripts/manage_library.fish);
ffmpeg4discord = pkgs.writeScriptBin "ffmpeg4discord" ffmpeg4discord = pkgs.writeScriptBin "ffmpeg4discord"
(builtins.readFile ./scripts/ffmpeg4discord.py); (builtins.readFile ./scripts/ffmpeg4discord.py);
chat-dl =
pkgs.writeScriptBin "chat-dl" (builtins.readFile ./scripts/chat-dl.sh);
in { # Remember to close this bracket at the end of the document in { # Remember to close this bracket at the end of the document
imports = [ imports = [
@@ -214,6 +216,7 @@ in { # Remember to close this bracket at the end of the document
nextcloud_scrapsync nextcloud_scrapsync
ffmpeg4discord ffmpeg4discord
manage_library manage_library
chat-dl
# required by doom emacs, but still are rather useful. # required by doom emacs, but still are rather useful.
fd # modern find, faster searches fd # modern find, faster searches

View File

@@ -62,6 +62,8 @@ let
"manage_library" (builtins.readFile ./scripts/manage_library.fish); "manage_library" (builtins.readFile ./scripts/manage_library.fish);
ffmpeg4discord = pkgs.writeScriptBin ffmpeg4discord = pkgs.writeScriptBin
"ffmpeg4discord" (builtins.readFile ./scripts/ffmpeg4discord.py); "ffmpeg4discord" (builtins.readFile ./scripts/ffmpeg4discord.py);
chat-dl = pkgs.writeScriptBin
"chat-dl" (builtins.readFile ./scripts/chat-dl.sh);
in in
{ # Remember to close this bracket at the end of the document { # Remember to close this bracket at the end of the document
#+end_src #+end_src
@@ -383,6 +385,7 @@ lm_sensors # for extension, displays cpu temp
nextcloud_scrapsync nextcloud_scrapsync
ffmpeg4discord ffmpeg4discord
manage_library manage_library
chat-dl
#+end_src #+end_src
** DEVELOPMENT PACKAGES ** DEVELOPMENT PACKAGES