forked from Shinonome/dots-hyprland
Save paths for screen recording and screenshots (#2354)
This commit is contained in:
@@ -85,6 +85,31 @@ ContentPage {
|
||||
|
||||
}
|
||||
|
||||
ContentSection {
|
||||
icon: "file_open"
|
||||
title: Translation.tr("Save paths")
|
||||
|
||||
MaterialTextArea {
|
||||
Layout.fillWidth: true
|
||||
placeholderText: Translation.tr("Video Recording Path")
|
||||
text: Config.options.screenRecord.savePath
|
||||
wrapMode: TextEdit.Wrap
|
||||
onTextChanged: {
|
||||
Config.options.screenRecord.savePath = text;
|
||||
}
|
||||
}
|
||||
|
||||
MaterialTextArea {
|
||||
Layout.fillWidth: true
|
||||
placeholderText: Translation.tr("Screenshot Path (leave empty to just copy)")
|
||||
text: Config.options.screenSnip.savePath
|
||||
wrapMode: TextEdit.Wrap
|
||||
onTextChanged: {
|
||||
Config.options.screenSnip.savePath = text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ContentSection {
|
||||
icon: "search"
|
||||
title: Translation.tr("Search")
|
||||
|
||||
Reference in New Issue
Block a user