matthew / Launch or raise Logseq
0 likes
0 forks
1 files
Last active
Simple bash script to launch or raise Logseq and position it on the right side of the screen
| 1 | #!/bin/bash |
| 2 | # Launch Logseq and/or raise it. |
| 3 | # |
| 4 | # In all cases, it raises it on the current workspace, and positions it on the |
| 5 | # right half of the screen. Change the logic in get_width(), get_height(), and |
| 6 | # get_geometry() to change positioning and size. |
| 7 | # |
| 8 | # I bind this to <Super><Ctrl>-l, which allows me to launch it at any time. |
| 9 | |
| 10 | get_width() { |
Newer
Older