Files
aiolauncher_scripts/community/play-store-search.lua
2022-09-17 10:41:43 +03:00

26 lines
501 B
Lua

-- name = "Play Store"
-- description = "Search anything in Play Store app"
-- data_source = "internal"
-- type = "search"
-- author = "Sriram SV"
-- version = "1.0"
-- prefix = "store|ps"
text_from = ""
text_to = ""
local md_color = require "md_colors"
local green = md_colors.green_600
function on_search(input)
text_from = input
text_to = ""
search:show({input},{green})
end
function on_click(idx)
system:open_browser("https://play.google.com/store/search?q="..text_from)
end