mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Merge branch 'master' into readline
This commit is contained in:
commit
2e493112bb
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,6 +5,7 @@
|
||||
# *.[oa]
|
||||
# *~
|
||||
profanity
|
||||
profanity.sh
|
||||
*.o
|
||||
*.log
|
||||
*.swp
|
||||
|
@ -43,6 +43,7 @@ tests_sources = \
|
||||
src/roster_list.c src/roster_list.h \
|
||||
src/xmpp/xmpp.h src/xmpp/form.c \
|
||||
src/ui/ui.h \
|
||||
src/otr/otr.h \
|
||||
src/command/command.h src/command/command.c \
|
||||
src/command/commands.h src/command/commands.c \
|
||||
src/tools/parser.c \
|
||||
@ -61,7 +62,6 @@ tests_sources = \
|
||||
src/ui/titlebar.h src/ui/statusbar.h src/ui/inputwin.h \
|
||||
src/server_events.c src/server_events.h \
|
||||
tests/xmpp/stub_xmpp.c \
|
||||
tests/otr/stub_otr.c \
|
||||
tests/ui/stub_ui.c \
|
||||
tests/log/stub_log.c \
|
||||
tests/config/stub_accounts.c \
|
||||
@ -101,6 +101,9 @@ otr3_sources = \
|
||||
otr4_sources = \
|
||||
src/otr/otrlib.h src/otr/otrlibv4.c src/otr/otr.h src/otr/otr.c
|
||||
|
||||
otr_test_sources = \
|
||||
tests/otr/stub_otr.c
|
||||
|
||||
themes_sources = themes/*
|
||||
|
||||
script_sources = bootstrap.sh configure-debug install-all.sh
|
||||
@ -108,6 +111,7 @@ script_sources = bootstrap.sh configure-debug install-all.sh
|
||||
man_sources = docs/profanity.1
|
||||
|
||||
if BUILD_OTR
|
||||
tests_sources += $(otr_test_sources)
|
||||
if BUILD_OTR3
|
||||
core_sources += $(otr3_sources)
|
||||
endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_INIT([profanity], [0.4.6], [boothj5web@gmail.com])
|
||||
AC_INIT([profanity], [0.4.7], [boothj5web@gmail.com])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_SRCDIR([src/main.c])
|
||||
AC_CONFIG_HEADERS([src/config.h])
|
||||
|
@ -639,20 +639,21 @@ wins_swap(int source_win, int target_win)
|
||||
{
|
||||
ProfWin *source = g_hash_table_lookup(windows, GINT_TO_POINTER(source_win));
|
||||
|
||||
if (source != NULL) {
|
||||
if (source) {
|
||||
ProfWin *target = g_hash_table_lookup(windows, GINT_TO_POINTER(target_win));
|
||||
|
||||
// target window empty
|
||||
if (target == NULL) {
|
||||
if (!target) {
|
||||
g_hash_table_steal(windows, GINT_TO_POINTER(source_win));
|
||||
status_bar_inactive(source_win);
|
||||
g_hash_table_insert(windows, GINT_TO_POINTER(target_win), source);
|
||||
status_bar_inactive(source_win);
|
||||
if (win_unread(source) > 0) {
|
||||
status_bar_new(target_win);
|
||||
} else {
|
||||
status_bar_active(target_win);
|
||||
}
|
||||
if ((wins_get_current_num() == source_win) || (wins_get_current_num() == target_win)) {
|
||||
if (wins_get_current_num() == source_win) {
|
||||
wins_set_current_by_num(target_win);
|
||||
ui_switch_win(1);
|
||||
}
|
||||
return TRUE;
|
||||
|
@ -331,9 +331,11 @@ int main(int argc, char* argv[]) {
|
||||
unit_test(cmd_account_set_eval_password_when_password_set),
|
||||
unit_test(cmd_account_set_muc_sets_muc),
|
||||
unit_test(cmd_account_set_nick_sets_nick),
|
||||
#ifdef HAVE_LIBOTR
|
||||
unit_test(cmd_account_show_message_for_missing_otr_policy),
|
||||
unit_test(cmd_account_show_message_for_invalid_otr_policy),
|
||||
unit_test(cmd_account_set_otr_sets_otr),
|
||||
#endif
|
||||
unit_test(cmd_account_set_status_shows_message_when_invalid_status),
|
||||
unit_test(cmd_account_set_status_sets_status_when_valid),
|
||||
unit_test(cmd_account_set_status_sets_status_when_last),
|
||||
|
72
theme_template
Normal file
72
theme_template
Normal file
@ -0,0 +1,72 @@
|
||||
[colours]
|
||||
bkgnd=
|
||||
titlebar=
|
||||
titlebar.text=
|
||||
titlebar.brackets=
|
||||
titlebar.unencrypted=
|
||||
titlebar.encrypted=
|
||||
titlebar.untrusted=
|
||||
titlebar.trusted=
|
||||
titlebar.online=
|
||||
titlebar.offline=
|
||||
titlebar.away=
|
||||
titlebar.chat=
|
||||
titlebar.dnd=
|
||||
titlebar.xa=
|
||||
statusbar=
|
||||
statusbar.text=
|
||||
statusbar.brackets=
|
||||
statusbar.active=
|
||||
statusbar.new=
|
||||
main.text=
|
||||
main.text.me=
|
||||
main.text.them=
|
||||
main.splash=
|
||||
main.time=
|
||||
input.text=
|
||||
subscribed=
|
||||
unsubscribed=
|
||||
otr.started.trusted=
|
||||
otr.started.untrusted=
|
||||
otr.ended=
|
||||
otr.trusted=
|
||||
otr.untrusted=
|
||||
online=
|
||||
away=
|
||||
chat=
|
||||
dnd=
|
||||
xa=
|
||||
offline=
|
||||
incoming=
|
||||
typing=
|
||||
gone=
|
||||
error=
|
||||
roominfo=
|
||||
roommention=
|
||||
me=
|
||||
them=
|
||||
roster.header=
|
||||
occupants.header=
|
||||
|
||||
[ui]
|
||||
beep=
|
||||
flash=
|
||||
splash=
|
||||
wrap=
|
||||
time=
|
||||
privileges=
|
||||
presence=
|
||||
intype=
|
||||
otr.warn=
|
||||
resource.title=
|
||||
resource.message=
|
||||
statuses.console=
|
||||
statuses.chat=
|
||||
statuses.muc=
|
||||
roster=
|
||||
roster.offline=
|
||||
roster.resource=
|
||||
roster.by=
|
||||
roster.size=
|
||||
occupants=
|
||||
occupants.size=
|
@ -1,69 +0,0 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=white
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_green
|
||||
main.text=white
|
||||
main.text.me=cyan
|
||||
main.text.them=bold_white
|
||||
input.text=bold_green
|
||||
main.time=yellow
|
||||
main.splash=bold_red
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_white
|
||||
dnd=magenta
|
||||
xa=bold_blue
|
||||
offline=red
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=bold_yellow
|
||||
roominfo=yellow
|
||||
roommention=bold_red
|
||||
me=blue
|
||||
them=bold_green
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_white
|
||||
titlebar.untrusted=bold_yellow
|
||||
titlebar.trusted=bold_white
|
||||
titlebar.online=bold_green
|
||||
titlebar.offline=bold_red
|
||||
titlebar.away=bold_cyan
|
||||
titlebar.xa=bold_cyan
|
||||
titlebar.dnd=bold_red
|
||||
titlebar.chat=bold_green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
roster.header=bold_yellow
|
||||
occupants.header=bold_yellow
|
||||
|
||||
[ui]
|
||||
intype=true
|
||||
beep=false
|
||||
flash=false
|
||||
privileges=true
|
||||
presence=true
|
||||
wrap=true
|
||||
time=minutes
|
||||
statuses.muc=off
|
||||
statuses.chat=online
|
||||
statuses.console=off
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
roster=true
|
||||
roster.size=25
|
||||
roster.offline=true
|
||||
roster.resource=true
|
||||
roster.by=presence
|
||||
otr.warn=true
|
||||
|
||||
|
34
themes/aqua
34
themes/aqua
@ -1,9 +1,19 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=white
|
||||
titlebar.unencrypted=cyan
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=cyan
|
||||
titlebar.trusted=white
|
||||
titlebar.online=bold_white
|
||||
titlebar.offline=cyan
|
||||
titlebar.away=white
|
||||
titlebar.chat=bold_white
|
||||
titlebar.dnd=cyan
|
||||
titlebar.xa=bold_cyan
|
||||
statusbar=blue
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=cyan
|
||||
@ -11,31 +21,29 @@ statusbar.new=white
|
||||
main.text=blue
|
||||
main.text.me=bold_cyan
|
||||
main.text.them=bold_white
|
||||
input.text=white
|
||||
main.time=cyan
|
||||
main.splash=bold_white
|
||||
main.time=cyan
|
||||
input.text=white
|
||||
subscribed=bold_cyan
|
||||
unsubscribed=blue
|
||||
otr.started.trusted=white
|
||||
otr.started.untrusted=cyan
|
||||
otr.ended=cyan
|
||||
otr.trusted=white
|
||||
otr.untrusted=cyan
|
||||
online=bold_cyan
|
||||
away=bold_blue
|
||||
chat=white
|
||||
dnd=blue
|
||||
xa=cyan
|
||||
offline=bold_black
|
||||
incoming=bold_cyan
|
||||
typing=cyan
|
||||
gone=blue
|
||||
error=bold_white
|
||||
incoming=bold_cyan
|
||||
roominfo=white
|
||||
roommention=bold_blue
|
||||
me=cyan
|
||||
them=white
|
||||
titlebar.unencrypted=cyan
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=cyan
|
||||
titlebar.trusted=white
|
||||
otr.started.trusted=white
|
||||
otr.started.untrusted=cyan
|
||||
otr.ended=cyan
|
||||
otr.trusted=white
|
||||
otr.untrusted=cyan
|
||||
roster.header=bold_white
|
||||
occupants.header=bold_white
|
||||
|
@ -17,14 +17,13 @@ away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=grey
|
||||
offline=bold_black
|
||||
typing=cyan
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=green
|
||||
roommention=cyan
|
||||
me=black
|
||||
me=black_bold
|
||||
them=yellow
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
@ -35,3 +34,17 @@ otr.started.untrusted=red
|
||||
otr.ended=yellow
|
||||
otr.trusted=green
|
||||
otr.untrusted=red
|
||||
|
||||
titlebar.online=magenta
|
||||
titlebar.offline=black
|
||||
titlebar.away=magenta
|
||||
titlebar.chat=magenta
|
||||
titlebar.dnd=magenta
|
||||
titlebar.xa=magenta
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
subscribed=magenta
|
||||
unsubscribed=black_bold
|
||||
roommention=cyan
|
||||
roster.header=yellow
|
||||
occupants.header=yellow
|
@ -1,33 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=white
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_green
|
||||
main.text=white
|
||||
main.text.me=cyan
|
||||
main.text.them=bold_white
|
||||
input.text=bold_green
|
||||
main.time=yellow
|
||||
main.splash=bold_red
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_white
|
||||
dnd=magenta
|
||||
xa=bold_blue
|
||||
offline=red
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=bold_yellow
|
||||
roominfo=yellow
|
||||
roommention=bold_red
|
||||
me=blue
|
||||
them=bold_green
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_white
|
||||
titlebar.untrusted=bold_yellow
|
||||
@ -38,32 +13,62 @@ titlebar.away=bold_cyan
|
||||
titlebar.xa=bold_cyan
|
||||
titlebar.dnd=bold_red
|
||||
titlebar.chat=bold_green
|
||||
statusbar=blue
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_green
|
||||
main.text=white
|
||||
main.text.me=cyan
|
||||
main.text.them=bold_white
|
||||
main.splash=bold_red
|
||||
main.time=yellow
|
||||
input.text=bold_green
|
||||
subscribed=bold_green
|
||||
unsubscribed=red
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_white
|
||||
dnd=magenta
|
||||
xa=bold_blue
|
||||
offline=red
|
||||
incoming=bold_yellow
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
roominfo=yellow
|
||||
roommention=bold_red
|
||||
me=blue
|
||||
them=bold_green
|
||||
roster.header=bold_yellow
|
||||
occupants.header=bold_yellow
|
||||
|
||||
[ui]
|
||||
intype=true
|
||||
beep=false
|
||||
flash=false
|
||||
splash=true
|
||||
wrap=true
|
||||
time=seconds
|
||||
privileges=true
|
||||
presence=true
|
||||
wrap=true
|
||||
time=minutes
|
||||
statuses.muc=none
|
||||
statuses.chat=none
|
||||
statuses.console=none
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
intype=true
|
||||
otr.warn=true
|
||||
resource.title=true
|
||||
resource.message=true
|
||||
statuses.console=all
|
||||
statuses.chat=all
|
||||
statuses.muc=all
|
||||
roster=true
|
||||
roster.size=25
|
||||
roster.offline=true
|
||||
roster.resource=true
|
||||
roster.by=presence
|
||||
otr.warn=true
|
||||
roster.size=25
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
|
||||
|
||||
|
22
themes/complex
Normal file
22
themes/complex
Normal file
@ -0,0 +1,22 @@
|
||||
[ui]
|
||||
beep=false
|
||||
flash=false
|
||||
splash=true
|
||||
wrap=true
|
||||
time=seconds
|
||||
resource.title=true
|
||||
resource.message=true
|
||||
statuses.console=all
|
||||
statuses.chat=all
|
||||
statuses.muc=all
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
roster=true
|
||||
roster.offline=true
|
||||
roster.resource=true
|
||||
roster.by=presence
|
||||
roster.size=25
|
||||
privileges=true
|
||||
presence=true
|
||||
intype=true
|
||||
otr.warn=true
|
@ -1,35 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=cyan
|
||||
statusbar=green
|
||||
titlebar.text=black
|
||||
titlebar.brackets=black
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=bold_green
|
||||
statusbar.new=white
|
||||
main.text=bold_cyan
|
||||
main.text.me=yellow
|
||||
main.text.them=green
|
||||
input.text=bold_blue
|
||||
main.time=bold_green
|
||||
main.splash=bold_yellow
|
||||
subscribed=green
|
||||
unsubscribed=bold_black
|
||||
online=green
|
||||
away=blue
|
||||
chat=green
|
||||
dnd=bold_black
|
||||
xa=blue
|
||||
offline=bold_black
|
||||
typing=yellow
|
||||
gone=bold_black
|
||||
error=bold_black
|
||||
incoming=bold_yellow
|
||||
roominfo=yellow
|
||||
roommention=bold_cyan
|
||||
me=blue
|
||||
them=bold_blue
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=white
|
||||
@ -37,13 +10,40 @@ titlebar.trusted=white
|
||||
titlebar.online=white
|
||||
titlebar.offline=white
|
||||
titlebar.away=white
|
||||
titlebar.xa=white
|
||||
titlebar.dnd=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=white
|
||||
titlebar.xa=white
|
||||
statusbar=green
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=bold_green
|
||||
statusbar.new=white
|
||||
main.text=bold_cyan
|
||||
main.text.me=yellow
|
||||
main.text.them=green
|
||||
main.splash=bold_yellow
|
||||
main.time=bold_green
|
||||
input.text=bold_blue
|
||||
subscribed=green
|
||||
unsubscribed=bold_black
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
online=green
|
||||
away=blue
|
||||
chat=green
|
||||
dnd=bold_black
|
||||
xa=blue
|
||||
offline=bold_black
|
||||
incoming=bold_yellow
|
||||
typing=yellow
|
||||
gone=bold_black
|
||||
error=bold_black
|
||||
roominfo=yellow
|
||||
roommention=bold_cyan
|
||||
me=blue
|
||||
them=bold_blue
|
||||
roster.header=bold_green
|
||||
occupants.header=bold_green
|
||||
occupants.header=bold_green
|
@ -1,33 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=green
|
||||
statusbar=green
|
||||
titlebar.text=black
|
||||
titlebar.brackets=black
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=black
|
||||
statusbar.new=black
|
||||
main.text=green
|
||||
main.text.me=green
|
||||
main.text.them=green
|
||||
input.text=bold_green
|
||||
main.time=bold_green
|
||||
main.splash=bold_green
|
||||
online=bold_green
|
||||
away=green
|
||||
chat=bold_green
|
||||
dnd=green
|
||||
xa=green
|
||||
offline=green
|
||||
typing=green
|
||||
gone=green
|
||||
error=bold_green
|
||||
incoming=bold_green
|
||||
roominfo=green
|
||||
roommention=bold_green
|
||||
me=green
|
||||
them=bold_green
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=black
|
||||
titlebar.untrusted=black
|
||||
@ -35,13 +10,40 @@ titlebar.trusted=black
|
||||
titlebar.online=black
|
||||
titlebar.offline=black
|
||||
titlebar.away=black
|
||||
titlebar.xa=black
|
||||
titlebar.dnd=black
|
||||
titlebar.chat=black
|
||||
titlebar.dnd=black
|
||||
titlebar.xa=black
|
||||
statusbar=green
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=black
|
||||
statusbar.new=black
|
||||
main.text=green
|
||||
main.text.me=green
|
||||
main.text.them=green
|
||||
main.splash=bold_green
|
||||
main.time=bold_green
|
||||
input.text=bold_green
|
||||
subscribed=bold_green
|
||||
unsubscribed=green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=green
|
||||
otr.ended=green
|
||||
otr.trusted=green
|
||||
otr.untrusted=green
|
||||
online=bold_green
|
||||
away=green
|
||||
chat=bold_green
|
||||
dnd=green
|
||||
xa=green
|
||||
offline=green
|
||||
incoming=bold_green
|
||||
typing=green
|
||||
gone=green
|
||||
error=bold_green
|
||||
roominfo=green
|
||||
roommention=bold_green
|
||||
me=green
|
||||
them=bold_green
|
||||
roster.header=bold_green
|
||||
occupants.header=bold_green
|
||||
occupants.header=bold_green
|
@ -1,36 +1,49 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=magenta
|
||||
statusbar=default
|
||||
titlebar.text=white
|
||||
titlebar.brackets=white
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=cyan
|
||||
titlebar.untrusted=yellow
|
||||
titlebar.trusted=cyan
|
||||
titlebar.online=white
|
||||
titlebar.offline=black
|
||||
titlebar.away=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=black
|
||||
titlebar.xa=white
|
||||
statusbar=default
|
||||
statusbar.text=white
|
||||
statusbar.brackets=red
|
||||
statusbar.active=cyan
|
||||
statusbar.new=white
|
||||
main.text=blue
|
||||
input.text=yellow
|
||||
main.time=green
|
||||
main.text.me=white
|
||||
main.text.them=bold_white
|
||||
main.splash=red
|
||||
main.time=green
|
||||
input.text=yellow
|
||||
subscribed=bold_magenta
|
||||
unsubscribed=bold_black
|
||||
otr.started.trusted=cyan
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=blue
|
||||
otr.trusted=cyan
|
||||
otr.untrusted=yellow
|
||||
online=red
|
||||
away=cyan
|
||||
chat=green
|
||||
dnd=megenta
|
||||
xa=cyan
|
||||
offline=green
|
||||
incoming=yellow
|
||||
typing=magenta
|
||||
gone=yellow
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=white
|
||||
roommention=bold_green
|
||||
me=white
|
||||
them=white
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=cyan
|
||||
titlebar.untrusted=yellow
|
||||
titlebar.trusted=cyan
|
||||
otr.started.trusted=cyan
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=blue
|
||||
otr.trusted=cyan
|
||||
otr.untrusted=yellow
|
||||
roster.header=bold_cyan
|
||||
occupants.header=bold_cyan
|
53
themes/joker
53
themes/joker
@ -1,36 +1,49 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=magenta
|
||||
statusbar=magenta
|
||||
titlebar.text=white
|
||||
titlebar.brackets=cyan
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
titlebar.online=white
|
||||
titlebar.offline=black
|
||||
titlebar.away=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=black
|
||||
titlebar.xa=white
|
||||
statusbar=magenta
|
||||
statusbar.text=green
|
||||
statusbar.brackets=cyan
|
||||
statusbar.active=green
|
||||
statusbar.new=white
|
||||
main.text=white
|
||||
input.text=green
|
||||
main.time=white
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
main.splash=green
|
||||
online=green
|
||||
away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=grey
|
||||
typing=green
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=green
|
||||
me=magenta
|
||||
them=green
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
main.time=white
|
||||
input.text=green
|
||||
subscribed=green
|
||||
unsubscribed=white
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=red
|
||||
otr.ended=yellow
|
||||
otr.trusted=green
|
||||
otr.untrusted=red
|
||||
online=green
|
||||
away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=bold_black
|
||||
incoming=yellow
|
||||
typing=green
|
||||
gone=red
|
||||
error=red
|
||||
roominfo=green
|
||||
roommention=green
|
||||
me=magenta
|
||||
them=green
|
||||
roster.header=magenta
|
||||
occupants.header=magenta
|
@ -1,62 +0,0 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=white
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_green
|
||||
main.text=white
|
||||
main.text.me=cyan
|
||||
main.text.them=bold_white
|
||||
input.text=bold_green
|
||||
main.time=yellow
|
||||
main.splash=bold_red
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_white
|
||||
dnd=magenta
|
||||
xa=bold_blue
|
||||
offline=red
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=bold_yellow
|
||||
roominfo=yellow
|
||||
roommention=bold_red
|
||||
me=blue
|
||||
them=bold_green
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_white
|
||||
titlebar.untrusted=bold_yellow
|
||||
titlebar.trusted=bold_white
|
||||
titlebar.online=bold_green
|
||||
titlebar.offline=bold_red
|
||||
titlebar.away=bold_cyan
|
||||
titlebar.xa=bold_cyan
|
||||
titlebar.dnd=bold_red
|
||||
titlebar.chat=bold_green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
roster.header=bold_yellow
|
||||
occupants.header=bold_yellow
|
||||
|
||||
[ui]
|
||||
intype=true
|
||||
beep=false
|
||||
flash=false
|
||||
privileges=false
|
||||
presence=false
|
||||
wrap=false
|
||||
time=off
|
||||
statuses.muc=all
|
||||
statuses.chat=all
|
||||
statuses.console=all
|
||||
occupants=false
|
||||
roster=false
|
||||
otr.warn=false
|
58
themes/mono
58
themes/mono
@ -1,33 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=white
|
||||
statusbar=white
|
||||
titlebar.text=black
|
||||
titlebar.brackets=black
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=black
|
||||
statusbar.new=black
|
||||
main.text=white
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
input.text=white
|
||||
main.time=white
|
||||
main.splash=white
|
||||
online=white
|
||||
away=white
|
||||
chat=white
|
||||
dnd=white
|
||||
xa=white
|
||||
offline=white
|
||||
typing=white
|
||||
gone=white
|
||||
error=white
|
||||
incoming=white
|
||||
roominfo=white
|
||||
roommention=white
|
||||
me=white
|
||||
them=white
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=black
|
||||
titlebar.untrusted=black
|
||||
@ -35,13 +10,40 @@ titlebar.trusted=black
|
||||
titlebar.online=black
|
||||
titlebar.offline=black
|
||||
titlebar.away=black
|
||||
titlebar.xa=black
|
||||
titlebar.dnd=black
|
||||
titlebar.chat=black
|
||||
titlebar.dnd=black
|
||||
titlebar.xa=black
|
||||
statusbar=white
|
||||
statusbar.text=black
|
||||
statusbar.brackets=black
|
||||
statusbar.active=black
|
||||
statusbar.new=black
|
||||
main.text=white
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
main.splash=white
|
||||
main.time=white
|
||||
input.text=white
|
||||
subscribed=white
|
||||
unsubscribed=white
|
||||
otr.started.trusted=white
|
||||
otr.started.untrusted=white
|
||||
otr.ended=white
|
||||
otr.trusted=white
|
||||
otr.untrusted=white
|
||||
online=white
|
||||
away=white
|
||||
chat=white
|
||||
dnd=white
|
||||
xa=white
|
||||
offline=white
|
||||
incoming=white
|
||||
typing=white
|
||||
gone=white
|
||||
error=white
|
||||
roominfo=white
|
||||
roommention=white
|
||||
me=white
|
||||
them=white
|
||||
roster.header=white
|
||||
occupants.header=white
|
||||
occupants.header=white
|
@ -3,6 +3,16 @@ bkgnd=yellow
|
||||
titlebar=red
|
||||
titlebar.text=black
|
||||
titlebar.brackets=blue
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=white
|
||||
titlebar.trusted=green
|
||||
titlebar.online=white
|
||||
titlebar.offline=black
|
||||
titlebar.away=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=black
|
||||
titlebar.xa=white
|
||||
statusbar=green
|
||||
statusbar.text=black
|
||||
statusbar.brackets=blue
|
||||
@ -11,32 +21,29 @@ statusbar.new=white
|
||||
main.text=black
|
||||
main.text.me=black
|
||||
main.text.them=green
|
||||
main.time=blue
|
||||
main.splash=blue
|
||||
main.time=blue
|
||||
input.text=black
|
||||
subscribed=blue
|
||||
unsubscribed=red
|
||||
unsubscribed=white
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=white
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=white
|
||||
online=blue
|
||||
away=white
|
||||
chat=blue
|
||||
dnd=white
|
||||
xa=white
|
||||
offline=white
|
||||
incoming=blue
|
||||
typing=black
|
||||
gone=green
|
||||
error=red
|
||||
incoming=blue
|
||||
roominfo=blue
|
||||
me=blue
|
||||
them=green
|
||||
titlebar.unencrypted=black
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=white
|
||||
titlebar.trusted=green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=white
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=white
|
||||
roommention=blue
|
||||
me=black
|
||||
them=black
|
||||
roster.header=black
|
||||
occupants.header=black
|
||||
occupants.header=black
|
@ -1,35 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=white
|
||||
titlebar.brackets=cyan
|
||||
statusbar.text=white
|
||||
statusbar.brackets=cyan
|
||||
statusbar.active=cyan
|
||||
statusbar.new=white
|
||||
main.text=white
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
input.text=white
|
||||
main.time=white
|
||||
main.splash=cyan
|
||||
subscribed=green
|
||||
unsubscribed=red
|
||||
online=green
|
||||
away=cyan
|
||||
chat=green
|
||||
dnd=red
|
||||
xa=cyan
|
||||
offline=red
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=yellow
|
||||
roommention=yellow
|
||||
me=yellow
|
||||
them=green
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=yellow
|
||||
@ -37,13 +10,40 @@ titlebar.trusted=white
|
||||
titlebar.online=white
|
||||
titlebar.offline=white
|
||||
titlebar.away=white
|
||||
titlebar.xa=white
|
||||
titlebar.dnd=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=white
|
||||
titlebar.xa=white
|
||||
statusbar=blue
|
||||
statusbar.text=white
|
||||
statusbar.brackets=cyan
|
||||
statusbar.active=cyan
|
||||
statusbar.new=white
|
||||
main.text=white
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
main.splash=cyan
|
||||
main.time=white
|
||||
input.text=white
|
||||
subscribed=green
|
||||
unsubscribed=red
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
online=green
|
||||
away=cyan
|
||||
chat=green
|
||||
dnd=red
|
||||
xa=cyan
|
||||
offline=red
|
||||
incoming=yellow
|
||||
typing=yellow
|
||||
gone=yellow
|
||||
error=red
|
||||
roominfo=yellow
|
||||
roommention=yellow
|
||||
me=yellow
|
||||
them=green
|
||||
roster.header=yellow
|
||||
occupants.header=yellow
|
||||
occupants.header=yellow
|
@ -1,35 +1,8 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=bold_cyan
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=bold_cyan
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_white
|
||||
main.text=bold_white
|
||||
main.text.me=bold_white
|
||||
main.text.them=bold_white
|
||||
input.text=bold_white
|
||||
main.time=bold_white
|
||||
main.splash=bold_cyan
|
||||
subscribed=bold_green
|
||||
unsubscribed=bold_red
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_green
|
||||
dnd=bold_red
|
||||
xa=bold_cyan
|
||||
offline=bold_red
|
||||
typing=bold_yellow
|
||||
gone=bold_red
|
||||
error=bold_red
|
||||
incoming=bold_yellow
|
||||
roominfo=bold_yellow
|
||||
roommention=bold_yellow
|
||||
me=bold_yellow
|
||||
them=bold_green
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_white
|
||||
titlebar.untrusted=bold_yellow
|
||||
@ -37,13 +10,40 @@ titlebar.trusted=bold_white
|
||||
titlebar.online=bold_white
|
||||
titlebar.offline=bold_white
|
||||
titlebar.away=bold_white
|
||||
titlebar.xa=bold_white
|
||||
titlebar.dnd=bold_white
|
||||
titlebar.chat=bold_white
|
||||
titlebar.dnd=bold_white
|
||||
titlebar.xa=bold_white
|
||||
statusbar=blue
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=bold_cyan
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_white
|
||||
main.text=bold_white
|
||||
main.text.me=bold_white
|
||||
main.text.them=bold_white
|
||||
main.splash=bold_cyan
|
||||
main.time=bold_white
|
||||
input.text=bold_white
|
||||
subscribed=bold_green
|
||||
unsubscribed=bold_red
|
||||
otr.started.trusted=bold_green
|
||||
otr.started.untrusted=bold_yellow
|
||||
otr.ended=bold_red
|
||||
otr.trusted=bold_green
|
||||
otr.untrusted=bold_yellow
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_green
|
||||
dnd=bold_red
|
||||
xa=bold_cyan
|
||||
offline=bold_red
|
||||
incoming=bold_yellow
|
||||
typing=bold_yellow
|
||||
gone=bold_yellow
|
||||
error=bold_red
|
||||
roominfo=bold_yellow
|
||||
roommention=bold_yellow
|
||||
me=bold_yellow
|
||||
them=bold_green
|
||||
roster.header=bold_yellow
|
||||
occupants.header=bold_yellow
|
||||
|
41
themes/shade
41
themes/shade
@ -1,36 +1,49 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=default
|
||||
statusbar=default
|
||||
titlebar.text=white
|
||||
titlebar.brackets=magenta
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
titlebar.online=green
|
||||
titlebar.offline=red
|
||||
titlebar.away=green
|
||||
titlebar.chat=green
|
||||
titlebar.dnd=red
|
||||
titlebar.xa=green
|
||||
statusbar=default
|
||||
statusbar.text=magenta
|
||||
statusbar.brackets=magenta
|
||||
statusbar.active=white
|
||||
statusbar.new=green
|
||||
main.text=white
|
||||
input.text=white
|
||||
main.time=magenta
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
main.splash=magenta
|
||||
main.time=magenta
|
||||
input.text=white
|
||||
subscribed=green
|
||||
unsubscribed=yallow
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=red
|
||||
otr.ended=yellow
|
||||
otr.trusted=green
|
||||
otr.untrusted=red
|
||||
online=green
|
||||
away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=white
|
||||
incoming=yellow
|
||||
typing=green
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=green
|
||||
me=black
|
||||
roommention=green
|
||||
me=bold_black
|
||||
them=magenta
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=red
|
||||
otr.ended=yellow
|
||||
otr.trusted=green
|
||||
otr.untrusted=red
|
||||
roster.header=magenta
|
||||
occupants.header=magenta
|
@ -1,67 +1,22 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=bold_white
|
||||
titlebar.brackets=white
|
||||
statusbar.text=bold_white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=bold_cyan
|
||||
statusbar.new=bold_green
|
||||
main.text=white
|
||||
main.text.me=cyan
|
||||
main.text.them=bold_white
|
||||
input.text=bold_green
|
||||
main.time=yellow
|
||||
main.splash=bold_red
|
||||
online=bold_green
|
||||
away=bold_cyan
|
||||
chat=bold_white
|
||||
dnd=magenta
|
||||
xa=bold_blue
|
||||
offline=red
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=bold_yellow
|
||||
roominfo=yellow
|
||||
roommention=bold_red
|
||||
me=blue
|
||||
them=bold_green
|
||||
titlebar.unencrypted=bold_red
|
||||
titlebar.encrypted=bold_white
|
||||
titlebar.untrusted=bold_yellow
|
||||
titlebar.trusted=bold_white
|
||||
titlebar.online=bold_green
|
||||
titlebar.offline=bold_red
|
||||
titlebar.away=bold_cyan
|
||||
titlebar.xa=bold_cyan
|
||||
titlebar.dnd=bold_red
|
||||
titlebar.chat=bold_green
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
roster.header=bold_yellow
|
||||
occupants.header=bold_yellow
|
||||
|
||||
[ui]
|
||||
intype=false
|
||||
beep=false
|
||||
flash=false
|
||||
privileges=false
|
||||
presence=false
|
||||
splash=true
|
||||
wrap=true
|
||||
time=minutes
|
||||
statuses.muc=off
|
||||
statuses.chat=online
|
||||
statuses.console=off
|
||||
resource.title=false
|
||||
resource.message=false
|
||||
statuses.console=none
|
||||
statuses.chat=none
|
||||
statuses.muc=none
|
||||
occupants=true
|
||||
occupants.size=15
|
||||
roster=true
|
||||
roster.size=25
|
||||
roster.offline=false
|
||||
roster.resource=false
|
||||
roster.by=presence
|
||||
roster.size=25
|
||||
privileges=false
|
||||
presence=false
|
||||
intype=false
|
||||
otr.warn=false
|
||||
|
54
themes/spawn
54
themes/spawn
@ -1,37 +1,49 @@
|
||||
[colours]
|
||||
bkgnd=default
|
||||
titlebar=red
|
||||
statusbar=red
|
||||
titlebar.text=yellow
|
||||
titlebar.brackets=green
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
titlebar.online=green
|
||||
titlebar.offline=red
|
||||
titlebar.away=green
|
||||
titlebar.chat=green
|
||||
titlebar.dnd=red
|
||||
titlebar.xa=green
|
||||
statusbar=red
|
||||
statusbar.text=yellow
|
||||
statusbar.brackets=green
|
||||
statusbar.active=white
|
||||
statusbar.new=green
|
||||
main.text=white
|
||||
input.text=green
|
||||
main.time=red
|
||||
main.text.me=white
|
||||
main.text.them=white
|
||||
main.splash=red
|
||||
online=green
|
||||
away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=grey
|
||||
typing=green
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=green
|
||||
roommention=red
|
||||
me=green
|
||||
them=yellow
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=green
|
||||
titlebar.untrusted=red
|
||||
titlebar.trusted=green
|
||||
main.time=red
|
||||
input.text=green
|
||||
subscribed=green
|
||||
unsubscribed=red
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=red
|
||||
otr.ended=yellow
|
||||
otr.trusted=green
|
||||
otr.untrusted=red
|
||||
online=green
|
||||
away=yellow
|
||||
chat=green
|
||||
dnd=green
|
||||
xa=yellow
|
||||
offline=bold_black
|
||||
incoming=yellow
|
||||
typing=green
|
||||
gone=red
|
||||
error=red
|
||||
roominfo=green
|
||||
roommention=red
|
||||
me=green
|
||||
them=yellow
|
||||
roster.header=white
|
||||
occupants.header=white
|
@ -1,36 +1,49 @@
|
||||
[colours]
|
||||
bkgnd=white
|
||||
titlebar=blue
|
||||
statusbar=blue
|
||||
titlebar.text=white
|
||||
titlebar.brackets=white
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=yellow
|
||||
titlebar.trusted=white
|
||||
titlebar.online=white
|
||||
titlebar.offline=red
|
||||
titlebar.away=white
|
||||
titlebar.chat=white
|
||||
titlebar.dnd=red
|
||||
titlebar.xa=white
|
||||
statusbar=blue
|
||||
statusbar.text=white
|
||||
statusbar.brackets=white
|
||||
statusbar.active=megenta
|
||||
statusbar.new=red
|
||||
main.text=black
|
||||
input.text=black
|
||||
main.time=black
|
||||
main.text.me=black
|
||||
main.text.them=black
|
||||
main.splash=black
|
||||
main.time=black
|
||||
input.text=black
|
||||
subscribed=green
|
||||
unsubscribed=red
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
online=green
|
||||
away=cyan
|
||||
chat=green
|
||||
dnd=red
|
||||
xa=cyan
|
||||
offline=red
|
||||
incoming=yellow
|
||||
typing=yellow
|
||||
gone=red
|
||||
error=red
|
||||
incoming=yellow
|
||||
roominfo=yellow
|
||||
me=yellow
|
||||
them=green
|
||||
titlebar.unencrypted=red
|
||||
titlebar.encrypted=white
|
||||
titlebar.untrusted=yellow
|
||||
titlebar.trusted=white
|
||||
otr.started.trusted=green
|
||||
otr.started.untrusted=yellow
|
||||
otr.ended=red
|
||||
otr.trusted=green
|
||||
otr.untrusted=yellow
|
||||
roommention=yellow
|
||||
me=black
|
||||
them=black
|
||||
roster.header=black
|
||||
occupants.header=black
|
Loading…
Reference in New Issue
Block a user