Adding icons to rofi run launcher command

This commit is contained in:
Derek Taylor
2025-05-08 17:37:01 -05:00
parent 8ccde8018a
commit 54b8863f0b
3 changed files with 7 additions and 4 deletions

View File

@@ -137,7 +137,7 @@ A list of available commands that can be bound to keys can be found at: https://
keys = [
# The essentials
Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"),
Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun"), desc='Run Launcher'),
Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun -show-icons"), desc='Run Launcher'),
Key([mod], "w", lazy.spawn(myBrowser), desc='Web browser'),
Key([mod], "b", lazy.hide_show_bar(position='all'), desc="Toggles the bar to show/hide"),
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),

View File

@@ -61,7 +61,7 @@ def maximize_by_switching_layout(qtile):
keys = [
# The essentials
Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"),
Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun"), desc='Run Launcher'),
Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun -show-icons"), desc='Run Launcher'),
Key([mod], "w", lazy.spawn(myBrowser), desc='Web browser'),
Key([mod], "b", lazy.hide_show_bar(position='all'), desc="Toggles the bar to show/hide"),
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),