diff --git a/files/.config/qutebrowser/config.py b/files/.config/qutebrowser/config.py index 2e68807..4add77b 100644 --- a/files/.config/qutebrowser/config.py +++ b/files/.config/qutebrowser/config.py @@ -18,7 +18,7 @@ config.bind("", "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 diff --git a/files/.xmonad/lib/Config.hs b/files/.xmonad/lib/Config.hs index e7d00ff..80aba0f 100644 --- a/files/.xmonad/lib/Config.hs +++ b/files/.xmonad/lib/Config.hs @@ -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 diff --git a/files/.xmonad/xmonad-x86_64-linux b/files/.xmonad/xmonad-x86_64-linux index 14fea17..c22a7ea 100755 Binary files a/files/.xmonad/xmonad-x86_64-linux and b/files/.xmonad/xmonad-x86_64-linux differ diff --git a/files/scripts/showMappings.sh b/files/scripts/showMappings.sh index a0ea04c..22730b1 100755 --- a/files/scripts/showMappings.sh +++ b/files/scripts/showMappings.sh @@ -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'