-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.go
1539 lines (1392 loc) · 41 KB
/
config.go
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package config
import (
"embed"
"fmt"
"io"
"log"
"os"
"path/filepath"
"regexp"
"strings"
"sync"
"text/template"
"github.com/RasmusLindroth/tut/util"
"github.com/gdamore/tcell/v2"
"github.com/gobwas/glob"
"github.com/pelletier/go-toml/v2"
)
//go:embed toot.tmpl
var tootTemplate string
//go:embed user.tmpl
var userTemplate string
//go:embed help.tmpl
var helpTemplate string
//go:embed themes/*
var themesFS embed.FS
type Config struct {
General General
Style Style
Media Media
OpenPattern OpenPattern
OpenCustom OpenCustom
NotificationConfig Notification
Templates Templates
Input Input
}
type LeaderAction struct {
Command LeaderCommand
Subaction string
Shortcut string
}
type LeaderCommand uint
const (
LeaderNone LeaderCommand = iota
LeaderClearNotifications
LeaderCompose
LeaderEdit
LeaderBlocking
LeaderFavorited
LeaderBoosts
LeaderFavorites
LeaderFollowing
LeaderFollowers
LeaderTags
LeaderListPlacement
LeaderListSplit
LeaderMuting
LeaderPreferences
LeaderProfile
LeaderProportions
LeaderMentions
LeaderRefetch
LeaderStickToTop
LeaderHistory
LeaderLoadNewer
LeaderPane
LeaderClosePane
LeaderMovePaneLeft
LeaderMovePaneRight
LeaderMovePaneHome
LeaderMovePaneEnd
)
type FeedType uint
const (
Favorites FeedType = iota
Favorited
Boosts
Followers
Following
FollowRequests
Blocking
Muting
History
InvalidFeed
Notifications
Saved
Tag
Tags
Thread
TimelineFederated
TimelineHome
TimelineHomeSpecial
TimelineLocal
Mentions
Conversations
User
UserList
Lists
List
ListUsersIn
ListUsersAdd
)
type NotificationToHide string
const (
HideMention NotificationToHide = "mention"
HideStatus NotificationToHide = "status"
HideBoost NotificationToHide = "reblog"
HideFollow NotificationToHide = "follow"
HideFollowRequest NotificationToHide = "follow_request"
HideFavorite NotificationToHide = "favourite"
HidePoll NotificationToHide = "poll"
HideEdited NotificationToHide = "update"
)
var timelineID uint = 0
var timelineIDMux sync.Mutex
func newTimelineID() uint {
timelineIDMux.Lock()
defer timelineIDMux.Unlock()
timelineID = timelineID + 1
return timelineID
}
func NewTimeline(tl Timeline) *Timeline {
tl.ID = newTimelineID()
return &tl
}
type OnTimelineFocus uint
const (
TimelineFocusPane OnTimelineFocus = iota
TimelineFocusTimeline
)
type OnTimelineCreationClosed uint
const (
TimelineCreationClosedNewPane OnTimelineCreationClosed = iota
TimelineCreationClosedCurrentPane
)
type Timeline struct {
ID uint
FeedType FeedType
Subaction string
Name string
Key Key
Shortcut string
HideBoosts bool
HideReplies bool
Closed bool
OnFocus OnTimelineFocus
OnCreationClosed OnTimelineCreationClosed
}
type General struct {
Editor string
UseInternalEditor bool
Confirmation bool
MouseSupport bool
DateTodayFormat string
DateFormat string
DateRelative int
MaxWidth int
QuoteReply bool
ShortHints bool
ShowFilterPhrase bool
ListPlacement ListPlacement
ListSplit ListSplit
ListProportion int
ContentProportion int
TerminalTitle int
ShowIcons bool
ShowHelp bool
RedrawUI bool
LeaderKey rune
LeaderTimeout int64
LeaderActions []LeaderAction
Timelines []*Timeline
StickToTop bool
NotificationsToHide []NotificationToHide
ShowBoostedUser bool
DynamicTimelineName bool
CommandsInNewPane bool
}
type Style struct {
Theme string
Background tcell.Color
Text tcell.Color
Subtle tcell.Color
WarningText tcell.Color
TextSpecial1 tcell.Color
TextSpecial2 tcell.Color
TopBarBackground tcell.Color
TopBarText tcell.Color
StatusBarBackground tcell.Color
StatusBarText tcell.Color
StatusBarViewBackground tcell.Color
StatusBarViewText tcell.Color
ListSelectedBackground tcell.Color
ListSelectedText tcell.Color
ListSelectedInactiveBackground tcell.Color
ListSelectedInactiveText tcell.Color
ControlsText tcell.Color
ControlsHighlight tcell.Color
AutocompleteBackground tcell.Color
AutocompleteText tcell.Color
AutocompleteSelectedBackground tcell.Color
AutocompleteSelectedText tcell.Color
ButtonColorOne tcell.Color
ButtonColorTwo tcell.Color
TimelineNameBackground tcell.Color
TimelineNameText tcell.Color
IconColor tcell.Color
CommandText tcell.Color
}
type Media struct {
DeleteTmpFiles bool
ImageViewer string
ImageArgs []string
ImageTerminal bool
ImageSingle bool
ImageReverse bool
VideoViewer string
VideoArgs []string
VideoTerminal bool
VideoSingle bool
VideoReverse bool
AudioViewer string
AudioArgs []string
AudioTerminal bool
AudioSingle bool
AudioReverse bool
LinkViewer string
LinkArgs []string
LinkTerminal bool
}
type Pattern struct {
Compiled glob.Glob
Program string
Args []string
Terminal bool
}
type OpenPattern struct {
Patterns []Pattern
}
type Custom struct {
Index int
Name string
Program string
Args []string
Terminal bool
Key Key
}
type OpenCustom struct {
OpenCustoms []Custom
}
type ListPlacement uint
const (
ListPlacementTop ListPlacement = iota
ListPlacementBottom
ListPlacementLeft
ListPlacementRight
)
type ListSplit uint
const (
ListRow ListSplit = iota
ListColumn
)
type NotificationType uint
const (
NotificationFollower NotificationType = iota
NotificationFavorite
NotificationMention
NotificationUpdate
NotificationBoost
NotificationPoll
NotificationPost
)
type Notification struct {
NotificationFollower bool
NotificationFavorite bool
NotificationMention bool
NotificationUpdate bool
NotificationBoost bool
NotificationPoll bool
NotificationPost bool
}
type Templates struct {
Toot *template.Template
User *template.Template
Help *template.Template
}
func NilDefaultBool(x *bool, def *bool) bool {
if x == nil {
return *def
}
return *x
}
func NilDefaultString(x *string, def *string) string {
if x == nil {
return *def
}
return *x
}
func NilDefaultInt(x *int, def *int) int {
if x == nil {
return *def
}
return *x
}
func NilDefaultInt64(x *int64, def *int64) int64 {
if x == nil {
return *def
}
return *x
}
var keyMatch = regexp.MustCompile(`^(.*?)\[(.*?)\](.*?)$`)
func newHint(s string) []string {
matches := keyMatch.FindAllStringSubmatch(s, -1)
if len(matches) == 0 {
return []string{"", "", ""}
}
if len(matches[0]) != 4 {
return []string{"", "", ""}
}
return []string{matches[0][1], matches[0][2], matches[0][3]}
}
func NewKey(hint string, hintAlt string, keys []string, special []string) (Key, error) {
k := Key{}
if len(hint) > 0 && len(hintAlt) > 0 {
k.Hint = [][]string{newHint(hint), newHint(hintAlt)}
} else if len(hint) > 0 {
k.Hint = [][]string{newHint(hint), newHint(hintAlt)}
}
var runes []rune
var keysTcell []tcell.Key
for _, r := range keys {
if len(r) > 1 {
return k, fmt.Errorf("key %s can only be one char", r)
}
if len(r) == 0 {
continue
}
runes = append(runes, rune(r[0]))
}
for _, s := range special {
found := false
var fk tcell.Key
for tk, tv := range tcell.KeyNames {
if tv == s {
found = true
fk = tk
break
}
}
if found {
keysTcell = append(keysTcell, fk)
} else {
return k, fmt.Errorf("no key named %s", s)
}
}
k.Runes = runes
k.Keys = keysTcell
return k, nil
}
type Key struct {
Hint [][]string
Runes []rune
Keys []tcell.Key
}
func (k Key) Match(kb tcell.Key, rb rune) bool {
for _, ka := range k.Keys {
if ka == kb {
return true
}
}
for _, ra := range k.Runes {
if ra == rb {
return true
}
}
return false
}
type Input struct {
GlobalDown Key
GlobalUp Key
GlobalEnter Key
GlobalBack Key
GlobalExit Key
MainHome Key
MainEnd Key
MainPrevFeed Key
MainNextFeed Key
MainPrevPane Key
MainNextPane Key
MainCompose Key
MainNextAccount Key
MainPrevAccount Key
StatusAvatar Key
StatusBoost Key
StatusDelete Key
StatusEdit Key
StatusFavorite Key
StatusMedia Key
StatusLinks Key
StatusPoll Key
StatusReply Key
StatusBookmark Key
StatusThread Key
StatusUser Key
StatusViewFocus Key
StatusYank Key
StatusToggleCW Key
StatusShowFiltered Key
UserAvatar Key
UserBlock Key
UserFollow Key
UserFollowRequestDecide Key
UserMute Key
UserLinks Key
UserUser Key
UserViewFocus Key
UserYank Key
ListOpenFeed Key
ListUserList Key
ListUserAdd Key
ListUserDelete Key
TagOpenFeed Key
TagFollow Key
LinkOpen Key
LinkYank Key
ComposeEditCW Key
ComposeEditText Key
ComposeIncludeQuote Key
ComposeMediaFocus Key
ComposePost Key
ComposeToggleContentWarning Key
ComposeVisibility Key
ComposeLanguage Key
ComposePoll Key
MediaDelete Key
MediaEditDesc Key
MediaAdd Key
VoteVote Key
VoteSelect Key
PollAdd Key
PollEdit Key
PollDelete Key
PollMultiToggle Key
PollExpiration Key
PreferenceName Key
PreferenceVisibility Key
PreferenceBio Key
PreferenceSave Key
PreferenceFields Key
PreferenceFieldsAdd Key
PreferenceFieldsEdit Key
PreferenceFieldsDelete Key
EditorExit Key
}
func parseColor(input string, def string, xrdb map[string]string) tcell.Color {
if input == "" {
return tcell.GetColor(def)
}
if strings.HasPrefix(input, "xrdb:") {
key := strings.TrimPrefix(input, "xrdb:")
if c, ok := xrdb[key]; ok {
return tcell.GetColor(c)
} else {
return tcell.GetColor(def)
}
}
return tcell.GetColor(input)
}
func parseTheme(cfg StyleTOML, xrdbColors map[string]string) Style {
var style Style
def := ConfigDefault.Style
s := NilDefaultString(cfg.Background, def.Background)
style.Background = parseColor(s, "#27822", xrdbColors)
s = NilDefaultString(cfg.Text, def.Text)
style.Text = parseColor(s, "#f8f8f2", xrdbColors)
s = NilDefaultString(cfg.Subtle, def.Subtle)
style.Subtle = parseColor(s, "#808080", xrdbColors)
s = NilDefaultString(cfg.WarningText, def.WarningText)
style.WarningText = parseColor(s, "#f92672", xrdbColors)
s = NilDefaultString(cfg.TextSpecial1, def.TextSpecial1)
style.TextSpecial1 = parseColor(s, "#ae81ff", xrdbColors)
s = NilDefaultString(cfg.TextSpecial2, def.TextSpecial2)
style.TextSpecial2 = parseColor(s, "#a6e22e", xrdbColors)
s = NilDefaultString(cfg.TopBarBackground, def.TopBarBackground)
style.TopBarBackground = parseColor(s, "#f92672", xrdbColors)
s = NilDefaultString(cfg.TopBarText, def.TopBarText)
style.TopBarText = parseColor(s, "#f8f8f2", xrdbColors)
s = NilDefaultString(cfg.StatusBarBackground, def.StatusBarBackground)
style.StatusBarBackground = parseColor(s, "#f92672", xrdbColors)
s = NilDefaultString(cfg.StatusBarText, def.StatusBarText)
style.StatusBarText = parseColor(s, "#f8f8f3", xrdbColors)
s = NilDefaultString(cfg.StatusBarViewBackground, def.StatusBarViewBackground)
style.StatusBarViewBackground = parseColor(s, "#ae81ff", xrdbColors)
s = NilDefaultString(cfg.StatusBarViewText, def.StatusBarViewText)
style.StatusBarViewText = parseColor(s, "#f8f8f2", xrdbColors)
s = NilDefaultString(cfg.ListSelectedBackground, def.ListSelectedBackground)
style.ListSelectedBackground = parseColor(s, "#f92672", xrdbColors)
s = NilDefaultString(cfg.ListSelectedText, def.ListSelectedText)
style.ListSelectedText = parseColor(s, "#f8f8f2", xrdbColors)
s = NilDefaultString(cfg.ListSelectedInactiveBackground, sp(""))
if len(s) > 0 {
style.ListSelectedInactiveBackground = parseColor(s, "#ae81ff", xrdbColors)
} else {
style.ListSelectedInactiveBackground = style.StatusBarViewBackground
}
s = NilDefaultString(cfg.ListSelectedInactiveText, def.ListSelectedInactiveText)
if len(s) > 0 {
style.ListSelectedInactiveText = parseColor(s, "#f8f8f2", xrdbColors)
} else {
style.ListSelectedInactiveText = style.StatusBarViewText
}
s = NilDefaultString(cfg.ControlsText, sp(""))
if len(s) > 0 {
style.ControlsText = parseColor(s, "#f8f8f2", xrdbColors)
} else {
style.ControlsText = style.Text
}
s = NilDefaultString(cfg.ControlsHighlight, sp(""))
if len(s) > 0 {
style.ControlsHighlight = parseColor(s, "#a6e22e", xrdbColors)
} else {
style.ControlsHighlight = style.TextSpecial2
}
s = NilDefaultString(cfg.AutocompleteBackground, sp(""))
if len(s) > 0 {
style.AutocompleteBackground = parseColor(s, "#272822", xrdbColors)
} else {
style.AutocompleteBackground = style.Background
}
s = NilDefaultString(cfg.AutocompleteText, sp(""))
if len(s) > 0 {
style.AutocompleteText = parseColor(s, "#f8f8f2", xrdbColors)
} else {
style.AutocompleteText = style.Text
}
s = NilDefaultString(cfg.AutocompleteSelectedBackground, sp(""))
if len(s) > 0 {
style.AutocompleteSelectedBackground = parseColor(s, "#ae81ff", xrdbColors)
} else {
style.AutocompleteSelectedBackground = style.StatusBarViewBackground
}
s = NilDefaultString(cfg.AutocompleteSelectedText, sp(""))
if len(s) > 0 {
style.AutocompleteSelectedText = parseColor(s, "#f8f8f2", xrdbColors)
} else {
style.AutocompleteSelectedText = style.StatusBarViewText
}
s = NilDefaultString(cfg.ButtonColorOne, sp(""))
if len(s) > 0 {
style.ButtonColorOne = parseColor(s, "#ae81ff", xrdbColors)
} else {
style.ButtonColorOne = style.StatusBarViewBackground
}
s = NilDefaultString(cfg.ButtonColorTwo, sp(""))
if len(s) > 0 {
style.ButtonColorTwo = parseColor(s, "#272822", xrdbColors)
} else {
style.ButtonColorTwo = style.Background
}
s = NilDefaultString(cfg.TimelineNameBackground, sp(""))
if len(s) > 0 {
style.TimelineNameBackground = parseColor(s, "#272822", xrdbColors)
} else {
style.TimelineNameBackground = style.Background
}
s = NilDefaultString(cfg.TimelineNameText, sp(""))
if len(s) > 0 {
style.TimelineNameText = parseColor(s, "#808080", xrdbColors)
} else {
style.TimelineNameText = style.Subtle
}
s = NilDefaultString(cfg.CommandText, sp(""))
if len(s) > 0 {
style.CommandText = parseColor(s, "#f8f8f2", xrdbColors)
} else {
style.CommandText = style.StatusBarText
}
return style
}
func parseStyle(cfg StyleTOML, cnfPath string, cnfDir string) Style {
var xrdbColors map[string]string
xrdbMap, _ := GetXrdbColors()
def := ConfigDefault.Style
prefix := NilDefaultString(cfg.XrdbPrefix, def.XrdbPrefix)
if prefix == "" {
prefix = "guess"
}
if prefix == "guess" {
if m, ok := xrdbMap["*"]; ok {
xrdbColors = m
} else if m, ok := xrdbMap["URxvt"]; ok {
xrdbColors = m
} else if m, ok := xrdbMap["XTerm"]; ok {
xrdbColors = m
}
} else {
if m, ok := xrdbMap[prefix]; ok {
xrdbColors = m
}
}
style := Style{}
theme := NilDefaultString(cfg.Theme, def.Theme)
if theme != "none" && theme != "" {
bundled, local, err := getThemes(cnfPath, cnfDir)
if err != nil {
log.Fatalf("Couldn't load themes. Error: %s\n", err)
}
found := false
isLocal := false
for _, t := range local {
if filepath.Base(t) == fmt.Sprintf("%s.toml", theme) {
found = true
isLocal = true
break
}
}
if !found {
for _, t := range bundled {
if filepath.Base(t) == fmt.Sprintf("%s.toml", theme) {
found = true
break
}
}
}
if !found {
log.Fatalf("Couldn't find theme %s\n", theme)
}
tcfg, err := getTheme(theme, isLocal, cnfDir)
if err != nil {
log.Fatalf("Couldn't load theme. Error: %s\n", err)
}
style = parseTheme(tcfg, xrdbColors)
} else {
style = parseTheme(cfg, xrdbColors)
}
return style
}
func getViewer(v *ViewerTOML, def *ViewerTOML) (program, args string, terminal, single, reverse bool) {
program = *def.Program
args = *def.Args
terminal = *def.Terminal
single = *def.Single
reverse = *def.Reverse
if v == nil {
return
}
if v.Program != nil {
program = *v.Program
}
if v.Args != nil {
args = *v.Args
}
if v.Terminal != nil {
terminal = *v.Terminal
}
if v.Single != nil {
single = *v.Single
}
if v.Reverse != nil {
reverse = *v.Reverse
}
if *v.Program == "TUT_OS_DEFAULT" {
var argsSlice []string
program, argsSlice = util.GetDefaultForOS()
args = strings.Join(argsSlice, " ")
}
return
}
func parseMedia(cfg MediaTOML) Media {
media := Media{}
media.DeleteTmpFiles = NilDefaultBool(cfg.DeleteTmpFiles, ConfigDefault.Media.DeleteTmpFiles)
var program, args string
var terminal, single, reverse bool
program, args, terminal, single, reverse = getViewer(cfg.Image, ConfigDefault.Media.Image)
media.ImageViewer = program
media.ImageArgs = strings.Fields(args)
media.ImageTerminal = terminal
media.ImageSingle = single
media.ImageReverse = reverse
program, args, terminal, single, reverse = getViewer(cfg.Video, ConfigDefault.Media.Video)
media.VideoViewer = program
media.VideoArgs = strings.Fields(args)
media.VideoTerminal = terminal
media.VideoSingle = single
media.VideoReverse = reverse
program, args, terminal, single, reverse = getViewer(cfg.Audio, ConfigDefault.Media.Audio)
media.AudioViewer = program
media.AudioArgs = strings.Fields(args)
media.AudioTerminal = terminal
media.AudioSingle = single
media.AudioReverse = reverse
program, args, terminal, _, _ = getViewer(cfg.Link, ConfigDefault.Media.Link)
media.LinkViewer = program
media.LinkArgs = strings.Fields(args)
media.LinkTerminal = terminal
return media
}
func parseGeneral(cfg GeneralTOML) General {
general := General{}
def := ConfigDefault.General
general.Editor = NilDefaultString(cfg.Editor, def.Editor)
if general.Editor == "TUT_USE_INTERNAL" {
general.UseInternalEditor = true
}
general.Confirmation = NilDefaultBool(cfg.Confirmation, def.Confirmation)
general.MouseSupport = NilDefaultBool(cfg.MouseSupport, def.MouseSupport)
dateFormat := NilDefaultString(cfg.DateFormat, def.DateFormat)
if dateFormat == "" {
dateFormat = "2006-01-02 15:04"
}
general.DateFormat = dateFormat
dateTodayFormat := NilDefaultString(cfg.DateTodayFormat, def.DateTodayFormat)
if dateTodayFormat == "" {
dateTodayFormat = "15:04"
}
general.DateTodayFormat = dateTodayFormat
general.DateRelative = NilDefaultInt(cfg.DateRelative, def.DateRelative)
general.QuoteReply = NilDefaultBool(cfg.QuoteReply, def.QuoteReply)
general.MaxWidth = NilDefaultInt(cfg.MaxWidth, def.MaxWidth)
general.ShortHints = NilDefaultBool(cfg.ShortHints, def.ShortHints)
general.ShowFilterPhrase = NilDefaultBool(cfg.ShowFilterPhrase, def.ShowFilterPhrase)
general.ShowIcons = NilDefaultBool(cfg.ShowIcons, def.ShowIcons)
general.ShowHelp = NilDefaultBool(cfg.ShowHelp, def.ShowHelp)
general.RedrawUI = NilDefaultBool(cfg.RedrawUI, def.RedrawUI)
general.StickToTop = NilDefaultBool(cfg.StickToTop, def.StickToTop)
general.ShowBoostedUser = NilDefaultBool(cfg.ShowBoostedUser, def.ShowBoostedUser)
general.DynamicTimelineName = NilDefaultBool(cfg.DynamicTimelineName, def.DynamicTimelineName)
general.CommandsInNewPane = NilDefaultBool(cfg.CommandsInNewPane, def.CommandsInNewPane)
lp := NilDefaultString(cfg.ListPlacement, def.ListPlacement)
switch lp {
case "left":
general.ListPlacement = ListPlacementLeft
case "right":
general.ListPlacement = ListPlacementRight
case "top":
general.ListPlacement = ListPlacementTop
case "bottom":
general.ListPlacement = ListPlacementBottom
default:
general.ListPlacement = ListPlacementLeft
}
ls := NilDefaultString(cfg.ListSplit, def.ListSplit)
switch ls {
case "row":
general.ListSplit = ListRow
case "column":
general.ListSplit = ListColumn
}
listProp := NilDefaultInt(cfg.ListProportion, def.ListProportion)
if listProp < 1 {
listProp = 1
}
contentProp := NilDefaultInt(cfg.ContentProportion, def.ContentProportion)
if contentProp < 1 {
contentProp = 1
}
general.ListProportion = listProp
general.ContentProportion = contentProp
leaderString := NilDefaultString(cfg.LeaderKey, def.LeaderKey)
leaderRunes := []rune(leaderString)
if len(leaderRunes) > 1 {
leaderRunes = []rune(strings.TrimSpace(leaderString))
}
if len(leaderRunes) > 1 {
fmt.Println("error parsing leader-key. Error: leader-key can only be one char long")
os.Exit(1)
}
if len(leaderRunes) == 1 {
general.LeaderKey = leaderRunes[0]
}
general.LeaderTimeout = NilDefaultInt64(cfg.LeaderTimeout, def.LeaderTimeout)
if general.LeaderKey != rune(0) {
var las []LeaderAction
if cfg.LeaderActions != nil {
lactions := *cfg.LeaderActions
for _, l := range lactions {
la := LeaderAction{}
ltype := NilDefaultString(l.Type, sp(""))
ldata := NilDefaultString(l.Data, sp(""))
lshortcut := NilDefaultString(l.Shortcut, sp(""))
switch ltype {
case "clear-notifications":
la.Command = LeaderClearNotifications
case "compose":
la.Command = LeaderCompose
case "edit":
la.Command = LeaderEdit
case "blocking":
la.Command = LeaderBlocking
case "favorited":
la.Command = LeaderFavorited
case "history":
la.Command = LeaderHistory
case "boosts":
la.Command = LeaderBoosts
case "favorites":
la.Command = LeaderFavorites
case "following":
la.Command = LeaderFollowing
case "followers":
la.Command = LeaderFollowers
case "muting":
la.Command = LeaderMuting
case "preferences":
la.Command = LeaderPreferences
case "profile":
la.Command = LeaderProfile
case "mentions":
la.Command = LeaderMentions
case "stick-to-top":
la.Command = LeaderStickToTop
case "refetch":
la.Command = LeaderRefetch
case "tags":
la.Command = LeaderTags
case "list-placement":
la.Command = LeaderListPlacement
la.Subaction = ldata
case "list-split":
la.Command = LeaderListSplit
la.Subaction = ldata
case "proportions":
la.Command = LeaderProportions
la.Subaction = ldata
case "pane":
la.Command = LeaderPane
la.Subaction = ldata
case "close-pane":
la.Command = LeaderClosePane
case "move-pane-left", "move-pane-up":
la.Command = LeaderMovePaneLeft
case "move-pane-right", "move-pane-down":
la.Command = LeaderMovePaneRight
case "move-pane-home":
la.Command = LeaderMovePaneHome
case "move-pane-end":
la.Command = LeaderMovePaneEnd
case "newer":
la.Command = LeaderLoadNewer
default:
fmt.Printf("leader-action %s is invalid\n", ltype)
os.Exit(1)
}
la.Shortcut = lshortcut
las = append(las, la)
}
}
general.LeaderActions = las
}
var tls []*Timeline
timelines := cfg.Timelines
if cfg.Timelines != nil {
for _, l := range *timelines {
tl := NewTimeline(Timeline{})
if l.Type == nil {
fmt.Println("timelines must have a type")
os.Exit(1)
}
switch *l.Type {
case "home":
tl.FeedType = TimelineHome
case "special":
tl.FeedType = TimelineHomeSpecial
case "direct":
tl.FeedType = Conversations
case "local":
tl.FeedType = TimelineLocal
case "federated":
tl.FeedType = TimelineFederated
case "bookmarks":
tl.FeedType = Saved
case "saved":
tl.FeedType = Saved
case "favorited":
tl.FeedType = Favorited
case "notifications":
tl.FeedType = Notifications
case "mentions":
tl.FeedType = Mentions
case "lists":
tl.FeedType = Lists
case "tag":