Ready
This commit is contained in:
parent
9321188947
commit
4e152b3b77
3 changed files with 24 additions and 0 deletions
|
@ -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
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
all: release
|
||||||
|
|
||||||
|
release:
|
||||||
|
cargo build --release
|
||||||
|
|
||||||
|
clean:
|
||||||
|
cargo clean
|
13
README.md
Normal file
13
README.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in a new issue