Package Details: obsidian-cli-bin 0.1.7-1

Git Clone URL: https://aur.archlinux.org/obsidian-cli-bin.git (read-only, click to copy)
Package Base: obsidian-cli-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: 3
Popularity: 0.55
First Submitted: 2024-07-13 09:28 (UTC)
Last Updated: 2024-07-13 17:08 (UTC)

Latest Comments

jneidel commented on 2024-07-13 09:21 (UTC) (edited on 2024-07-13 09:39 (UTC) by jneidel)

Package is moving to obsidian-cli-bin, see https://github.com/Yakitrak/obs/pull/2 as suggested by @Sacro & ArnaudM

Completions are also being added as part of https://github.com/Yakitrak/obsidian-cli/pull/32 (thanks @Sacro)

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"
}