1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

fusuma: fix settings example (#3067)

This commit is contained in:
Julio Borja Barra 2022-07-07 08:55:01 +02:00 committed by GitHub
parent ef990143b6
commit 12cfcc1b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,21 +73,17 @@ in {
type = yamlFormat.type;
example = literalExpression ''
{
enable = true;
extraPackages = with pkgs;[ xdotool ];
config = {
threshold = {
swipe = 0.1;
};
interval = {
swipe = 0.7;
};
swipe = {
"3" = {
left = {
# GNOME: Switch to left workspace
command = "xdotool key ctrl+alt+Right";
};
threshold = {
swipe = 0.1;
};
interval = {
swipe = 0.7;
};
swipe = {
"3" = {
left = {
# GNOME: Switch to left workspace
command = "xdotool key ctrl+alt+Right";
};
};
};