Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
- 2024-08-15
- separate versions for mouse hover and active line (keyboard focus)
Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
Make it easier to define bindings by :
| #!/bin/bash | |
| # customizable | |
| LIST_DATA="#{window_name} #{pane_title} #{pane_current_path} #{pane_current_command}" | |
| FZF_COMMAND="fzf-tmux -p --delimiter=: --with-nth 4 --color=hl:2" | |
| # do not change | |
| TARGET_SPEC="#{session_name}:#{window_id}:#{pane_id}:" | |
| # select pane |
All your notes, scripts, config files and snippets deserve version control and tagging!
gist is a simple bash script for gist management.
It is lightweight(~700LOC) and dependency-free! Helps you to boost coding workflow.
| [[source]] | |
| name = "pypi" | |
| url = "https://pypi.org/simple" | |
| verify_ssl = true | |
| [dev-packages] | |
| [packages] | |
| mysql-connector-python = "*" |
macOS has ncurses version 5.7 which does not ship the terminfo description for tmux. There're two ways that can help you to solve this problem.
Instead of tmux-256color, use screen-256color which comes with system. Place this command into ~/.tmux.conf or ~/.config/tmux/tmux.conf(for version 3.1 and later):
| # Trim a single "input.png" image and save to "output.png" | |
| magick input.png -trim +repage output.png | |
| # Trim a single "image.png" image and overwrite the original file (based on @enijar comment) | |
| mogrify -trim +repage image.png | |
| # Trim and overwrite all png images from the working directory (based on @enijar comment) | |
| mogrify -trim +repage *.png |
| ## Install necessary packages and latest virtualbox | |
| wget -q -O - http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc | sudo apt-key add - | |
| sudo sh -c 'echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic non-free contrib" >> /etc/apt/sources.list.d/virtualbox.org.list' | |
| sudo apt update | |
| sudo apt install virtualbox-5.2 qemu-utils genisoimage cloud-utils | |
| ## get kvm unloaded so virtualbox can load | |
| ## WARNING: not needed? | |
| #sudo modprobe -r kvm_amd kvm_intel | |
| #sudo service virtualbox stop |