Earlier quoted context omitted.
I think if you go to the Keychain, you can configure it to put an icon in the top right tray that you can click on to lock your computer. I often find myself accidentally moving my mouse to the top right corner of my Windows and Linux machines to lock them now.
That is exactly what I do. I think that the combo I would normally try (Cmd+L) logs you out. I remember at one point trying to find the correct key combination, and the primary results were to put the lock icon up. That works find enough for me.
Show HN: Swiss Army Knife for Mac OS X
51–60 of 67 posts
Re: Show HN: Swiss Army Knife for Mac OS X
#52Re: Show HN: Swiss Army Knife for Mac OS X
#53Earlier quoted context omitted.
i'm not. all of it makes me nervous. even package managers with supposedly cryptographically secure verification make me nervous. but, you gotta do what you gotta do to actually do stuff. i sure as hell ain't going back to the days of compiling everything from source.
> i'm not. all of it makes me nervous. even package managers with supposedly cryptographically secure verification make me nervous. Android and Chrome for example are really ahead of this in my opinion. Apps are sandboxed and you know uninstall clears up traces of them. Obviously it's not perfect but it's miles ahead of installation scripts and binary installers which can do anything they want with your system and mi…
Re: Show HN: Swiss Army Knife for Mac OS X
#54Earlier quoted context omitted.
I don't know, CLI commands in os x are much worse than in linux, want to display wifi info? $/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I lots of useful commands like that are not in your path by default, that said, at least os x lets you modify almost any part of the system with shell commands.
which airport /usr/local/bin/airport
$ which airport
airport not found
Re: Show HN: Swiss Army Knife for Mac OS X
#55There's a more popular but similar project. https://github.com/guarinogabriel/mac-cli Has anyone used both?
It literally says on the github page of OP submission, that Mac-CLI was inspiration. HNews discussion about it 3 weeks ago: https://news.ycombinator.com/item?id=11977162 But I too wonder why I should use this instead of Mac-CLI?
Re: Show HN: Swiss Army Knife for Mac OS X
#56This and the other one that was on HN a short while back, I just don't get the point. Learn the command line, already. Yes, some are hard to remember, but that's why history exists. And if you rarely use one, keep it in a simple, greppable text file.
Re: Show HN: Swiss Army Knife for Mac OS X
#57Earlier quoted context omitted.
i'm not. all of it makes me nervous. even package managers with supposedly cryptographically secure verification make me nervous. but, you gotta do what you gotta do to actually do stuff. i sure as hell ain't going back to the days of compiling everything from source.
> i'm not. all of it makes me nervous. even package managers with supposedly cryptographically secure verification make me nervous. Android and Chrome for example are really ahead of this in my opinion. Apps are sandboxed and you know uninstall clears up traces of them. Obviously it's not perfect but it's miles ahead of installation scripts and binary installers which can do anything they want with your system and mi…
Not in all versions of Android, if they write stuff on the SD card.
Re: Show HN: Swiss Army Knife for Mac OS X
#58Re: Show HN: Swiss Army Knife for Mac OS X
#59Re: Show HN: Swiss Army Knife for Mac OS X
#60Earlier quoted context omitted.
Just pipe the script to a file so you can read it without having to copy-paste. :) curl -fsSL https://raw.githubusercontent.com/rgcr/m-cli/master/install.... . > install.sh
Or use curl 's built-in options: curl -O ... or curl -o install.sh ...