m 2 Reaktor: add shack-correct, update pnp Reaktor Channels
This commit is contained in:
parent
36d43bf73f
commit
5f5c1f5f66
@ -25,6 +25,7 @@
|
|||||||
../2configs/Reaktor/simpleExtend.nix
|
../2configs/Reaktor/simpleExtend.nix
|
||||||
../2configs/Reaktor/random-emoji.nix
|
../2configs/Reaktor/random-emoji.nix
|
||||||
../2configs/Reaktor/titlebot.nix
|
../2configs/Reaktor/titlebot.nix
|
||||||
|
../2configs/Reaktor/shack-correct.nix
|
||||||
|
|
||||||
../2configs/exim-retiolum.nix
|
../2configs/exim-retiolum.nix
|
||||||
../2configs/urlwatch.nix
|
../2configs/urlwatch.nix
|
||||||
@ -35,7 +36,7 @@
|
|||||||
krebs.Reaktor.debug = true;
|
krebs.Reaktor.debug = true;
|
||||||
krebs.Reaktor.nickname = "Reaktor|bot";
|
krebs.Reaktor.nickname = "Reaktor|bot";
|
||||||
krebs.Reaktor.extraEnviron = {
|
krebs.Reaktor.extraEnviron = {
|
||||||
REAKTOR_CHANNELS = "#krebs,#binaergewitter";
|
REAKTOR_CHANNELS = "#krebs,#binaergewitter,#shackspace";
|
||||||
};
|
};
|
||||||
|
|
||||||
krebs.build.host = config.krebs.hosts.pnp;
|
krebs.build.host = config.krebs.hosts.pnp;
|
||||||
|
20
makefu/2configs/Reaktor/shack-correct.nix
Normal file
20
makefu/2configs/Reaktor/shack-correct.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
let
|
||||||
|
script = pkgs.substituteAll ( {
|
||||||
|
name="shack-correct";
|
||||||
|
isExecutable=true;
|
||||||
|
dir = "";
|
||||||
|
src = ./shack-correct.sh;
|
||||||
|
});
|
||||||
|
in {
|
||||||
|
krebs.Reaktor.extraConfig = ''
|
||||||
|
public_commands.insert(0,{
|
||||||
|
'capname' : "shack-correct",
|
||||||
|
'pattern' : '^(?P<args>.*Shack.*)$$',
|
||||||
|
'argv' : ["${script}"],
|
||||||
|
'env' : { }})
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
6
makefu/2configs/Reaktor/shack-correct.sh
Normal file
6
makefu/2configs/Reaktor/shack-correct.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
set -eu
|
||||||
|
printf "Sie meinten wohl \""
|
||||||
|
echo -n $@ | sed 's/Shack/shack/g'
|
||||||
|
echo "\""
|
||||||
|
echo "${_from}--"
|
Loading…
Reference in New Issue
Block a user