summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2021-06-10 19:36:20 +0400
committerAndrew <saintruler@gmail.com>2021-06-10 19:36:20 +0400
commit4dc14d0117962e48d239da5f3fa86bd1b5ad4127 (patch)
treedd34df9a05562567c7945171805cb31280c12a9e
parent3fe571af76bef57861103e3da5df8c913ad13c33 (diff)
Changed WM to xmonad
-rw-r--r--.config/xmonad/xmonad.hs3
-rwxr-xr-x.xinitrc2
-rw-r--r--.xprofile2
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
diff --git a/.xinitrc b/.xinitrc
index 9509671..cc07d5e 100755
--- a/.xinitrc
+++ b/.xinitrc
@@ -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
diff --git a/.xprofile b/.xprofile
index 1075387..715f244 100644
--- a/.xprofile
+++ b/.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"