Software recommendation - Desktop Customization & Workflow
Users browsing this thread: 4 Guest(s)
|
|||
I half expect to do another search directly after posting this thread and finding an equivalent, but so far there has been nothing, so I'll just jump into the cold water and create this software recommendation thread.
It's simple – either you are so stoked about something you have been using lately that you can't stop yourself from writing a reply here, or you are desperately searching for a utility and want some community input. I'll start with such a request: does anybody know a good, small command line flashcard utility? I know about anki and mnemosyne, but they are huge and not modular enough. |
|||
|
|||
I've been using and finding useful clipboard managers these days.
Parcellite and Clipit are both great solutions to this and have approximately the same keybind ctrl-alt-h. It's my recommendation lately as I've been working in an IDE that doesn't provide an internal clipboard such as with vim. At the moment I'm looking for a lightweight and complete markdown editor with an export to PDF feature. So far I'm using two things, one of them is an alias on the command line: Code: markdown () { |
|||
|
|||
(07-11-2018, 06:28 AM)venam Wrote: At the moment I'm looking for a lightweight and complete markdown editor with an export to PDF feature. GNU Emacs with pandoc-mode should be sufficient (assuming that you already have an Emacs on your machine, else "lightweight" would be a retarded word for it). -- <mort> choosing a terrible license just to be spiteful towards others is possibly the most tux0r thing I've ever seen |
|||
|
|||
pandoc itself could be an alternative otherwise :)
|
|||
|
|||
I am looking for a window manager that can make dockable windows.
For example, I want to create a "bar" with a clock docklet, but I do not want a dock program, I want a window manager that can "dock" xclock(1) in the corner of the window and make windows do not maximize over it. Something like fvwm can do, but fvwm is too big for my needs. |
|||
|
|||
perhaps not quite the same, but bspwm has the concept of "layers", and the ability to set borders per window -- so all you would have to do is move xclock window to an above layer, remove the borders, and use something like xdotool to place it in a dock-looking location.
To elaborate on layers -- there are 3, below, above, and normal. Each layer has a notion of tiled, floating, fullscreen windows. Windows on the above layer always show above windows on the normal layer, regardless of state. |
|||
|
|||
Trying to think of a way to do this with wmutils but coming up blank for a simple method, even if you set a window to the top of the window stack, and ignore it, X11 will still interpret stacking order requests and include your 'docked' window in the stack, meaning that future above_stack calls will place windows over your docked window. hmm
|
|||
|
|||
(05-05-2020, 06:54 PM)phillbush Wrote: I want a window manager that can "dock" xclock(1) in the corner of the window and make windows do not maximize over it.I think he's not talking about stacking order, but rather limit the virtual workspace size from top-left to the corner of "docked" windows. You can do this with wmutils (of course!). Code: # dock.sh Code: # maximize.sh note: this is obviously untested, and extremely subject to bugs. Enjoy ! |
|||
|
|||
I'm pretty sure cwm can do that too, if I understand correctly (I might not, in which case apologies).
in the cwm configuration file: Code: gap 7 28 7 7 and then in the x resources: Code: XClock*padding : 0 or something? |
|||
|
|||
This would work indeed, but you shouldn't move the xclock window so it remains within the gap area. Perhaps that's what he is after ?
|
|||
|
|||
(07-05-2020, 09:07 AM)twee Wrote: I'm pretty sure cwm can do that too, if I understand correctly (I might not, in which case apologies).That is exactly what I was looking for! Thanks! (07-05-2020, 08:36 AM)z3bra Wrote: You can do this with wmutils (of course!).wmutils(1) looks amazing! Can I use it to change focus to the window on the left/right/up/down of the currently focused window? Focusing by direction is what I use to change focus rather than cycling through Alt+Tab. |
|||
|
|||
Of course you can ! Check this out: https://github.com/wmutils/contrib/blob/...closest.sh
|
|||
|
|||
Thanks, I will check it.
EDIT: Strange... lsw(1) does not exists in OpenBSD's port of wmutils. There is a lswin(1), but I have to use the flag -a to get the list of all windows. And also there isn't a wtf(1), but a wintf(1)... |
|||
|
|||
It probably conflicts with other utils on OpenBSD. lsw shouldn't need the -a flag though, as it is meant to list hidden and ignored windows, which is not what you need really.
|
|||
|
|||
(09-05-2020, 05:32 AM)z3bra Wrote: It probably conflicts with other utils on OpenBSD. lsw shouldn't need the -a flag though, as it is meant to list hidden and ignored windows, which is not what you need really. Here is the util it conflicts with: suckless' lsw. |
|||