diff options
| author | Andrew <saintruler@gmail.com> | 2021-06-10 19:36:20 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-06-10 19:36:20 +0400 |
| commit | 4dc14d0117962e48d239da5f3fa86bd1b5ad4127 (patch) | |
| tree | dd34df9a05562567c7945171805cb31280c12a9e | |
| parent | 3fe571af76bef57861103e3da5df8c913ad13c33 (diff) | |
Changed WM to xmonad
| -rw-r--r-- | .config/xmonad/xmonad.hs | 3 | ||||
| -rwxr-xr-x | .xinitrc | 2 | ||||
| -rw-r--r-- | .xprofile | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/.config/xmonad/xmonad.hs b/.config/xmonad/xmonad.hs index 45d6944..3001229 100644 --- a/.config/xmonad/xmonad.hs +++ b/.config/xmonad/xmonad.hs @@ -157,7 +157,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ -- Custom applications bindings [ ((modm, xK_w), spawn "$BROWSER") - , ((modm, xK_b), spawn "nemo") + , ((modm, xK_b), spawn "pcmanfm") , ((modm, xK_Tab), spawn "$TERMINAL -e htop") , ((modm .|. shiftMask, xK_b), spawn "bluecontrol") , ((modm .|. shiftMask, xK_t), spawn "$TERMINAL -e tremc") @@ -262,6 +262,7 @@ myLayout = spacing 10 $ tiled ||| Mirror tiled ||| Full -- myManageHook = composeAll [ className =? "Nemo" --> doFloat + , className =? "Pcmanfm" --> doFloat , className =? "MPlayer" --> doFloat , className =? "Gimp" --> doFloat , resource =? "desktop_window" --> doIgnore @@ -4,7 +4,7 @@ # Otherwise, display manager should set up this variable and # source the xprofile. -export DESKTOP_SESSION="bspwm" +export DESKTOP_SESSION="xmonad" [ -f /etc/xprofile ] && . /etc/xprofile [ -f ~/.xprofile ] && . ~/.xprofile @@ -35,5 +35,5 @@ fi fi -export TERMINAL="tabbed -c -r 2 alacritty --embed ''" +export TERMINAL="tabbed -c -r 2 st -w ''" export BROWSER="firefox" |