forked from Shinonome/dots-hyprland
tweaks in settings/config
This commit is contained in:
@@ -465,7 +465,7 @@ Singleton {
|
|||||||
}
|
}
|
||||||
|
|
||||||
property JsonObject screenSnip: JsonObject {
|
property JsonObject screenSnip: JsonObject {
|
||||||
property string savePath: "/home/vaguesyntax/Pictures"
|
property string savePath: "" // only copy to clipboard when empty
|
||||||
}
|
}
|
||||||
|
|
||||||
property JsonObject sounds: JsonObject {
|
property JsonObject sounds: JsonObject {
|
||||||
|
|||||||
@@ -89,32 +89,25 @@ ContentPage {
|
|||||||
icon: "file_open"
|
icon: "file_open"
|
||||||
title: Translation.tr("Save paths")
|
title: Translation.tr("Save paths")
|
||||||
|
|
||||||
ContentSubsection {
|
MaterialTextArea {
|
||||||
title: Translation.tr("Video save path")
|
Layout.fillWidth: true
|
||||||
MaterialTextArea {
|
placeholderText: Translation.tr("Video Recording Path")
|
||||||
Layout.fillWidth: true
|
text: Config.options.screenRecord.savePath
|
||||||
placeholderText: Translation.tr("Path")
|
wrapMode: TextEdit.Wrap
|
||||||
text: Config.options.screenRecord.savePath
|
onTextChanged: {
|
||||||
wrapMode: TextEdit.Wrap
|
Config.options.screenRecord.savePath = text;
|
||||||
onTextChanged: {
|
|
||||||
Config.options.screenRecord.savePath = text;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ContentSubsection {
|
MaterialTextArea {
|
||||||
title: Translation.tr("Screenshot save path") + " (leave empty to just copy)"
|
Layout.fillWidth: true
|
||||||
MaterialTextArea {
|
placeholderText: Translation.tr("Screenshot Path (leave empyt to just copy)")
|
||||||
Layout.fillWidth: true
|
text: Config.options.screenSnip.savePath
|
||||||
placeholderText: Translation.tr("Path")
|
wrapMode: TextEdit.Wrap
|
||||||
text: Config.options.screenSnip.savePath
|
onTextChanged: {
|
||||||
wrapMode: TextEdit.Wrap
|
Config.options.screenSnip.savePath = text;
|
||||||
onTextChanged: {
|
|
||||||
Config.options.screenSnip.savePath = text;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ContentSection {
|
ContentSection {
|
||||||
|
|||||||
Reference in New Issue
Block a user