### Hyprland keybind example Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Example configuration to bind Hexecute to SUPER + SPACE in Hyprland. ```ini bind = SUPER, SPACE, exec, hexecute ``` -------------------------------- ### Install Hexecute to your profile (Nix) Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md This command installs Hexecute to the user's Nix profile. ```bash nix profile install github:ThatOtherAndrew/Hexecute ``` -------------------------------- ### Sway keybind example Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Example configuration to bind Hexecute to $mod + space in Sway. ```ini bindsym $mod+space exec hexecute ``` -------------------------------- ### Build Hexecute from source with Go Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Commands to build Hexecute from source using Go, assuming Go and Wayland/X11 libraries are installed. ```bash mkdir -p bin go build -o bin ./... ./bin/hexecute ``` -------------------------------- ### Try Hexecute without installing (Nix) Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md This command allows Nix users to try Hexecute without a formal installation. ```bash nix run github:ThatOtherAndrew/Hexecute ``` -------------------------------- ### Learn a gesture with Hexecute Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Command to start the gesture learning process for a given command. ```bash hexecute --learn [command] ``` -------------------------------- ### Build Hexecute from source with Nix Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Command to build Hexecute from source using Nix. ```bash nix build ``` -------------------------------- ### List configured gestures Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Command to view all configured gestures in Hexecute. ```bash hexecute --list ``` -------------------------------- ### Rename and make executable downloaded binary Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Instructions for renaming the downloaded Hexecute binary and making it executable. ```bash mv hexecute-1.2.3-blah hexecute chmod +x hexecute ``` -------------------------------- ### Add Hexecute to NixOS configuration (configuration.nix) Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md This snippet shows how to include Hexecute in the system packages for NixOS. ```nix { environment.systemPackages = with pkgs; [ inputs.hexecute.packages.${pkgs.system}.default ]; } ``` -------------------------------- ### Clone Hexecute repository Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Command to clone the Hexecute source code repository. ```bash git clone https://github.com/ThatOtherAndrew/Hexecute cd Hexecute ``` -------------------------------- ### Add Hexecute to NixOS configuration (flake.nix) Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md This snippet shows how to add Hexecute as an input in a NixOS flake.nix file. ```nix { inputs.hexecute.url = "github:ThatOtherAndrew/Hexecute"; } ``` -------------------------------- ### Remove a gesture Source: https://github.com/thatotherandrew/hexecute/blob/main/README.md Command to remove a previously assigned gesture. ```bash hexecute --remove [gesture] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.