aboutsummaryrefslogtreecommitdiff
path: root/Kconfig
blob: 0fbafaa9336afaa7cd5bebe752d5221ef49a82d0 (plain)
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
menu "Application"
    config POI_NAME
        string "Application name"
        default "smolbote"
    config POI_ICON
        string "Path to icon"
        default ":/icons/poi.svg"
endmenu

source 'lib/configuration/Kconfig'

# Plugin loading
source 'lib/plugin/Kconfig'

config USEPLASMA
    bool "Enable KDE Frameworks integration"
    default n
    select SHOW_KDE_INTEGRATION
    help
        This is a help message

menu "KDE Integration"
    depends on USEPLASMA

    config PLASMA_BLUR
        bool "Enable translucent background and blur behind window"
        default n

    config WALLET_FOLDER
        string "KDE Wallet folder name"
        default "smolbote"
endmenu

config USEBREAKPAD
    bool "Enable Breakpad integration"
    default n

menu "Breakpad Integration"
    depends on USEBREAKPAD

    config PATH_CRASHDUMP
        string "Crash dump location"
        default "~/.config/smolbote/crash.d"

    config PATH_CRASHHANDLER
        string "Crash handler location"
        default ""
endmenu

menu "Workarounds"
    config QTBUG_65223
        bool "Manually emit loadFinished"
        default y
        help
            See QTBUG-65223: loadStarted is emitted twice when loading link with anchor

endmenu