overview: search

This commit is contained in:
end-4
2025-04-25 20:35:37 +02:00
parent e1359116b8
commit 63c844cdeb
4 changed files with 214 additions and 29 deletions
@@ -197,6 +197,7 @@ Singleton {
property int barPreferredSideSectionWidth: 400
property int sidebarWidth: 450
property int notificationPopupWidth: 410
property int searchWidthCollapsed: 260
property int searchWidth: 450
property int hyprlandGapsOut: 5
property int elevationMargin: 7
@@ -41,6 +41,12 @@ Singleton {
property int updateInterval: 3000
}
property QtObject search: QtObject {
property int nonAppResultDelay: 30 // This prevents lagging when typing
property string engineBaseUrl: "https://www.google.com/search?q="
property list<string> excludedSites: [ "quora.com" ]
}
property QtObject hacks: QtObject {
property int arbitraryRaceConditionDelay: 10 // milliseconds
}