weechat

- backup of me weechat setup
git clone git://git.acid.vegas/weechat.git
Log | Files | Refs | Archive | README

commit 5a6f2c1c5ded7b7be805895b1c7019379b76fcab
parent 177b6e6cf9198d3c9423891e60acc98f6e9b2469
Author: acidvegas <acid.vegas@acid.vegas>
Date: Thu, 12 Oct 2023 22:36:08 -0400

Added 💯 alias

Diffstat:
MREADME.md | 12++++++------
Malias.conf | 1+
Mscripts/python/rdsp.py | 2+-

3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
@@ -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
diff --git a/alias.conf b/alias.conf
@@ -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 =)"
diff --git a/scripts/python/rdsp.py b/scripts/python/rdsp.py
@@ -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', '', ''):