remove pins and change some keybinds

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-04-11 12:22:53 +02:00
parent 36ad6aeb57
commit 5f0d3bff5f
2 changed files with 9 additions and 28 deletions
+9 -4
View File
@@ -31,7 +31,6 @@
settings = import ./settings.nix;
bookmarks = import ./bookmarks.nix;
search = import ./search.nix {inherit pkgs;};
pins = import ./pins.nix;
spaces = import ./spaces.nix;
keyboardShortcuts = [
# Remaps
@@ -47,8 +46,11 @@
}
{
id = "viewBookmarksToolbarKb";
key = "s";
modifiers.accel = true;
key = "b";
modifiers = {
accel = true;
shift = true;
};
}
{
id = "key_findAgain";
@@ -172,7 +174,10 @@
}
{
id = "viewBookmarksSidebarKb";
disabled = true;
key = "b";
modifiers = {
accel = true;
};
}
{
id = "key_toggleMute";
-24
View File
@@ -1,24 +0,0 @@
let
spaces = import ./spaces.nix;
in {
"Mail" = {
id = "13a5d638-53f3-4abb-8498-ec6b4af74d4c";
url = "https://mail.proton.me";
workspace = spaces.Home.id;
position = 1000;
};
"Drive" = {
id = "271e6164-eb2e-4e9e-a0ad-634d6f442b40";
url = "https://drive.proton.me";
workspace = spaces.Home.id;
position = 2000;
};
"Github" = {
id = "cb41190e-d410-4da6-801c-4785c5d5993f";
url = "https://github.com";
workspace = spaces.Home.id;
position = 3000;
};
}