Package Details: obs-bin 0.1.6-1

Git Clone URL: https://aur.archlinux.org/obs-bin.git (read-only, click to copy)
Package Base: obs-bin
Description: Interact with Obsidian in the terminal. Open, search, create, update and move notes!
Upstream URL: https://github.com/Yakitrak/obsidian-cli
Licenses: MIT
Conflicts: obsidian-cli
Provides: obsidian-cli
Submitter: jneidel
Maintainer: jneidel (obsidian-cli)
Last Packager: obsidian-cli
Votes: 2
Popularity: 0.94
First Submitted: 2023-08-20 18:17 (UTC)
Last Updated: 2023-08-23 16:37 (UTC)

Latest Comments

Sacro commented on 2024-02-24 22:47 (UTC)

Fish completions should be moved to /usr/share/fish/vendor_completions.d/obs.fish

ArnaudM commented on 2023-12-22 02:11 (UTC)

Hello, the binary name conflicts with the binary name in the well-known OBS (https://archlinux.org/packages/extra/x86_64/obs-studio/) package. Could you offer an alternative name?

Sacro commented on 2023-08-24 13:49 (UTC)

Hi there, if you could make some slight changes it would give us auto completion and remove the duplicated licence file!

build() {
  ./obs completion bash > obs.bash
  ./obs completion fish > obs.fish
  ./obs completion zsh > _obs
}

package() {
  install -Dm755 "./obs" "${pkgdir}/usr/bin/obs"
  install -Dm644 obs.bash "$pkgdir/usr/share/bash-completion/completions/obs"
  install -Dm644 obs.fish "$pkgdir/usr/share/fish/completions/obs.fish"
  install -Dm644 _obs "$pkgdir/usr/share/zsh/site-functions/_obs"
}