Merge pull request #10 from BarbUk/archlinux_package

archlinux package

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-02-05 23:35:27 +0100
Committer GitHub <noreply@github.com> 2026-02-05 23:35:27 +0100
Commit 9797f482d5e18f89786c3d66bfda25baaab65993 (patch)
-rw-r--r-- README.md 21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
...
35
  
35
  
36
## Installation
36
## Installation
37
  
37
  
  
38
### From source
  
39
  
38
```bash
40
```bash
39
git clone https://github.com/mitjafelicijan/xdgctl.git
41
git clone https://github.com/mitjafelicijan/xdgctl.git
40
cd xdgctl
42
cd xdgctl
...
49
```
51
```
50
  
52
  
51
If you manually add new applications to your `~/.local/share/applications` directory, you might need to run `update-desktop-database` again.
53
If you manually add new applications to your `~/.local/share/applications` directory, you might need to run `update-desktop-database` again.
  
54
  
  
55
### Arch Linux package
  
56
  
  
57
[![xdgctl on AUR](https://img.shields.io/aur/version/xdgctl?label=xdgctl)](https://aur.archlinux.org/packages/xdgctl/)
  
58
[![xdgctl-git on AUR](https://img.shields.io/aur/version/xdgctl-git?label=xdgctl-git)](https://aur.archlinux.org/packages/xdgctl-git/)
  
59
  
  
60
xdgctl is available on the [AUR](https://wiki.archlinux.org/index.php/Arch_User_Repository):
  
61
  
  
62
- [xdgctl](https://aur.archlinux.org/packages/xdgctl/) (release package)
  
63
- [xdgctl-git](https://aur.archlinux.org/packages/xdgctl-git/) (git package)
  
64
  
  
65
You can install it using your [AUR helper](https://wiki.archlinux.org/index.php/AUR_helpers) of choice.
  
66
  
  
67
Example:
  
68
  
  
69
```console
  
70
yay -Sy xdgctl
  
71
```
52
  
72
  
53
## More about XDG
73
## More about XDG
54
  
74
  
...
89
```
109
```
90
  
110
  
91
### Other useful commands/files
111
### Other useful commands/files
  
112
  
92
```bash
113
```bash
93
update-desktop-database ~/.local/share/applications
114
update-desktop-database ~/.local/share/applications
94
less ~/.config/mimeapps.list
115
less ~/.config/mimeapps.list
...