forked from Shinonome/dots-hyprland
move config to terminalGenerationProps
This commit is contained in:
@@ -95,6 +95,7 @@ Singleton {
|
|||||||
property real harmony: 0.8
|
property real harmony: 0.8
|
||||||
property real harmonizeThreshold: 100
|
property real harmonizeThreshold: 100
|
||||||
property real termFgBoost: 0.35
|
property real termFgBoost: 0.35
|
||||||
|
property bool forceDarkMode: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
property JsonObject palette: JsonObject {
|
property JsonObject palette: JsonObject {
|
||||||
|
|||||||
@@ -41,6 +41,20 @@ ContentPage {
|
|||||||
content: Translation.tr("Shell & utilities theming must also be enabled")
|
content: Translation.tr("Shell & utilities theming must also be enabled")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ConfigRow {
|
||||||
|
uniform: true
|
||||||
|
ConfigSwitch {
|
||||||
|
buttonIcon: "dark_mode"
|
||||||
|
text: Translation.tr("Force dark mode in terminal")
|
||||||
|
checked: Config.options.appearance.wallpaperTheming.terminalGenerationProps.forceDarkMode
|
||||||
|
onCheckedChanged: {
|
||||||
|
Config.options.appearance.wallpaperTheming.terminalGenerationProps.forceDarkMode= checked;
|
||||||
|
}
|
||||||
|
StyledToolTip {
|
||||||
|
content: Translation.tr("Ignored if terminal theming is not enabled")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ConfigSpinBox {
|
ConfigSpinBox {
|
||||||
icon: "invert_colors"
|
icon: "invert_colors"
|
||||||
|
|||||||
Reference in New Issue
Block a user