Switching dmenu to rofi; working on rofi theme.

This commit is contained in:
Derek Taylor
2024-01-25 17:12:03 -06:00
parent 96384be99c
commit 8075e4c13a
3 changed files with 37 additions and 36 deletions

View File

@@ -144,7 +144,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("dm-run"), desc='Run Launcher'),
Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun"), desc='Run Launcher'),
Key([mod], "b", lazy.spawn(myBrowser), desc='Web browser'),
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"),
@@ -238,23 +238,23 @@ keys = [
lazy.spawn("/usr/bin/emacs --daemon"),
desc='Kill/restart the Emacs daemon')
]),
# Dmenu scripts launched using the key chord SUPER+p followed by 'key'
# Dmenu/rofi scripts launched using the key chord SUPER+p followed by 'key'
KeyChord([mod], "p", [
Key([], "h", lazy.spawn("dm-hub"), desc='List all dmscripts'),
Key([], "a", lazy.spawn("dm-sounds"), desc='Choose ambient sound'),
Key([], "b", lazy.spawn("dm-setbg"), desc='Set background'),
Key([], "c", lazy.spawn("dtos-colorscheme"), desc='Choose color scheme'),
Key([], "e", lazy.spawn("dm-confedit"), desc='Choose a config file to edit'),
Key([], "i", lazy.spawn("dm-maim"), desc='Take a screenshot'),
Key([], "k", lazy.spawn("dm-kill"), desc='Kill processes '),
Key([], "m", lazy.spawn("dm-man"), desc='View manpages'),
Key([], "n", lazy.spawn("dm-note"), desc='Store and copy notes'),
Key([], "o", lazy.spawn("dm-bookman"), desc='Browser bookmarks'),
Key([], "h", lazy.spawn("dm-hub -r"), desc='List all dmscripts'),
Key([], "a", lazy.spawn("dm-sounds -r"), desc='Choose ambient sound'),
Key([], "b", lazy.spawn("dm-setbg -r"), desc='Set background'),
Key([], "c", lazy.spawn("dtos-colorscheme -r"), desc='Choose color scheme'),
Key([], "e", lazy.spawn("dm-confedit -r"), desc='Choose a config file to edit'),
Key([], "i", lazy.spawn("dm-maim -r"), desc='Take a screenshot'),
Key([], "k", lazy.spawn("dm-kill -r"), desc='Kill processes '),
Key([], "m", lazy.spawn("dm-man -r"), desc='View manpages'),
Key([], "n", lazy.spawn("dm-note -r"), desc='Store and copy notes'),
Key([], "o", lazy.spawn("dm-bookman -r"), desc='Browser bookmarks'),
Key([], "p", lazy.spawn("passmenu -p \"Pass: \""), desc='Logout menu'),
Key([], "q", lazy.spawn("dm-logout"), desc='Logout menu'),
Key([], "r", lazy.spawn("dm-radio"), desc='Listen to online radio'),
Key([], "s", lazy.spawn("dm-websearch"), desc='Search various engines'),
Key([], "t", lazy.spawn("dm-translate"), desc='Translate text')
Key([], "q", lazy.spawn("dm-logout -r"), desc='Logout menu'),
Key([], "r", lazy.spawn("dm-radio -r"), desc='Listen to online radio'),
Key([], "s", lazy.spawn("dm-websearch -r"), desc='Search various engines'),
Key([], "t", lazy.spawn("dm-translate -r"), desc='Translate text')
])
]