Keybind updates

This commit is contained in:
Henry Sipp
2025-06-28 14:16:50 -05:00
parent 6c4c666bb5
commit 410a4b8b70
2 changed files with 12 additions and 12 deletions
+10
View File
@@ -25,6 +25,16 @@ lib: {
type = lib.types.listOf lib.types.str; type = lib.types.listOf lib.types.str;
description = "A list of single keystroke key bindings to launch common apps."; description = "A list of single keystroke key bindings to launch common apps.";
default = [ default = [
"SUPER, A, exec, $webapp=https://chatgpt.com"
"SUPER SHIFT, A, exec, $webapp=https://grok.com"
"SUPER, C, exec, $webapp=https://app.hey.com/calendar/weeks/"
"SUPER, E, exec, $webapp=https://app.hey.com"
"SUPER, Y, exec, $webapp=https://youtube.com/"
"SUPER SHIFT, G, exec, $webapp=https://web.whatsapp.com/"
"SUPER, X, exec, $webapp=https://x.com/"
"SUPER SHIFT, X, exec, $webapp=https://x.com/compose/post"
"SUPER, return, exec, $terminal" "SUPER, return, exec, $terminal"
"SUPER, F, exec, $fileManager" "SUPER, F, exec, $fileManager"
"SUPER, B, exec, $browser" "SUPER, B, exec, $browser"
@@ -23,22 +23,12 @@
# Environment variables # Environment variables
env = [ env = [
"GDK_SCALE,2" # Change to 1 if on a 1x display "GDK_SCALE,2" # Change to 1 if on a 1x display
# TODO: Flake config
# Uncomment if running NVIDIA GPU: # Uncomment if running NVIDIA GPU:
# "NVD_BACKEND,direct" # "NVD_BACKEND,direct"
# "LIBVA_DRIVER_NAME,nvidia" # "LIBVA_DRIVER_NAME,nvidia"
# "__GLX_VENDOR_LIBRARY_NAME,nvidia" # "__GLX_VENDOR_LIBRARY_NAME,nvidia"
]; ];
# Extra bindings
bind = [
"SUPER, A, exec, $webapp=https://chatgpt.com"
"SUPER SHIFT, A, exec, $webapp=https://grok.com"
"SUPER, C, exec, $webapp=https://app.hey.com/calendar/weeks/"
"SUPER, E, exec, $webapp=https://app.hey.com"
"SUPER, Y, exec, $webapp=https://youtube.com/"
"SUPER SHIFT, G, exec, $webapp=https://web.whatsapp.com/"
"SUPER, X, exec, $webapp=https://x.com/"
"SUPER SHIFT, X, exec, $webapp=https://x.com/compose/post"
];
}; };
} }