Sebastian Fiedlschuster

Results 21 comments of Sebastian Fiedlschuster

+1 ``` bash $ god --version Version 0.13.5 $ ruby --version ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux] ```

I had a similar issue when hiding desktop icons with ˋdefaults write com.apple.finder CreateDesktop falseˋ. https://youtu.be/HJq_zWAd4T4 https://github.com/koekeishiya/yabai/issues/637#issuecomment-772808456

Also, symlinking only one of the contained files, e.g. ``` bash cd "$HOME/Library/Application Support/Spark/Spark Library.splib" mv "SparkActions" "$HOME/.dotfiles/spark/Spark Library.splib/SparkActions" ln -s "$HOME/.dotfiles/spark/Spark Library.splib/SparkActions" "SparkActions" ``` is enough to cause the...

Thank you, @captainsafia, for your detailed help! I've implemented a first attempt, but I would have a few questions, if I may: - `actions.createCellBelow` works fine, but `actions.createCellAbove`, which I...

> Is there a more abstract way to implement this switch using the operating systems' defaults? It turns out, the native [`event.dataTransfer.effectAllowed`](https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#drageffects) already provides a nice interface for that. I've...

Thank you, again, @captainsafia, for your help! > When copying images to the notebook directory, I'm silently not overwriting existing files. Is there a common way to show some kind...

> Does the image get updated if you click on the Markdown cell, make another edit, then toggle to preview mode by clicking outside the well? No, it doesn't. The...

Hi @captainsafia, sorry being silent for a while. My life situation has changed because I‘m a proud father of a wonderful daughter now. At the moment, I think I won‘t...

@riedel @willingc @captainsafia I'm considering to implement this in the context of https://github.com/nteract/nteract/issues/5081. But I do have a question concerning the expected behaviour: If you copy an image and paste...

Do we know of a good way to retrieve the file paths from the clipboard? I've stumbled upon https://github.com/electron/electron/issues/9035#issuecomment-359554116: > ```js > const plist = require('plist'); > > function hasClipboardFiles()...