Skip to content

Commit

Permalink
set custom and sacalable only icons to false for menu icons
Browse files Browse the repository at this point in the history
  • Loading branch information
TanvirOnGH committed Jun 22, 2024
1 parent b35cacb commit 1a4f334
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function menu:init(args)
local env = args.env or {}
local separator = args.separator or { widget = flex.gauge.separator.horizontal() }
local theme = args.theme or { auto_hotkey = true }
local icon_style = args.icon_style or { custom_only = true, scalable_only = true }
local icon_style = args.icon_style or { custom_only = false, scalable_only = false }

-- theme vars
local default_icon = flex.util.base.placeholder()
Expand Down Expand Up @@ -66,7 +66,7 @@ function menu:init(args)
theme = theme,
items = {
{ "Awesome", awesomemenu, micon("awesome") },
{ "NixOS", nixmenu, micon("nix") },
{ "NixOS", nixmenu, micon("nix-snowflake") },
{ "Applications", appmenu, micon("folder") },
{ "Places", placesmenu, micon("folder_home"), key = "c" },
separator,
Expand All @@ -78,7 +78,7 @@ function menu:init(args)
{ "Wifi Hotspot", "wihotspot-gui", micon("wifi") },
{ "Volume Control", "pavucontrol", micon("volume") },
separator,
{ "Lock Screen", "i3lock-fancy-rapid 5 5", micon("exit") },
{ "Lock Screen", "i3lock-fancy-rapid 5 5", micon("lockscreen") },
separator,
{ "Exit", exitmenu, micon("exit") },
},
Expand Down

0 comments on commit 1a4f334

Please sign in to comment.