Nice!
@
fiji885
I like that movie. My daughter isn’t too sure though.
Also, XFCE for the win.
@
Furry Guy
Alas, you installed Malware Bytes’ malware on your PC...
I like the cat, though. (I miss my cat.)
@
mbozzi
MSYS2 is basically a repackaged, cross-compiled ArchLinux terminal shell for Windows.
https://www.msys2.org/
I use the command-line
constantly. The default Command Window + cmd.exe shell isn’t too bad, and you can get a lot of GNU utilities to help. I have mine set up (via the shortcut I have pinned to my taskbar) to launch a startup file (.bat or .cmd — mine’s called “prompt.bat” kept with all the utilities I want automatically available in “C:\Users\Michael\bin”.
I also have a directory junction set to C:\m → C:\Users\Michael, which makes life really easy.
The key to managing the prompt in Windows is managing the PATH. From the system control panel, clear everything non-essential out. Then add a utility to put it in if you need it.
For example, I the file “\m\bin\clang++.bat” looks something like:
1 2 3 4 5
|
@echo off
path C:\Program Files\LLVM\bin;%PATH%
set INCLUDE=C:\Boost\include;C:\ICU\include
set LIBS=C:\Boost\lib64;C:\ICU\lib64
clang++ %*
|
(Mine is actually a fair bit more complex than that... but this covers the basic idea.)
Thereafter, I can initialize and use my WinBuilds/LLVM/Clang++9 compiler simply by using it normally. The initialization happens in the background and, once the PATH is updated, is ignored for the actual executable.
Likewise, my prompt.bat file can set up a number of useful aliases to save my butt when switching back and forth between cmd and bash, like:
I tend to like ConEmu + Clink.
I also keep a copy of Python 3 and ActiveState’s Tcl/Tk in the path for scripting stuff.
I am not a fan of Emacs, but that is mostly because I am a Wordstar command junkie, and I think I nearly formatted my HD trying to escape the first time I used it. (It didn’t help that the emacs welcome uses that dumb M-foo notation, which I didn’t understand at the time either.)
(For the record, joe is a piece of crap editor.)
I used to use my Delphi 5 to edit everything, but, alas, it has limitations that made me give it up a while ago.
Eventually I’m going to try
sublime, but I don’t have a spare $70 ATM.
Oh, before I forget, I can host your images if y’all like, just to keep them from disappearing in a week... Just PM me and I’ll send you a link you can edit into your post.