Package Details: obsidian-bin 1.4.16-1

Git Clone URL: https://aur.archlinux.org/obsidian-bin.git (read-only, click to copy)
Package Base: obsidian-bin
Description: A powerful knowledge base that works on top of a local folder of plain text Markdown files
Upstream URL: https://github.com/obsidianmd/obsidian-releases
Keywords: markdown obsidian
Licenses: custom:commercial
Conflicts: obsidian
Submitter: AronYoung
Maintainer: rainbus
Last Packager: rainbus
Votes: 4
Popularity: 1.16
First Submitted: 2023-08-24 13:32 (UTC)
Last Updated: 2023-12-10 15:54 (UTC)

Latest Comments

AronYoung commented on 2023-12-10 04:51 (UTC)

I've recently disowned the obsidian-bin package.If you're interested in adopting this package, please feel free to do so

rainbus commented on 2023-12-03 11:25 (UTC)

Hello AronYoung! I find Obsidian offer an appimage to aarch64 platform, can you add that to PKGBUILD? Thanks.

https://github.com/obsidianmd/obsidian-releases/releases/download/v1.4.16/Obsidian-1.4.16-arm64.AppImage

fissium commented on 2023-11-17 14:26 (UTC)

Hi. I agree with @nikelebron. It would be great to add the ability to use theobsidian-flags.conf flag.

nikelborm commented on 2023-11-02 01:48 (UTC) (edited on 2023-11-02 01:55 (UTC) by nikelborm)

@stickyburn, You can run it on wayland with few flags.

I added them to my .bashrc for easier access as an alias.

alias obsidian='nohup obsidian --enable-ozone --ozone-platform=wayland &'

Also you may add them to your /usr/share/applications/obsidian.desktop so they are applied when you launch obsidian from your start menu.

The best way to do it is to make /sbin/obsidian a bit smarter in a way many applications based on electron (e.g. vscode, youtube-music) already did:

#!/bin/bash

XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}

# Allow users to override command-line options
if [[ -f $XDG_CONFIG_HOME/obsidian-flags.conf ]]; then
   OBSIDIAN_USER_FLAGS="$(sed 's/#.*//' $XDG_CONFIG_HOME/obsidian-flags.conf | tr '\n' ' ')"
fi

# Launch
exec /bin/electron /usr/lib/obsidian/app.asar "$@" $OBSIDIAN_USER_FLAGS

I already asked archlinux devs to add this to obsidian package here, but it would be great if aur/obsidian-bin will be updated in a similar way too.

stickyburn commented on 2023-10-09 18:12 (UTC)

Hello! How can I start obsidian with wayland?