Xananax

Results 71 comments of Xananax

@lisavani What isn't working exactly? You aren't receiving the emails? I don't think I forgot any step; I did this and I've been receiving unused email since. I am pretty...

Hmmm then I may have done something prior to allow for regex routing, because it works for me (but I don't remember what unfortunately)

No, I use X11 and I observe the same behavior. It is not related to the display server.

I only needed a quick and dirty way using Deno/Typescript; this is how I'm getting a value: ```ts const getPropertyRegex = (text, key) => (text.match(new RegExp(`aria-label="${key}">.*?metadata-property-value.*?>(?.*?) { const filePath =...

I also needed this in shell blocks, so this is my injection script: ```shell file_path=@vault_path/@note_path cd "$(dirname "$file_path")" get_frontmatter() { local key="$1" local file_path=@vault_path/@note_path sed -n '1{/^---$/!q;};2,/^---$/{/^---$/q; p;}' "$file_path" |...

`parted` can't move partitions; the `move` command was removed long ago. You can resize the 2nd partition with: ```shell sudo e2fsck -f /dev/vda2 sudo resize2fs /dev/vda2 8600M sudo parted /dev/vda...

Other use case: I use files as tasks: Currently I have to set the `done` property, and also separately switch the `icon` property from `LiSquare` to `LiSquareCheckBig`. I have used...

Just giving my +1 to this; I typically browse to research something, and it's not uncommon for me to have 100+ tabs open, all neatly organized in trees so I...

Behavior in TreeStyleTabs (for reference): DnD: - If a tab is dropped on another tab, it becomes a child of the tab (indent of the tab it was dropped on...

Not sure if I should open another feature request for this, but a different way of implementing a similar functionality (for me, at least), is to implement the same thing...