File tree Expand file tree Collapse file tree 1 file changed +35
-2
lines changed Expand file tree Collapse file tree 1 file changed +35
-2
lines changed Original file line number Diff line number Diff line change 3
3
100% pure rust implementation that can automatically hide terminals or other applications managed by tdrop when they lose focus
4
4
5
5
## Installation
6
-
6
+ Cargo
7
7
``` zsh
8
8
cargo install autohide-tdrop
9
9
```
10
+ Or ArchLinux
11
+
12
+ ``` zsh
13
+ paru -S autohide-tdrop-git
14
+ ```
15
+
16
+ Or Nix
17
+
18
+ flake.nix
19
+ ``` flake.nix
20
+ {
21
+ inputs = {
22
+ autohide-tdrop = {
23
+ url = "github:I-Want-ToBelieve/autohide-tdrop";
24
+ inputs.nixpkgs.follows = "nixpkgs";
25
+ };
26
+ };
27
+ }
28
+ ```
29
+
30
+ home.nix
31
+ ``` nix
32
+ {
33
+ inputs,
34
+ pkgs,
35
+ ...
36
+ }: {
37
+ home.packages = with inputs;
38
+ [
39
+ autohide-tdrop.packages.${pkgs.system}.default
40
+ ];
41
+ }
42
+ ```
10
43
11
44
## Usage
12
45
@@ -17,7 +50,7 @@ ctrl + t
17
50
tdrop -n tdrop_kitty --post-create-hook " autohide-tdrop &" -ma -h 60% -w 70% -x 15% -y 0 kitty --class=tdrop_kitty
18
51
```
19
52
20
- ### wayland
53
+ ### wayland
21
54
~ /.config/swhkd/swhkdrc
22
55
``` zsh
23
56
ctrl + t
You can’t perform that action at this time.
0 commit comments