Thunar module

This commit is contained in:
Filippo Berto 2022-06-01 11:23:20 +02:00
parent 38e4291b95
commit 2916aaa29b
4 changed files with 12 additions and 7 deletions

View file

@ -1,10 +1,10 @@
{ config, pkgs, lib, ... }:
{
imports = [ ./thunar.nix ];
home.packages = with pkgs; [
kitty
lockscreen
pamixer
(xfce.thunar)
playerctl
terminator
update-background
@ -21,6 +21,7 @@
keybindings = {
"super + b" = "update-background";
"super + alt + {h,j,k,l}" = "bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}";
"super + alt + p" = "autorandr -c";
"super + alt + {q,r}" = "bspc {quit,wm -r}";
"super + alt + shift + {h,j,k,l}" = "bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}";
"super + alt + m" = "lockscreen";

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs.xfce; [
thunar
tumbler
xfconf
];
}