1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-20 13:36:36 +02:00

manpage fixes/rm redundant comments & make alerts setting more intuitive

This commit is contained in:
Jfreegman
2014-06-28 22:05:05 -04:00
parent 97536d2a72
commit ebc5cd9285
4 changed files with 12 additions and 26 deletions

View File

@ -54,7 +54,7 @@ struct {
{ "autolog", uset_autolog },
{ "time", uset_time },
{ "timestamps", uset_timestamps },
{ "disable_alerts", uset_alerts },
{ "alerts", uset_alerts },
{ "colour_theme", uset_colours },
{ "history_size", uset_hst_size },
{ "download_path", uset_dwnld_path },
@ -166,7 +166,7 @@ static void set_default_settings(struct user_settings *s)
uset_autolog(s, "0");
uset_time(s, "24");
uset_timestamps(s, "1");
uset_alerts(s, "0");
uset_alerts(s, "1");
uset_colours(s, "0");
uset_hst_size(s, "700");
uset_dwnld_path(s, NULL);

View File

@ -57,8 +57,8 @@ enum {
TIMESTAMPS_OFF = 0,
TIMESTAMPS_ON = 1,
ALERTS_DISABLED = 1,
ALERTS_ENABLED = 0,
ALERTS_DISABLED = 0,
ALERTS_ENABLED = 1,
NATIVE_COLS = 1,
DFLT_COLS = 0,