Tablet improvements
- rnote for note taking - nautilus home module - improved on screen keyboard (added russian and improved english)
This commit is contained in:
parent
df3795f99b
commit
277951e25f
4 changed files with 46 additions and 6 deletions
|
|
@ -7,11 +7,15 @@
|
|||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
}:
|
||||
with lib.custom; let
|
||||
username = config.snowfallorg.user.name;
|
||||
home = config.snowfallorg.user.home.directory;
|
||||
in
|
||||
lib.mkIf osConfig.custom.windowManagers.niri.enable {
|
||||
custom = {
|
||||
programs.nautilus = enabled;
|
||||
};
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings.main.terminal = "kitty";
|
||||
|
|
@ -20,6 +24,8 @@ in
|
|||
enable = true;
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
playerctl
|
||||
papers
|
||||
nwg-drawer
|
||||
wlogout
|
||||
brightnessctl
|
||||
|
|
@ -136,6 +142,11 @@ in
|
|||
|
||||
"XF86MonBrightnessUp".action = sh "brightnessctl set 10%+";
|
||||
"XF86MonBrightnessDown".action = sh "brightnessctl set 10%-";
|
||||
|
||||
"XF86AudioNext".action = sh "playerctl next";
|
||||
"XF86AudioPause".action = sh "playerctl play-pause";
|
||||
"XF86AudioPlay".action = sh "playerctl play-pause";
|
||||
"XF86AudioPrev".action = sh "playerctl previous";
|
||||
#"Mod+Tab".action = focus-window-down-or-column-right;
|
||||
#"Mod+Shift+Tab".action = focus-window-up-or-column-left;
|
||||
"Mod+Tab".action = toggle-overview;
|
||||
|
|
@ -162,7 +173,7 @@ in
|
|||
hide-after-inactive-ms = 10000;
|
||||
};
|
||||
gestures.hot-corners.enable = true;
|
||||
prefer-no-csd = true;
|
||||
prefer-no-csd = !config.custom.hardware.tablet.enable;
|
||||
environment = {
|
||||
XDG_SESSION_TYPE = "wayland";
|
||||
__GL_GSYNC_ALLOWED = "1";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue