This commit is contained in:
Dan Ponte 2023-01-15 11:35:06 -05:00
parent 9321188947
commit 4e152b3b77
3 changed files with 24 additions and 0 deletions

View File

@ -5,5 +5,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
lto = true
[dependencies.i3ipc] [dependencies.i3ipc]
version = "0.10.1" version = "0.10.1"

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
all: release
release:
cargo build --release
clean:
cargo clean

13
README.md Normal file
View File

@ -0,0 +1,13 @@
`swarp-rs` swaps the first two i3 output workspaces. This is the Rust version.
# Building
Type `make`
# Using
Bind like
```
bindsym $mod+Shift+s exec --no-startup-id swarp-rs
```