attempted to add a keybind to toggle touchpad
somehow i cant get the script to run when i use the touchpad, but hey, its in the repo now and the licence has been updated so i can get around to it later also i removed the default fish greeting it was annoying me
This commit is contained in:
parent
98ea496a19
commit
772518df4f
6 changed files with 116 additions and 2 deletions
|
@ -14,6 +14,7 @@
|
|||
nixos-switch = "sudo nixos-rebuild switch --flake ~/nixconf &| nom";
|
||||
home-switch = "home-manager switch --flake ~/nixconf &| nom";
|
||||
server-switch = "nixos-rebuild switch --flake ~/nixconf#biggerpi --target-host blue@biggerpi --use-remote-sudo &| nom";
|
||||
home-manager-news = "home-manager news --flake ~/nixconf";
|
||||
};
|
||||
shellInit = "
|
||||
set --global theme_virtual_env_prompt_enabled no
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
EDITOR = "nvim";
|
||||
NIXOS_OZONE_WL = 1;
|
||||
LD_LIBRARY_PATH = "${pkgs.libGL}/lib:${pkgs.gtk3}/lib:${pkgs.glib.out}/lib:${pkgs.xorg.libXtst}/lib";
|
||||
scripts = "/home/blue/nixconf/scripts";
|
||||
};
|
||||
|
||||
xdg.mimeApps = {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
systemd.variables = [ "--all" ];
|
||||
settings = {
|
||||
misc = {
|
||||
enable_anr_dialog = false;
|
||||
enable_anr_dialog = false; # disable application not repsonding dialog as it tends to just get in the way when trying to fix the unresponsive application
|
||||
};
|
||||
# Monitor config for home desk layout
|
||||
monitor = [
|
||||
|
@ -30,7 +30,7 @@
|
|||
follow_mouse = 1;
|
||||
mouse_refocus = false;
|
||||
touchpad = {
|
||||
disable_while_typing = false;
|
||||
disable_while_typing = true;
|
||||
};
|
||||
};
|
||||
gestures = {
|
||||
|
@ -67,6 +67,9 @@
|
|||
"$mod, D, exec, vesktop"
|
||||
"$mod, space, exec, bash -c 'wofi --show drun, run'"
|
||||
|
||||
# Keybind for toggling touchpad
|
||||
"$mod, j, exec, sh $scripts/hyprland/touchpad_toggle.sh"
|
||||
|
||||
# Screenshot tool
|
||||
", Print, exec, hyprshot -m region"
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
davinci-resolve # video editor
|
||||
libreoffice # office suite
|
||||
zoom-us # proprietary meeting app
|
||||
libnotify # notification server useful in scripting
|
||||
|
||||
# Audio Plugins
|
||||
calf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue