feat: more nvim tweaks ig
This commit is contained in:
parent
92caa088aa
commit
936a9cfea0
8 changed files with 32 additions and 13 deletions
modules/applications/xmonad
|
@ -14,6 +14,7 @@ import XMonad.Layout.Spacing
|
|||
import XMonad.Layout.ThreeColumns
|
||||
import XMonad.Operations
|
||||
import XMonad.Util.EZConfig
|
||||
import XMonad.Layout.NoBorders
|
||||
|
||||
kdeOn :: Bool
|
||||
kdeOn = False
|
||||
|
@ -31,7 +32,8 @@ main =
|
|||
manageHook = manageDocks <+> myManagerHook <+> manageHook kdeConfig,
|
||||
handleEventHook = handleEventHook kdeConfig <+> fullscreenEventHook,
|
||||
terminal = myTerminal,
|
||||
workspaces = myWorkspaces
|
||||
workspaces = myWorkspaces,
|
||||
borderWidth = 0
|
||||
}
|
||||
`additionalKeysP` keymap
|
||||
where
|
||||
|
|
|
@ -12,6 +12,18 @@
|
|||
# home.file.".config/plasma-workspace/env/set_window_manager.sh".text =
|
||||
# "export KDEWM=/home/adrielus/.nix-profile/bin/xmonad";
|
||||
|
||||
services.picom = { enable = true; };
|
||||
services.picom = {
|
||||
enable = true;
|
||||
blur = true;
|
||||
shadow = true;
|
||||
extraOptions = ''
|
||||
blur:
|
||||
{
|
||||
method = "gaussian";
|
||||
size = 10;
|
||||
deviation = 5.0;
|
||||
};
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue