Added 💯 alias

This commit is contained in:
Dionysus 2023-10-12 22:36:08 -04:00
parent 177b6e6cf9
commit 5a6f2c1c5d
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
3 changed files with 8 additions and 7 deletions

View File

@ -27,7 +27,7 @@
---
### Setup
###### Repository for Debian/Ubuntu
###### Repository for Debian (because Debian is always 7 versions behind to deem themself "stable")
```shell
sudo mkdir /root/.gnupg
sudo chmod 700 /root/.gnupg
@ -58,11 +58,11 @@ echo -e "[Unit]\nDescription=cerbot renewal\n\n[Service]\nType=oneshot\nExecStar
echo -e "[Unit]\nDescription=cerbot renewal timer\n\n[Timer]\nOnCalendar=0/12:00:00\nRandomizedDelaySec=1h\nPersistent=true\n\n[Install]\nWantedBy=timers.target" > /etc/systemd/system/certbot.timer
systemctl enable certbot.timer && systemctl start certbot.timer
echo "#!/bin/bash" > /home/acidvegas/.weechat/renew
echo "cat /etc/letsencrypt/live/chat.acid.vegas/fullchain.pem /etc/letsencrypt/live/chat.acid.vegas/privkey.pem > /home/acidvegas/.config/weechat/tls/relay.pem" >> /home/acidvegas/.local/share/weechat/renew
echo "chown -R acidvegas:acidvegas /home/acidvegas/.weechat/tls/relay.pem && chmod 400 /home/acidvegas/.confg/weechat/tls/relay.pem" >> /home/acidvegas/.local/share/weechat/renew
echo "printf \'%b\' \'*/relay tlscertkey\n\' > /run/user/1000/weechat/weechat_fifo" >> /home/acidvegas/.local/share/weechat/renew
chmod +x /home/acidvegas/.local/share/weechat/renew
echo "#!/bin/bash" > $HOME/.local/share/weechat/renew
echo "cat /etc/letsencrypt/live/chat.acid.vegas/fullchain.pem /etc/letsencrypt/live/chat.acid.vegas/privkey.pem > $HOME/.config/weechat/tls/relay.pem" >> $HOME/.local/share/weechat/renew
echo "chown -R acidvegas:acidvegas $HOME/.weechat/tls/relay.pem && chmod 400 $HOME/.confg/weechat/tls/relay.pem" >> $HOME/.local/share/weechat/renew
echo "printf \'%b\' \'*/relay tlscertkey\n\' > /run/user/1000/weechat/weechat_fifo" >> $HOME/.local/share/weechat/renew
chmod +x $HOME/.local/share/weechat/renew
mkdir -p $HOME/.config/systemd/user
echo -e "[Unit]\nDescription=headless weechat relay service\nAfter=network.target\n\n[Service]\nType=forking\nExecStart=/usr/bin/weechat-headless --daemon\n\n[Install]\nWantedBy=default.target" > $HOME/.config/systemd/user/weechat-headless.service

View File

@ -44,6 +44,7 @@ insult2 = "say $1 smells his fathers SKIDMARKS"
insult3 = "say STFU BEFORE I BLOW YOUR DADS DICK GOOD LIKE YOUR MOTHER NEVER DID"
# Random
100 = "say 💯"
5dicks = "say 04 _______________________________; say 04 /................................\ ; say 04 |.............09NIGGER CUNTS04.......|; say 04 |..... I HAVE FIVE FUCKING DICKS.|; say 04 |..... I HAVE FIVE FUCKING DICKS.|; say 04 |..... I HAVE FIVE FUCKING DICKS.|; say 04 |..... I HAVE FIVE FUCKING DICKS.|; say 04 |.. 09TAKE A WALK ON THE WILD SIDE04.|; say 04 |..... BLOW YOUR DAD.............|; say 04 |.. 08ILL TEACH UR KIDS ABOUT SEX04..|; say 04 |.. MY DICK BLEEDS WHEN IM ALONE.|; say 04 | I CUT MY SPERMY DICKHOLES......|; say 04 | IN THE PALE MOON LIGHT.........|; say 04 | ....WANA KNOW WHAT GAY IS? THIS04|; say 04 | . 10THIS SHOCKS U? THIS SHOCKS U?04|; say 04 |10UR ALL A BUNCH OF NIGGER FUCKERS04|; say 04 \................................/;"
beer = "me throws $1 an ice cold 0,0 0,2 BUD 1,0c =)"
beer2 = "me throw $1 an ice cold 0,0 0,5 BUD 1,0c =)"

View File

@ -5,7 +5,7 @@ import random
def cmd_rdsp(data, buf, args):
num_spaces = random.randint(1, 100)
weechat.command(buf, '/input send \x03' + ' '*num_spaces + args)
weechat.command(buf, '/input send \x03' + ' '*num_spaces + args)
return weechat.WEECHAT_RC_OK
if weechat.register('rdsp', 'acidvegas', '1.0', 'ISC', 'prefix a message with random spaces', '', ''):