worked on some shortcuts and keybindings

This commit is contained in:
Tomas Rivera
2026-03-05 10:44:13 +01:00
parent 9aa71c38f1
commit 5b0af20acb
5 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ environment.pathsToLink = [
"/share/applications" "/share/applications"
"/share/xdg-desktop-portal" "/share/xdg-desktop-portal"
]; ];
# removes uxterm
services.xserver.excludePackages = [ pkgs.xterm ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
+1
View File
@@ -148,6 +148,7 @@ home.sessionVariables = {
EDITOR = "neovim"; EDITOR = "neovim";
# Git update function # Git update function
# Prompts for commit message; defaults if empty # Prompts for commit message; defaults if empty
TERMINAL = "kitty";
}; };
+3 -1
View File
@@ -141,7 +141,7 @@ in
", F11, exec, hyprshot -m output" ", F11, exec, hyprshot -m output"
"$mod_SHIFT, S, exec, hyprshot -m region --clipboard only" "$mod_SHIFT, S, exec, hyprshot -m region --clipboard only"
# framework 16 rgb macropad # framework 16 rgb macropad
"$mod, P, exec, swaync-client -t" #"$mod, P, exec, swaync-client -t" # bugs the SUPER key.
"Ctrl+$mod, 3, exec, pavucontrol" "Ctrl+$mod, 3, exec, pavucontrol"
"Ctrl+$mod, 5, exec, gnome-characters" "Ctrl+$mod, 5, exec, gnome-characters"
"Ctrl+$mod, 6, exec, custom-killall" "Ctrl+$mod, 6, exec, custom-killall"
@@ -408,6 +408,8 @@ in
"float,class:^(io.missioncenter.MissionCenter)$" # MissionCenter-Gtk "float,class:^(io.missioncenter.MissionCenter)$" # MissionCenter-Gtk
"float,class:^(custom-librewolfprofiles)$" "float,class:^(custom-librewolfprofiles)$"
"size 400 175, class:^(custom-librewolfprofiles)$" "size 400 175, class:^(custom-librewolfprofiles)$"
"float,initialTitle:^(custom-pomodoro)$"
"size 600 600,initialTitle:^(custom-pomodoro)$"
# add a float for tomato when in kitty # add a float for tomato when in kitty
#"plugin:imgborders:noimgborders, tag:noborder" #"plugin:imgborders:noimgborders, tag:noborder"
]; ];
+1 -1
View File
@@ -24,7 +24,7 @@ custom-cat() {
l = "ls -CF"; l = "ls -CF";
ls = "ls -hA -s --color"; ls = "ls -hA -s --color";
cat = "custom-cat"; cat = "custom-cat";
pomodoro = "kitty -e 'tomato'"; pomodoro = "custom-tomato";
librewolf = "kitty --class \"custom-librewolfprofiles\" --name \"Select LibreWolf profile\" --hold custom-librewolfprofiles"; librewolf = "kitty --class \"custom-librewolfprofiles\" --name \"Select LibreWolf profile\" --hold custom-librewolfprofiles";
}; };
}; };
+1 -1
View File
@@ -9,6 +9,6 @@ writeShellApplication {
tomato-c tomato-c
]; ];
text = '' text = ''
kitty -e tomato kitty --name "custom-pomodoro" -e tomato
''; '';
} }