diff --git a/hosts/fw/config/dwm/config.def.h b/hosts/fw/config/dwm/config.def.h index fab3075..9705aa0 100644 --- a/hosts/fw/config/dwm/config.def.h +++ b/hosts/fw/config/dwm/config.def.h @@ -46,7 +46,7 @@ static const Layout layouts[] = { }; /* key definitions */ -#define MODKEY Mod1Mask +#define MODKEY Mod4Mask #define TAGKEYS(KEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ @@ -64,7 +64,7 @@ static const char *termcmd[] = { "alacritty", NULL }; static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_p, spawn, {.v = dmenucmd } }, - { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, + { MODKEY, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, @@ -72,7 +72,7 @@ static const Key keys[] = { { MODKEY, XK_d, incnmaster, {.i = -1 } }, { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, - { MODKEY, XK_Return, zoom, {0} }, + { MODKEY|ShiftMask, XK_Return, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, { MODKEY|ShiftMask, XK_c, killclient, {0} }, { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, diff --git a/hosts/fw/configuration.nix b/hosts/fw/configuration.nix index 9e9b930..12b8f2d 100644 --- a/hosts/fw/configuration.nix +++ b/hosts/fw/configuration.nix @@ -15,6 +15,11 @@ ./hardware-configuration.nix ]; + hardware.bluetooth = { + enable = true; + powerOnBoot = false; + }; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -118,6 +123,7 @@ alacritty keepassxc nextcloud-client + dmenu ]; # Some programs need SUID wrappers, can be configured further or are