Adding lolcate and associated pieces for it

This commit is contained in:
Chris Cochrun 2021-04-12 20:12:55 -05:00
parent ae72f8222c
commit ac56e431b6
14 changed files with 105 additions and 10 deletions

View file

@ -22,7 +22,7 @@
(local keybindings
{
:globalkeys (gears.table.join
(awful.key [ modkey ] "s" hotkeys_popup.show_help
(awful.key [ modkey shift ] "s" hotkeys_popup.show_help
{ :description "show help" :group "awesome"})
(awful.key [ modkey ] "Left" awful.tag.viewprev
{:description "view previous" :group "tag"})
@ -130,6 +130,9 @@
{:description "launch dired in new emacs frame" :group "apps" })
(awful.key [ modkey ] "x" (fn [] (awful.spawn "org-capture"))
{:description "launch scratchpad in new emacs frame" :group "apps" })
(awful.key [ modkey ] "v" (fn [] (awful.spawn "emacsclient -c -e '(org-agenda-list)' '(delete-other-windows)'"
{:name "*Org Agenda(a)*"}))
{:description "launch org-agenda in new emacs frame" :group "apps" })
(awful.key [ modkey alt ] "m" (fn [] (awful.spawn "emacsclient -c -e '(org-roam-capture)'"))
{:description "launch org-roam-capture in new emacs frame" :group "apps" })
(awful.key [ modkey shift ] "x" (fn [] (awful.spawn "emacsclient -c -e '(doom/switch-to-scratch-buffer)'"))
@ -145,7 +148,7 @@
(awful.key [ modkey shift ] "w" (fn [] (awful.spawn "libreoffice --writer"))
{:description "Open Writer" :group "apps" })
(awful.key [modkey] "b" (fn [] (awful.spawn "qutebrowser"))
{:description "launch qutebrowser" :group "apps"})
{:description "launch browser" :group "apps"})
;; rofi
(awful.key [] "Menu" (fn [] (awful.spawn "/home/chris/.dotfiles/rofi/launchers-git/launcher.sh"))
{:description "launch rofi" :group "launcher"})
@ -157,6 +160,8 @@
{:description "search youtube" :group "launcher"})
(awful.key [modkey] "q" (fn [] (awful.spawn "dmqute"))
{:description "search internet through qutebrowser" :group "launcher"})
(awful.key [ modkey ] "s" (fn [] (awful.spawn "filesearch"))
{:description "search for files" :group "launcher" })
;; audio
(awful.key [modkey] "a" (fn [] (awful.spawn "alacritty --class pulsemixer -e pulsemixer"))
{:description "launch pulsemixer" :group "audio"})