From 6bcbf0cbdcf5a65b13534cbb75a3295154a1aea4 Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Wed, 24 Nov 2021 21:05:33 +0300 Subject: [PATCH] Add some more keybinds --- profiles/bluetooth.nix | 17 ++++++++++++++- profiles/workspace/sway/default.nix | 34 +++++++++++++++++++---------- 2 files changed, 38 insertions(+), 13 deletions(-) diff --git a/profiles/bluetooth.nix b/profiles/bluetooth.nix index 4000340..b51556f 100644 --- a/profiles/bluetooth.nix +++ b/profiles/bluetooth.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: { +{ pkgs, lib, config, ... }: { hardware.bluetooth = { enable = true; package = pkgs.bluezFull; @@ -10,4 +10,19 @@ ]; persist.state.directories = [ "/var/lib/bluetooth" ]; + home-manager.users.balsoft = let headphones = "CC:98:8B:C0:FC:D2"; + in { + programs.zsh.shellAliases = { + "hpc" = "bluetoothctl connect ${headphones}"; + "hpd" = "bluetoothctl disconnect ${headphones}"; + }; + + wayland.windowManager.sway.config.keybindings = let + inherit (config.home-manager.users.balsoft.wayland.windowManager.sway.config) + modifier; + in { + "${modifier}+F2" = "exec bluetoothctl connect ${headphones}"; + "${modifier}+Shift+F2" = "exec bluetoothctl disconnect ${headphones}"; + }; + }; } diff --git a/profiles/workspace/sway/default.nix b/profiles/workspace/sway/default.nix index 281153f..d881c56 100755 --- a/profiles/workspace/sway/default.nix +++ b/profiles/workspace/sway/default.nix @@ -98,7 +98,8 @@ in { "swayidle -w before-sleep '${lock_fork}' lock '${lock_fork}' unlock 'pkill -9 swaylock'"; } { - command = "dbus-update-activation-environment --systemd WAYLAND_DISPLAY GDK_BACKEND"; + command = + "dbus-update-activation-environment --systemd WAYLAND_DISPLAY GDK_BACKEND"; } ]; @@ -147,12 +148,28 @@ in { "${modifier}+r" = "mode resize"; "${modifier}+Shift+f" = "floating toggle"; - "${modifier}+Escape" = "exec ${apps.monitor.cmd}"; + "${modifier}+Escape" = + ''exec ${apps.monitor.cmd}; [app_id="gnome-system-monitor"] focus''; + "${modifier}+F1" = '' + exec ${pkgs.pavucontrol}/bin/pavucontrol; [app_id="pavucontrol"] focus''; + "${modifier}+Shift+F1" = '' + exec ${ + pkgs.writeShellScript "helvum" + "GTK_THEME=adwaita:dark ${pkgs.helvum}/bin/helvum" + }; [app_id="org.freedesktop.ryuukyu.Helvum"] focus''; + "${modifier}+F3" = "exec ${pkgs.alsa-utils}/bin/amixer set Capture cap"; + "${modifier}+Shift+F3" = "exec ${pkgs.alsa-utils}/bin/amixer set Capture nocap"; + "${modifier}+F5" = "reload"; + "${modifier}+Shift+F5" = "exit"; + "${modifier}+F9" = "exec systemctl --user restart mako.service"; + "${modifier}+Shift+F9" = "exec systemctl --user stop mako.service"; + "${modifier}+F11" = "output * dpms off"; + "${modifier}+F12" = "output * dpms on"; + "${modifier}+End" = "exec ${lock}"; "${modifier}+j" = "exec ${pkgs.playerctl}/bin/playerctl previous"; "${modifier}+k" = "exec ${pkgs.playerctl}/bin/playerctl play-pause"; "${modifier}+l" = "exec ${pkgs.playerctl}/bin/playerctl next"; - "${modifier}+i" = "exec ${pkgs.pavucontrol}/bin/pavucontrol"; "${modifier}+Print" = script "screenshot" "${pkgs.grim}/bin/grim Pictures/$(date +'%Y-%m-%d+%H:%M:%S').png"; @@ -169,20 +186,13 @@ in { "${modifier}+x" = "focus output right"; "${modifier}+Shift+x" = "move workspace to output right"; - "${modifier}+F5" = "reload"; - "${modifier}+Shift+F5" = "exit"; "${modifier}+Shift+h" = "layout splith"; "${modifier}+Shift+v" = "layout splitv"; "${modifier}+h" = "split h"; "${modifier}+v" = "split v"; - "${modifier}+F1" = "move to scratchpad"; - "${modifier}+F2" = "scratchpad show"; - "${modifier}+F11" = "output * dpms off"; - "${modifier}+F12" = "output * dpms on"; - "${modifier}+End" = "exec ${lock}"; + "${modifier}+i" = "move to scratchpad"; + "${modifier}+Shift+i" = "scratchpad show"; "${modifier}+p" = "sticky toggle"; - "${modifier}+backslash" = - script "0x0" ''wl-paste | curl -F"file=@-" https://0x0.st | wl-copy''; "${modifier}+b" = "focus mode_toggle"; "${modifier}+Space" = script "lambda-launcher" "${pkgs.lambda-launcher}/bin/lambda-launcher";