diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index e173fae..3c620f6 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -424,6 +424,16 @@ keys = [ lazy.spawn("@firefox@ --private-window"), desc="Start Firefox (New Private Window)", ), + Key( + [Keys.SUPER, Keys.ALT, Keys.SHIFT], "f", + lazy.spawncmd(prompt="search", command="@firefox@ --search '%s'", complete=None, shell=False), + desc="Search for a term in Firefox", + ), + Key( + [Keys.SUPER, Keys.ALT, Keys.CONTROL, Keys.SHIFT], "f", + lazy.spawncmd(prompt="private search", command="@firefox@ --private-window 'https://google.com/search?q=%s'", complete=None, shell=False), + desc="Search for a term in Firefox", + ), Key( [Keys.SUPER, Keys.ALT], "e", lazy.spawn(Apps.EDITOR),