mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
asdf
This commit is contained in:
parent
9ad1873273
commit
1bd8946324
4 changed files with 3 additions and 2 deletions
|
@ -18,7 +18,7 @@ config.bind("<Ctrl-L>", "set-cmd-text -s :open")
|
|||
config.bind(",y", "hint links spawn mpv {hint-url}")
|
||||
config.bind(",Y", "spawn mpv {url}")
|
||||
|
||||
c.tabs.show = "always"
|
||||
c.tabs.show = "multiple"
|
||||
c.tabs.show_switching_delay = 1000
|
||||
|
||||
c.statusbar.hide = False
|
||||
|
|
|
@ -247,6 +247,7 @@ myKeys = [ ("M-C-k", sendMessage MirrorExpand >> sendMessage ShrinkSlave )
|
|||
specialCommands :: [(String, X ())]
|
||||
specialCommands =
|
||||
[ ("screenshot", spawn $ scriptFile "screenshot.sh")
|
||||
, ("toggleOptimal", sendMessage ToggleGaps >> toggleWindowSpacingEnabled)
|
||||
, ("toggleSpacing", toggleWindowSpacingEnabled)
|
||||
, ("toggleGaps", sendMessage ToggleGaps)
|
||||
, ("Copy to all workspaces", windows copyToAll) -- windows: Modify the current window list with a pure function, and refresh
|
||||
|
|
Binary file not shown.
|
@ -1,2 +1,2 @@
|
|||
#!/bin/dash
|
||||
cat ~/.xmonad/lib/Config.hs | awk '/myKeys = \[/,/\] \+\+ concat .*/' | sed 's/myKeys = \[//g' | sed 's/\].*concat.*//g' | sed 's/^\s*,\? //g' | sed 's/^(\|)//g'
|
||||
cat ~/.xmonad/lib/Config.hs | awk '/myKeys = \[/,/\] \+\+ generatedMappings.*/' | sed 's/myKeys = \[//g' | sed 's/\].*generatedMappings.*//g' | sed 's/^\s*,\? //g' | sed 's/^(\|)//g'
|
||||
|
|
Loading…
Reference in a new issue