added browser keybindings
This commit is contained in:
parent
1d3298b39b
commit
5e7f4d1c38
@ -88,6 +88,9 @@ myTerminal = "alacritty"
|
|||||||
myFileManager :: String
|
myFileManager :: String
|
||||||
myFileManager = "thunar"
|
myFileManager = "thunar"
|
||||||
|
|
||||||
|
myBrowser :: String
|
||||||
|
myBrowser = "firefox"
|
||||||
|
|
||||||
-- The font to be used
|
-- The font to be used
|
||||||
myFont :: String
|
myFont :: String
|
||||||
myFont = "xft:Fira Code:antialias=true:hinting=true"
|
myFont = "xft:Fira Code:antialias=true:hinting=true"
|
||||||
@ -179,7 +182,7 @@ myEZKeys =
|
|||||||
, ("M-y", withFocused $ windows . W.sink) -- push floating window back into tiling
|
, ("M-y", withFocused $ windows . W.sink) -- push floating window back into tiling
|
||||||
, ("M-w", sendMessage (IncMasterN 1)) -- increment windows in master
|
, ("M-w", sendMessage (IncMasterN 1)) -- increment windows in master
|
||||||
, ("M-v", sendMessage (IncMasterN (-1))) -- decrement windows in master
|
, ("M-v", sendMessage (IncMasterN (-1))) -- decrement windows in master
|
||||||
, ("M-b", sendMessage ToggleStruts) -- toggle bar
|
, ("M-<F11>", sendMessage ToggleStruts) -- toggle bar
|
||||||
|
|
||||||
--NOTE my custom keybind/script combinations
|
--NOTE my custom keybind/script combinations
|
||||||
--NOTE system controls
|
--NOTE system controls
|
||||||
@ -191,9 +194,12 @@ myEZKeys =
|
|||||||
, ("M-S-x", spawn "$HOME/.local/bin/bw-unlock") -- unlock bitwarden cli
|
, ("M-S-x", spawn "$HOME/.local/bin/bw-unlock") -- unlock bitwarden cli
|
||||||
, ("M-x", spawn "$HOME/.local/bin/passwords") -- get password from bw cli
|
, ("M-x", spawn "$HOME/.local/bin/passwords") -- get password from bw cli
|
||||||
|
|
||||||
--NOTE demenu search
|
--NOTE demenu search and browser
|
||||||
, ("M-s s", spawn "/usr/local/bin/dmenusearch") -- launch searcher (dmenu and surf)
|
, ("M-s s", spawn "/usr/local/bin/dmenusearch") -- launch searcher (dmenu and surf)
|
||||||
, ("M-s d", spawn "/usr/local/bin/dmenusearch duckduckgo") -- launch searcher, default to duckduckgo
|
, ("M-s d", spawn "/usr/local/bin/dmenusearch duckduckgo") -- launch searcher, default to duckduckgo
|
||||||
|
, ("M-b b", spawn myBrowser) -- launch my browser
|
||||||
|
, ("M-b f", spawn "firefox") -- launch firefox
|
||||||
|
, ("M-b s", spawn "surf") -- launch surf
|
||||||
|
|
||||||
--NOTE drive mounting
|
--NOTE drive mounting
|
||||||
, ("M-d m", spawn "/usr/local/bin/dmenumount") -- launch mounter
|
, ("M-d m", spawn "/usr/local/bin/dmenumount") -- launch mounter
|
||||||
@ -383,6 +389,7 @@ myStartupHook = do
|
|||||||
-- Startup apps (tray) and settings
|
-- Startup apps (tray) and settings
|
||||||
spawnOnce "powerkit"
|
spawnOnce "powerkit"
|
||||||
spawnOnce "volctl &"
|
spawnOnce "volctl &"
|
||||||
|
spawnOnce "lxsession &"
|
||||||
spawnOnce "nm-applet &"
|
spawnOnce "nm-applet &"
|
||||||
spawnOnce "blueman-applet &"
|
spawnOnce "blueman-applet &"
|
||||||
spawnOnce "/usr/lib/kdeconnectd &"
|
spawnOnce "/usr/lib/kdeconnectd &"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user