This commit is contained in:
Leon Kowarschick 2020-03-29 20:47:50 +02:00
parent 9ad1873273
commit 1bd8946324
4 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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.

View file

@ -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'