diff --git a/roles/nvim/files/init_pc.lua b/roles/nvim/files/init_pc.lua index 453bf81..2f23d73 100644 --- a/roles/nvim/files/init_pc.lua +++ b/roles/nvim/files/init_pc.lua @@ -69,7 +69,7 @@ opt.completeopt = 'menuone,noinsert,noselect' map('n', 'w', 'w', { noremap = true }) map('n', 'q', 'wq', { noremap = true }) map('n', 'Q', 'wqa', { noremap = true }) -map('n', '', 'let @/ = ""', { noremap = true }) +map('n', '/', 'let @/ = ""', { noremap = true }) -- fix interpreting C-I as Tab map('n', '', '', { noremap = true }) diff --git a/roles/xmonad/files/xmonad_t460p.hs b/roles/xmonad/files/xmonad_t460p.hs index 8f3e603..31df694 100644 --- a/roles/xmonad/files/xmonad_t460p.hs +++ b/roles/xmonad/files/xmonad_t460p.hs @@ -242,7 +242,7 @@ q *!? x = fmap (=~ x) q myManageHook = composeAll . concat $ [ [ resource =? "desktop_window" --> doIgnore ] , [ resource =? "kdesktop" --> doIgnore ] - , [ ( className =? "LibreWolf" <&&> role =? "Organizer" ) --> doFloat ] + , [ ( className =? "Firefox" <&&> role =? "Organizer" ) --> doFloat ] -- float specific classes , [ className =? c --> doFloat | c <- myFloatingClasses ] @@ -289,6 +289,7 @@ myStartupHook = do spawnOnce "safeeyes -e" spawnOnce "/usr/bin/dunst" spawnOnce "feh --bg-fill ~/bg.jpg ~/bg.jpg" + spawnOnce "batsignal -b" -- Main main = do diff --git a/roles/xmonad/files/zathurarc b/roles/xmonad/files/zathurarc index 475cc96..fa1776d 100644 --- a/roles/xmonad/files/zathurarc +++ b/roles/xmonad/files/zathurarc @@ -9,9 +9,9 @@ map J zoom out map p print map c recolor -set highlight-color "#8faf9f" +set highlight-color "rgba(143, 175, 159, 0.5)" set highlight-fg "#000d18" -set highlight-active-color "#8faf9f" +set highlight-active-color "rgba(143, 175, 159, 0.5)" set default-bg "#3f3f3f" set default-fg "#dcdccc"