Skip to content

Commit

Permalink
feat: open alacritty with super+return
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpita committed Sep 16, 2024
1 parent d41527a commit 8951af0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modules/home/gnome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,21 @@
"org/gnome/shell/extensions/caffeine" = {
show-indicator = true;
};

"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};

"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
];
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = {
name = "Open Alacritty";
binding = "<Super>Return";
command = "alacritty";
};
};
};
}

0 comments on commit 8951af0

Please sign in to comment.