Adding lolcate and associated pieces for it
This commit is contained in:
parent
ae72f8222c
commit
ac56e431b6
14 changed files with 105 additions and 10 deletions
|
@ -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"})
|
||||
|
|
|
@ -57,6 +57,20 @@
|
|||
:placement (+ awful.placement.no_offscreen awful.placement.centered)
|
||||
}
|
||||
}
|
||||
;; Org-Agenda
|
||||
{
|
||||
:rule_any {
|
||||
:name [
|
||||
"*Org Agenda(a)*"
|
||||
]
|
||||
}
|
||||
:properties {
|
||||
:floating true
|
||||
:raise true
|
||||
:screen 1
|
||||
:placement (+ awful.placement.no_offscreen awful.placement.centered)
|
||||
}
|
||||
}
|
||||
;; Pulsemixer center and smaller
|
||||
{
|
||||
:rule_any {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue