Lot's of awesome changes and some added scripts
This commit is contained in:
parent
ed91c15381
commit
d36ce8b8b9
23 changed files with 303 additions and 374 deletions
23
awesome/globalkeys.fnl
Normal file
23
awesome/globalkeys.fnl
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
(local awful (require "awful"))
|
||||
(local gears (require "gears"))
|
||||
(local beautiful (require "beautiful"))
|
||||
(local hotkeys_popup (require "awful.hotkeys_popup"))
|
||||
|
||||
(var mod "Mod4")
|
||||
(var shift "Shift")
|
||||
(var ctrl "Control")
|
||||
(var alt "Mod1'")
|
||||
|
||||
(global globalkeys (gears.table.join
|
||||
(awful.key [mod alt] "m" (awful.spawn "mpv --player-operation-mode=pseudo-gui")
|
||||
{ :description "launch mpv" :group "apps" })
|
||||
(awful.key [mod] "s" hotkeys_popup.show_help
|
||||
{ :description "show help" :group "awesome" })))
|
||||
|
||||
globalkeys
|
||||
|
||||
|
||||
|
||||
;; -- mpv
|
||||
;; awful.key({ modkey, altkey }, "m", function () awful.spawn("mpv --player-operation-mode=pseudo-gui") end,
|
||||
;; {description = "open mpv", group = "apps"}),
|
||||
Loading…
Add table
Add a link
Reference in a new issue