131 Commits

Author SHA1 Message Date
Oliver Kopp
b577c97db7 Nicer presentation of hotkeys (#80) 2023-12-06 06:59:55 +11:00
Robert Chang
af3e44c749 Merge pull request #78 from hezhizhen/typo
fix typo
2023-03-23 17:34:07 +11:00
Zhizhen He
82be7cf46f fix typo 2023-02-03 13:30:44 +08:00
SLJ
886ca5e930 Merge pull request #77 from sicaboy/master
Update cpu usage and add network utility related
2022-12-14 22:29:20 +11:00
sicaboy
5f06a2ed99 Update cpu usage and add network utility related 2022-12-14 22:22:14 +11:00
rjc
cf55f5e0fd Be consistent with showing the prompt (#72)
Co-authored-by: Raf Czlonka <rczlonka@gmail.com>
2021-10-21 09:56:51 +11:00
Robert Chang
2aa4c92b40 Merge pull request #70 from IAmTalas/master
Resolves #64
2021-10-11 00:35:13 +11:00
Talas
b985c5dde2 Update readme.md
Fix "Go to table of contents" location
2021-10-10 15:27:06 +03:30
Talas
743eb1802c Update readme.md
Add "Go to table of contents"
2021-10-10 15:21:44 +03:30
Steve Mao
7d43066fa0 Update readme.md 2021-10-10 19:13:46 +11:00
Steve Mao
91910df07d Update readme.md (#69)
* Update readme.md

* Update readme.md

* Update readme.md
2021-10-10 19:12:13 +11:00
Steve Mao
29cf171f92 Update readme.md (#68)
* Update readme.md

* Update readme.md
2021-10-10 19:03:26 +11:00
wuyudi
f0878974b1 🎉 introduce unar and lsar (#63) 2021-10-10 19:02:25 +11:00
Steve Mao
a4ad72893a open a file in any application (#67)
* open a file in any application

* Update readme.md
2021-10-02 18:05:24 +10:00
Steve Mao
8e7a2d3b6e add usb related commands (#66)
* add usb related commands

* Update readme.md
2021-10-02 17:45:36 +10:00
Robert Chang
e26908dff9 Merge pull request #60 from TeddyHuang-00/patch-1
Add link to simplified Chinese version
2021-08-18 23:53:36 +10:00
TeddyHuang-00
391c0971eb Update readme.md 2021-08-13 10:32:36 +08:00
TeddyHuang-00
7f7f455a6b Create readme-zh_CN.md 2021-08-13 10:32:12 +08:00
Steve Mao
8a884328db Update readme.md 2021-08-10 14:42:47 +10:00
Steve Mao
55a15ba999 Stevemao patch 1 (#61)
* fix formatting

* Update readme.md

* fix format
2021-08-10 14:39:55 +10:00
Robert Chang
bfb6fc678c Merge pull request #49 from MasonM/patch-1
Fix " force quit a program" to send SIGKILL
2021-08-09 00:50:19 +10:00
Robert Chang
62cd4cba54 Merge pull request #50 from ailisp/patch-1
add -l to bc
2021-08-09 00:49:44 +10:00
Robert Chang
fa9fc49765 Merge pull request #43 from CrazyPython/patch-1
Add ripgrep and glances
2021-08-09 00:48:20 +10:00
Robert Chang
9ba3e00e07 Merge pull request #51 from ZWindL/master
Added some other useful hotkeys
2021-08-09 00:46:49 +10:00
Robert Chang
e63a285bba Merge pull request #52 from LorenzCK/patch-1
Add file launching on Windows
2021-08-09 00:43:42 +10:00
Robert Chang
2b66d54872 Merge pull request #54 from h3xx/fix-backslash
Fix backslash in ''
2021-08-09 00:43:05 +10:00
Robert Chang
5c3d391588 Merge pull request #55 from h3xx/fix-weird-character
Replace non-ASCII space
2021-08-09 00:42:36 +10:00
Robert Chang
8713693089 Merge pull request #58 from Rohitrajak1807/master
Add reboot and poweroff commands
2021-08-09 00:42:09 +10:00
TeddyHuang-00
ded3934dcf Add link to simplified Chinese version
Finished translation work of this repo, so added a link in the main repo for quick jump
2021-06-23 15:45:17 +08:00
Rohitrajak1807
dc1ab03f58 add reboot and poweroff commands 2021-04-27 22:46:43 +05:30
Dan Church
ebdab347c9 Replace non-ASCII space 2021-04-09 10:30:20 -05:00
Dan Church
f5f68e1528 Fix backslash in ''
Would create a directory with a backslash (0x5c), and a space (0x20) in
the name instead of just a space (0x20).
2021-04-09 10:26:38 -05:00
Lorenz Cuno Klopfenstein
3db2693f29 Add file launching on Windows 2021-04-09 10:15:10 +02:00
zwindl
2479664ae3 MOD: readme.md
What's new:
- add some other useful hotkeys
2021-04-09 15:11:57 +08:00
Bo Yao
81041ed648 add -l to bc
-l makes bc works with float numbers, which are expected behavior for most users:
```
~ bc
bc 1.07.1
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'. 
3/2
1
~ bc -l
bc 1.07.1
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'. 
3/2
1.50000000000000000000
```
2021-04-08 21:37:16 -07:00
Mason Malone
9b87ef87df Fix " force quit a program" to send SIGKILL
Running `killall program_name` sends a SIGTERM signal, which a program is free to ignore:
> The sig argument is the value specified by the -s option, - signal_number option, or the - signal_name option, or by SIGTERM, if none of these options is specified.
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/kill.html

To send a SIGKILL signal, you need to use `killall -9` or `killall -KILL`, which cannot be ignored.
2021-04-08 21:21:52 -07:00
Ashley Harvey
8f87e8f25b Merge pull request #47 from tactlessfish/dropping-patch
Fix typos: "DROPING" to "DROPPING"
2020-11-13 22:57:31 -08:00
Fisher Sun
c22ca1b9ee Fix typos: "DROPING" to "DROPPING" 2020-10-31 09:56:36 -04:00
Ashley Harvey
bae4c478cc Merge pull request #46 from goldins/patch-1
Fixed a typo: "Let's" -> "Lets"
2020-10-15 16:37:12 -07:00
Simon Goldin
844369f5ae Fixed a typo: "Let's" -> "Lets"
"Let's" is a contraction of "let us", as in "let's use shortcuts".

"Lets" is a form of "let", meaning "allow".
2020-10-15 18:46:14 -04:00
Ashley Harvey
37296cd6d1 Merge pull request #45 from altbdoor/patch-1
use less instead of pipe from cat
2020-10-04 01:21:45 -07:00
altbdoor
45bb2861c0 use less instead of pipe from cat
- fixes #44
2020-10-03 11:09:17 +08:00
James
de9e922db3 Add ripgrep and glances 2020-09-30 13:47:10 -04:00
Steve Mao
a1b07e2b47 add brew install tree 2020-04-20 14:20:26 +10:00
Ashley Harvey
96407269ec Replaced 'folder' with 'directory' across the whole file. (#40)
* Replaced 'folder' with 'directory' across the whole file.

* Correct case and make sure subdirectorys is corrected to subdirectories.
2020-02-26 10:39:53 +11:00
Robert Chang
63b8fc86ec Merge pull request #42 from ashleyharvey/issue-27
Prepend shell prompts.
2020-02-26 10:13:20 +11:00
Ashley Harvey
2e8438ee6d Merge branch 'master' into issue-27 2020-02-25 15:10:19 -08:00
Ashley Harvey
cb03649410 Prepend shell prompts. 2020-02-25 14:58:51 -08:00
Ashley Harvey
ad332a25e0 Replace ping with curl. (#41)
fixes https://github.com/you-dont-need/You-Dont-Need-GUI/issues/36
2020-02-26 09:56:06 +11:00
Robert Chang
e3bdee6426 Merge pull request #39 from ashleyharvey/readme-changes
Readme changes
2020-02-26 00:54:51 +11:00