diff --git a/.gitignore b/.gitignore index 012630c..9c9b69b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,7 @@ hyprkeys # VScode settings .vscode/ +# nix artifacts +result/ +result + diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 8267bbb..357c49b 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -7,7 +7,6 @@ builds: - CGO_ENABLED=0 goos: - linux - - windows - darwin ldflags: - -s -w @@ -22,9 +21,6 @@ archives: {{- else if eq .Arch "386" }}i386 {{- else }}{{ .Arch }}{{ end }} {{- if .Arm }}v{{ .Arm }}{{ end }} - format_overrides: - - goos: windows - format: zip rlcp: true checksum: name_template: "checksums.txt" diff --git a/Makefile b/Makefile index 4027d6b..f828040 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ pkgname := hyprkeys -version := v1.0.2 +version := v1.0.3 build: ${pkgname} diff --git a/TODO.md b/TODO.md index 74264ce..91dfe88 100644 --- a/TODO.md +++ b/TODO.md @@ -14,7 +14,7 @@ - [ ] Sort output by dispatcher - [x] Account for multiple arguments being passed at once - [ ] Somehow account for keybinds can be set dynamically? (I don't know how to do this) - - [ ] Add instructions for a pipe to `hyprkeys` to get the keybinds from + - [ ] Add instructions for a pipe to `hyprkeys` to get the keybinds from (user must put binds into a pipe file like xob or wob) - [ ] Convert i3/sway keybinds to Hyprland keybinds with `--convert` - [ ] Possibly more wayland compositors, sway is enough for now. - [x] Get more than just keybinds, try and get all config options seperated by section diff --git a/default.nix b/default.nix index 3a1a982..93a58cb 100644 --- a/default.nix +++ b/default.nix @@ -7,7 +7,7 @@ }: buildGoModule rec { pname = "Hyprkeys"; - version = "1.0.2"; + version = "1.0.3"; src = nix-filter.lib { root = ./.; exclude =