-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup
executable file
·59 lines (53 loc) · 1.65 KB
/
setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
# see https://github.com/rwxrob/dot-template for reusable version
user=rwxrob
channels=rwxrob
echo "Generate your OAuth token here: https://antiscuff.com/oauth"
read -rp "Paste (starting with 'oauth:'): " token
mkdir -p ~/.weechat
fifo=~/.weechat/fifo
log=~/.weechat/log
if [[ ! -p "$fifo" ]]; then
echo "Error: WeeChat FIFO pipe not found at $fifo."
echo "Enable it in WeeChat with: /set fifo.pipe.enabled on"
echo "You may also need to set the pipe path: /set fifo.pipe.path $fifo"
exit 1
fi
cat <<EOF >"$fifo"
*/set logger.file.path "$log"
*/set logger.file.flush_delay 1
*/set weechat.color.chat_bg 235
*/set weechat.color.chat_fg 223
*/set weechat.color.chat_nick_self 214
*/set weechat.color.chat_prefix_error 124
*/set weechat.color.chat_prefix_network 66
*/set weechat.color.chat_prefix_action 214
*/set weechat.color.chat_highlight 142
*/set weechat.color.chat_read_marker 214
*/set weechat.color.chat_host 243
*/set weechat.color.chat_buffer 214
*/set weechat.color.separator 243
*/set weechat.look.prefix_join "👋"
*/set weechat.look.prefix_action "🌟"
*/set weechat.look.prefix_error "💢"
*/set weechat.bar.input_items ",input_text"
*/bar hide buflist
*/bar hide status
*/bar hide title
*/bar hide input
*/set irc.color.nicks ""
*/server add twitch irc.chat.twitch.tv/6667 -ssl
*/set irc.server.twitch.username "$user"
*/set irc.server.twitch.tls off
*/set irc.server.twitch.autoconnect on
*/set irc.server.twitch.autojoin "#${channels//,/,#}"
*/filter add hide_quit irc.* irc_quit *
*/filter add hide_part irc.* irc_part *
*/save
EOF
if test -n "$token"; then
cat <<EOF >"$fifo"
*/set irc.server.twitch.password "$token"
*/save
EOF
fi