Minor edits.

This commit is contained in:
Derek Taylor
2025-04-28 20:33:24 -05:00
parent f208326a03
commit 8d559f0129
6 changed files with 204 additions and 115 deletions

View File

@@ -242,7 +242,8 @@ keys = [
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([], "m", lazy.spawn("dm-music -r"), desc='Toggle music mpc/mpd'),
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("rofi-pass"), desc='Password menu'),

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
COLORSCHEME=doom-one
COLORSCHEME=tomorrow-night
### AUTOSTART PROGRAMS ###

View File

@@ -173,7 +173,8 @@ keys = [
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')
Key([], "t", lazy.spawn("dm-translate -r"), desc='Translate text'),
Key([], "u", lazy.spawn("dm-music -r"), desc='Toggle music mpc/mpd')
])
]