Default to full screen capture for hyprland preview picker

This commit is contained in:
David Heinemeier Hansson
2026-03-08 15:53:42 +01:00
parent 549cd59e48
commit 9746370b62
2 changed files with 8 additions and 1 deletions
@@ -3,7 +3,7 @@
# relative paths are resolved relative to the location of the config file
stylesheets: ["../omarchy/current/theme/hyprland-preview-share-picker.css"]
# default page selected when the picker is opened
default_page: windows
default_page: outputs
window:
# height of the application window
+7
View File
@@ -0,0 +1,7 @@
echo "Update hyprland-preview-share-picker config to default to outputs page"
CONFIG_FILE=~/.config/hyprland-preview-share-picker/config.yaml
if [[ -f $CONFIG_FILE ]]; then
sed -i 's/^default_page: windows$/default_page: outputs/' "$CONFIG_FILE"
fi