Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Fix flatpak apps not launching
Browse files Browse the repository at this point in the history
  • Loading branch information
PassiveLemon committed Dec 3, 2024
1 parent 3b493c5 commit 9d6843e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion widget/app_launcher/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,8 @@ local function generate_apps(self)
if app.should_show(app) then
local name = app_info.get_name(app)
local commandline = app_info.get_commandline(app)
local executable = app_info.get_executable(app)
local executable = app:get_string("Exec")
executable = executable:match("^(.-)%%") or executable
local icon = icon_theme:get_gicon_path(app_info.get_icon(app))

-- Check if this app should be skipped, depanding on the skip_names / skip_commands table
Expand Down

0 comments on commit 9d6843e

Please sign in to comment.