screen
This commit is contained in:
parent
ad2e414276
commit
84510b3807
|
@ -6,6 +6,7 @@
|
||||||
./theme
|
./theme
|
||||||
./clip
|
./clip
|
||||||
./gnome
|
./gnome
|
||||||
|
./screen
|
||||||
./misc
|
./misc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,12 +74,12 @@
|
||||||
"$mod, A, exec, rofi -show drun"
|
"$mod, A, exec, rofi -show drun"
|
||||||
"$mod, F, exec, freetube"
|
"$mod, F, exec, freetube"
|
||||||
"$mod, C, exec, hyprpicker -a"
|
"$mod, C, exec, hyprpicker -a"
|
||||||
"$mod+Shift, W, exec, sh $sciPath/vm.sh"
|
|
||||||
"$mod+Shift, Z, exec, grim - | swappy -f -"
|
"$mod+Shift, Z, exec, grim - | swappy -f -"
|
||||||
"$mod, Z, exec, sh $sciPath/screen.sh"
|
"$mod, Z, exec, sh $sciPath/screen.sh"
|
||||||
"$mod, V, exec, cliphist list | rofi show -dmenu | cliphist decode | wl-copy"
|
"$mod, V, exec, cliphist list | rofi show -dmenu | cliphist decode | wl-copy"
|
||||||
"$mod, O, exec, sh $sciPath/mpv.sh"
|
"$mod, O, exec, sh $sciPath/mpv.sh"
|
||||||
"$mod+Shift, TAB,hyprexpo:expo, toggleoverview"
|
"$mod+Shift, TAB,hyprexpo:expo, toggleoverview"
|
||||||
|
"$mod, B, exec, rofimoji"
|
||||||
# controls
|
# controls
|
||||||
"$mod, Q, killactive"
|
"$mod, Q, killactive"
|
||||||
"$mod, W, togglefloating"
|
"$mod, W, togglefloating"
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home-manager.users.joy = {
|
home-manager.users.joy = {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
pwvucontrol
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
hyprpicker
|
hyprpicker
|
||||||
swappy
|
|
||||||
playerctl
|
playerctl
|
||||||
|
rofimoji
|
||||||
|
pwvucontrol
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
14
modules/wm/screen/default.nix
Normal file
14
modules/wm/screen/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home-manager.users.joy = {
|
||||||
|
home.file.".config/swappy/config".text = ''
|
||||||
|
[Default]
|
||||||
|
save_dir=$HOME/media/pic/screen
|
||||||
|
'';
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
swappy
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue