diff --git a/pages/linux/arecord.md b/pages/linux/arecord.md index 8c4820ff5611f5..71b2e749a6e768 100644 --- a/pages/linux/arecord.md +++ b/pages/linux/arecord.md @@ -3,7 +3,7 @@ > Sound recorder for ALSA soundcard driver. > More information: . -- Record a snippet in "CD" quality (finish with Ctrl-C when done): +- Record a snippet in "CD" quality (finish with `` when done): `arecord -vv --format=cd {{path/to/file.wav}}` @@ -11,7 +11,7 @@ `arecord -vv --format=cd --duration={{10}} {{path/to/file.wav}}` -- Record a snippet and save it as an MP3 (finish with Ctrl-C when done): +- Record a snippet and save it as an MP3 (finish with `` when done): `arecord -vv --format=cd --file-type raw | lame -r - {{path/to/file.mp3}}` @@ -19,7 +19,7 @@ `arecord --list-devices` -- Allow interactive interface (e.g. use space-bar or enter to play or pause): +- Allow interactive interface (e.g. use `` or `` to play or pause): `arecord --interactive` diff --git a/pages/linux/atop.md b/pages/linux/atop.md index 728ade46feb365..8707f55fc82bd5 100644 --- a/pages/linux/atop.md +++ b/pages/linux/atop.md @@ -29,4 +29,4 @@ - Display help about interactive commands: -`?` +`` diff --git a/pages/linux/caffeinate.md b/pages/linux/caffeinate.md index 4264668fa91ad0..44c24858bc40cf 100644 --- a/pages/linux/caffeinate.md +++ b/pages/linux/caffeinate.md @@ -3,6 +3,6 @@ > Prevent desktop from sleeping. > More information: . -- Prevent desktop from sleeping (use `Ctrl + C` to exit): +- Prevent desktop from sleeping (use `` to exit): `caffeinate` diff --git a/pages/linux/cmus.md b/pages/linux/cmus.md index 30830ea16e2f93..a47258ee27e4af 100644 --- a/pages/linux/cmus.md +++ b/pages/linux/cmus.md @@ -1,7 +1,7 @@ # cmus > Command-line Music Player. -> Use arrow keys to navigate, `` to select, and numbers 1-8 switch between different views. +> Use `` to navigate, `` to select, and numbers `<1>`-`<8>` switch between different views. > See also: `ncmpcpp`, `clementine`, `qmmp`. > More information: . @@ -11,16 +11,16 @@ - Add file/directory to library: -`:add {{path/to/file_or_directory}}` +`<:>add {{path/to/file_or_directory}}` - Pause/unpause current song: -`c` +`` - Toggle shuffle mode on/off: -`s` +`` - Quit cmus: -`q` +`` diff --git a/pages/linux/cu.md b/pages/linux/cu.md index 23a5bb7e4a5f97..a0ec4233df8667 100644 --- a/pages/linux/cu.md +++ b/pages/linux/cu.md @@ -21,4 +21,4 @@ - Exit the `cu` session when in connection: -`~.` +`<~><.>` diff --git a/pages/linux/cuyo.md b/pages/linux/cuyo.md index 37bdcca8c000a0..ece25ca2ca245d 100644 --- a/pages/linux/cuyo.md +++ b/pages/linux/cuyo.md @@ -9,12 +9,12 @@ - Navigate the piece horizontally: -`{{A|D|Left arrow key|Right arrow key}}` +`{{|||}}` - Turn the piece: -`{{W|Up arrow key}}` +`{{|}}` - Hard drop the piece: -`{{S|Down arrow key}}` +`{{|}}` diff --git a/pages/linux/expect.md b/pages/linux/expect.md index bf5a61fbbdd33f..71595f661dc274 100644 --- a/pages/linux/expect.md +++ b/pages/linux/expect.md @@ -11,6 +11,6 @@ `expect -c "{{commands}}"` -- Enter an interactive REPL (use `exit` or Ctrl + D to exit): +- Enter an interactive REPL (use `exit` or `` to exit): `expect -i` diff --git a/pages/linux/fdisk.md b/pages/linux/fdisk.md index d1b4da9da9190d..e84e3d063fd106 100644 --- a/pages/linux/fdisk.md +++ b/pages/linux/fdisk.md @@ -14,24 +14,24 @@ - Once partitioning a disk, create a partition: -`n` +`` - Once partitioning a disk, select a partition to delete: -`d` +`` - Once partitioning a disk, view the partition table: -`p` +`

` - Once partitioning a disk, write the changes made: -`w` +`` - Once partitioning a disk, discard the changes made: -`q` +`` - Once partitioning a disk, open a help menu: -`m` +`` diff --git a/pages/linux/finch.md b/pages/linux/finch.md index 62871e527998ef..7dffc98238471e 100644 --- a/pages/linux/finch.md +++ b/pages/linux/finch.md @@ -9,24 +9,24 @@ - Quit: -` + q OR + c` +`{{|}}` - Show actions menu: -` + a` +`` - Jump to n-th window: -` + {{number_key}}` +`` - Close current window: -` + c` +`` -- Start moving a window, use arrow keys to move, press escape when done: +- Start moving a window, use `` to move, press `` when done: -` + m` +`` -- Start resizing a window, use arrow keys to resize, press escape when done: +- Start resizing a window, use `` to resize, press `` when done: -` + r` +`` diff --git a/pages/linux/guake.md b/pages/linux/guake.md index 67a958d0796865..a66aa6585fbfbf 100644 --- a/pages/linux/guake.md +++ b/pages/linux/guake.md @@ -5,24 +5,24 @@ - Toggle Guake visibility: -`F12` +`` - Toggle fullscreen mode: -`F11` +`` - Open a new tab: -` + + T` +`` - Close the terminal: -` + X` +`` - Go to the previous tab: -` + ` +`` - Search the selected text in the browser: -` + + L` +`` diff --git a/pages/linux/i3.md b/pages/linux/i3.md index e70720809df351..39443ccf51f4b2 100644 --- a/pages/linux/i3.md +++ b/pages/linux/i3.md @@ -9,24 +9,24 @@ - Open a new terminal window: -` + ` +`` - Create a new workspace: -` + + {{number}}` +`` -- Switch to workspace number `n`: +- Switch to a workspace: -` + {{n}}` +`` - Open new window horizontally: -` + h` +`` - Open new window vertically: -` + v` +`` - Open application (type out application name after executing command): -` + D` +`` diff --git a/pages/linux/iftop.md b/pages/linux/iftop.md index e4c6655358856a..bb993eaf3c31d4 100644 --- a/pages/linux/iftop.md +++ b/pages/linux/iftop.md @@ -25,4 +25,4 @@ - Display help: -`?` +`` diff --git a/pages/linux/kill.md b/pages/linux/kill.md index c16a358ecff351..7ed4246b6ad3b4 100644 --- a/pages/linux/kill.md +++ b/pages/linux/kill.md @@ -20,7 +20,7 @@ `kill -{{1|HUP}} {{process_id}}` -- Terminate a program using the SIGINT (interrupt) signal. This is typically initiated by the user pressing `Ctrl + C`: +- Terminate a program using the SIGINT (interrupt) signal. This is typically initiated by the user pressing ``: `kill -{{2|INT}} {{process_id}}` diff --git a/pages/linux/killall.md b/pages/linux/killall.md index 351073e89141ed..3573447fec9312 100644 --- a/pages/linux/killall.md +++ b/pages/linux/killall.md @@ -16,7 +16,7 @@ `killall -i {{process_name}}` -- Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing `Ctrl + C`: +- Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing ``: `killall -INT {{process_name}}` diff --git a/pages/linux/konsole.md b/pages/linux/konsole.md index 860b485c044094..629315f6d0df1e 100644 --- a/pages/linux/konsole.md +++ b/pages/linux/konsole.md @@ -15,6 +15,6 @@ `konsole --new-tab` -- Open the terminal in the background and bring to the front when `Ctrl+Shift+F12` is pressed: +- Open the terminal in the background and bring to the front when `` is pressed: `konsole --background-mode` diff --git a/pages/linux/links.md b/pages/linux/links.md index bfdaa71a089b0b..740b97c72f74df 100644 --- a/pages/linux/links.md +++ b/pages/linux/links.md @@ -17,12 +17,12 @@ - Navigate forwards and backwards through the links on a page: -`{{Up arrow key|Down arrow key}}` +`{{ArrowUp|ArrowDown}}` - Go forwards and backwards one page: -`{{Left arrow key|Right arrow key}}` +`{{ArrowLeft|ArrowRight}}` - Exit: -`q + y` +`` diff --git a/pages/linux/more.md b/pages/linux/more.md index 7e34a118d869e2..bbc9d26dd4b2bd 100644 --- a/pages/linux/more.md +++ b/pages/linux/more.md @@ -16,14 +16,14 @@ `` -- Search for a string (press `n` to go to the next match): +- Search for a string (press `` to go to the next match): -`/{{something}}` +`{{something}}` - Exit: -`q` +`` - Display help about interactive commands: -`h` +`` diff --git a/pages/linux/mpg123.md b/pages/linux/mpg123.md index e06d41ab0a0379..85e13a0dd06206 100644 --- a/pages/linux/mpg123.md +++ b/pages/linux/mpg123.md @@ -13,20 +13,20 @@ - Jump forward to the next song: -`f` +`` - Jump back to the beginning for the song: -`b` +`` - Stop or replay the current file: -`s` +`` - Fast forward: -`.` +`<.>` - Quit: -`q` +`` diff --git a/pages/linux/nmtui.md b/pages/linux/nmtui.md index 0488d74a3ad806..d6001ea3c2a3e5 100644 --- a/pages/linux/nmtui.md +++ b/pages/linux/nmtui.md @@ -1,7 +1,7 @@ # nmtui > Text user interface for controlling NetworkManager. -> Use arrow keys to navigate, enter to select an option. +> Use `` to navigate, `` to select an option. > More information: . - Open the user interface: diff --git a/pages/linux/nsnake.md b/pages/linux/nsnake.md index 45e919ffa075d6..d7acd566db7042 100644 --- a/pages/linux/nsnake.md +++ b/pages/linux/nsnake.md @@ -9,16 +9,16 @@ - Navigate the snake: -`{{Up|Down|Left|Right arrow key}}` +`{{ArrowUp|ArrowDown|ArrowLeft|ArrowRight}}` - Pause/unpause the game: -`p` +`

` - Quit the game: -`q` +`` - Display help during the game: -`h` +`` diff --git a/pages/linux/nsxiv.md b/pages/linux/nsxiv.md index b9798f1a995d12..d838f876de781e 100644 --- a/pages/linux/nsxiv.md +++ b/pages/linux/nsxiv.md @@ -17,16 +17,16 @@ - Quit nsxiv: -`q` +`` - Switch to thumbnail mode or open selected image in image mode: -`` +`` - Count images forward in image mode: -`n` +`` - Count images backward in image mode: -`p` +`

` diff --git a/pages/linux/quickemu.md b/pages/linux/quickemu.md index cc90c1b7a8d605..9968306a20bcdf 100644 --- a/pages/linux/quickemu.md +++ b/pages/linux/quickemu.md @@ -12,7 +12,7 @@ `quickemu --status-quo --vm {{path/to/file.conf}}` -- Start the virtual machine in full-screen mode ( + + f to exit) and select the display backend (`sdl` by default): +- Start the virtual machine in full-screen mode (`` to exit) and select the display backend (`sdl` by default): `quickemu --fullscreen --display {{sdl|gtk|spice|spice-app|none}} --vm {{path/to/file.conf}}` diff --git a/pages/linux/rdesktop.md b/pages/linux/rdesktop.md index 43fb280daae8be..aaef8fc27e869a 100644 --- a/pages/linux/rdesktop.md +++ b/pages/linux/rdesktop.md @@ -12,7 +12,7 @@ `rdesktop -u Administrator -p passwd123 192.168.1.111:3389` -- Connect to a remote computer with full screen (press `Ctrl + Alt + Enter` to exist): +- Connect to a remote computer with full screen (press `` to exist): `rdesktop -u {{username}} -p {{password}} -f {{host:port}}` diff --git a/pages/linux/rtcwake.md b/pages/linux/rtcwake.md index ef62c3fe4fa83e..c3c62c50750e9f 100644 --- a/pages/linux/rtcwake.md +++ b/pages/linux/rtcwake.md @@ -23,6 +23,6 @@ `sudo rtcwake -m disable` -- Perform a dry run to wakeup the computer at a given time. (Press Ctrl + C to abort): +- Perform a dry run to wakeup the computer at a given time. (Press `` to abort): `sudo rtcwake -m on --date {{hh:ss}}` diff --git a/pages/linux/rtorrent.md b/pages/linux/rtorrent.md index 3137bf6e2f79a1..11cf27c3d4f5d1 100644 --- a/pages/linux/rtorrent.md +++ b/pages/linux/rtorrent.md @@ -9,12 +9,12 @@ - Start the download: -`S` +`` - View details about downloading torrent: -`->` +`` - Close rtorrent safely: -`Q` +`` diff --git a/pages/linux/sar.md b/pages/linux/sar.md index b949f25156c3b9..432d52d1368132 100644 --- a/pages/linux/sar.md +++ b/pages/linux/sar.md @@ -3,7 +3,7 @@ > Monitor performance of various Linux subsystems. > More information: . -- Report I/O and transfer rate issued to physical devices, one per second (press CTRL+C to quit): +- Report I/O and transfer rate issued to physical devices, one per second (press `` to quit): `sar -b {{1}}` diff --git a/pages/linux/scrot.md b/pages/linux/scrot.md index 8ac7f72cbcff58..d96853d9510cc6 100644 --- a/pages/linux/scrot.md +++ b/pages/linux/scrot.md @@ -15,7 +15,7 @@ `scrot --select` -- Capture a screenshot interactively without exiting on keyboard input, press `ESC` to exit: +- Capture a screenshot interactively without exiting on keyboard input, press `` to exit: `scrot --select --ignorekeyboard` diff --git a/pages/linux/showkey.md b/pages/linux/showkey.md index 7d3ca5a27e92b7..4e49f067e49089 100644 --- a/pages/linux/showkey.md +++ b/pages/linux/showkey.md @@ -21,4 +21,4 @@ - Exit the program: -`Ctrl + d` +`` diff --git a/pages/linux/snake4.md b/pages/linux/snake4.md index f97f1452f7caa8..cf4836673e5798 100644 --- a/pages/linux/snake4.md +++ b/pages/linux/snake4.md @@ -9,19 +9,19 @@ - Choose level: -`{{1|2|3|4|5}}` +`{{<1>|<2>|<3>|<4>|<5>}}` - Navigate the snake: -`{{Up|Down|Left|Right arrow key}}` +`{{|||}}` - Pause game: -`` +`` - Quit game: -`q` +`` - Show the high scores: diff --git a/pages/linux/speedread.md b/pages/linux/speedread.md index c82d002d3c4e72..94bccacf9f3a85 100644 --- a/pages/linux/speedread.md +++ b/pages/linux/speedread.md @@ -18,12 +18,12 @@ - Slow down by 10% during the reading session: -`[` +`<[>` - Speed up by 10% during the reading session: -`]` +`<]>` - Pause, and show the last few lines as context: -`` +`` diff --git a/pages/linux/st.md b/pages/linux/st.md index f40c9a088eeb48..8ac0745fcc68d7 100644 --- a/pages/linux/st.md +++ b/pages/linux/st.md @@ -17,8 +17,8 @@ - Increase/decrease the font size: -` + + {{Page Up|Page Down}}` +`` - Copy/paste from the clipboard: -` + + {{C|V}}` +`` diff --git a/pages/linux/talk.md b/pages/linux/talk.md index d86626fdb132bf..74f3d5a25ff395 100644 --- a/pages/linux/talk.md +++ b/pages/linux/talk.md @@ -17,8 +17,8 @@ - Clear text on both terminal screens: -`+D` +`` - Exit the talk session: -`+C` +`` diff --git a/pages/linux/terminator.md b/pages/linux/terminator.md index 5d9a9fcd99b861..b63680de50dde0 100644 --- a/pages/linux/terminator.md +++ b/pages/linux/terminator.md @@ -13,12 +13,12 @@ - Split terminals horizontally: -` + + O` +`` - Split terminals vertically: -` + + E` +`` - Open new tab: -` + + T` +`` diff --git a/pages/linux/top.md b/pages/linux/top.md index b712e06a9bc0ac..0fe325f9dfcf84 100644 --- a/pages/linux/top.md +++ b/pages/linux/top.md @@ -29,4 +29,4 @@ - Display help about interactive commands: -`?` +`` diff --git a/pages/linux/warpd.md b/pages/linux/warpd.md index 89a9d8e02396cf..50c118b3af5657 100644 --- a/pages/linux/warpd.md +++ b/pages/linux/warpd.md @@ -13,20 +13,20 @@ - Move cursor left: -`h` +`` - Move cursor down: -`j` +`` - Move cursor up: -`k` +`` - Move cursor right: -`l` +`` - Emulate left click: -`m` +`` diff --git a/pages/linux/wf-recorder.md b/pages/linux/wf-recorder.md index 753b24d7cf8a31..129d7816125fc9 100644 --- a/pages/linux/wf-recorder.md +++ b/pages/linux/wf-recorder.md @@ -1,7 +1,7 @@ # wf-recorder > Screencast for Wayland optionally with audio. -> By default you need to end the process with Ctrl-C. +> By default you need to end the process with ``. > More information: . - Record storing to an MP4 file: diff --git a/pages/linux/xclip.md b/pages/linux/xclip.md index dc2b7ce1653d19..6a57367a216a1c 100644 --- a/pages/linux/xclip.md +++ b/pages/linux/xclip.md @@ -1,7 +1,7 @@ # xclip > X11 clipboard manipulation tool, similar to `xsel`. -> Handles the X primary and secondary selections, plus the system clipboard (`Ctrl + C`/`Ctrl + V`). +> Handles the X primary and secondary selections, plus the system clipboard (``/``). > See also: `wl-copy`. > More information: . diff --git a/pages/linux/xdotool.md b/pages/linux/xdotool.md index c830d74b4c7259..4617ab6122cefe 100644 --- a/pages/linux/xdotool.md +++ b/pages/linux/xdotool.md @@ -7,7 +7,7 @@ `xdotool search --onlyvisible --name {{firefox}}` -- Click the right mouse button: +- Perform a mouse ``: `xdotool click {{3}}` @@ -23,6 +23,6 @@ `xdotool type --delay {{500}} "Hello world"` -- Press the enter key: +- Press the `` key: `xdotool key {{KP_Enter}}` diff --git a/pages/linux/xmodmap.md b/pages/linux/xmodmap.md index d1a518c1b48069..77a47bfbcfcc0f 100644 --- a/pages/linux/xmodmap.md +++ b/pages/linux/xmodmap.md @@ -3,7 +3,7 @@ > Utility for modifying keymaps and pointer button mappings in X. > More information: . -- Swap left-click and right-click on the pointer: +- Swap `` and `` on the pointer: `xmodmap -e 'pointer = 3 2 1'` diff --git a/pages/linux/xsel.md b/pages/linux/xsel.md index f61638c0efe420..4dfec8b1cb5251 100644 --- a/pages/linux/xsel.md +++ b/pages/linux/xsel.md @@ -3,7 +3,7 @@ > X11 selection and clipboard manipulation tool. > More information: . -- Use a command's output as input of the clip[b]oard (equivalent to `Ctrl + C`): +- Use a command's output as input of the clip[b]oard (equivalent to ``): `echo 123 | xsel -ib` @@ -11,7 +11,7 @@ `cat {{path/to/file}} | xsel -ib` -- Output the clipboard's contents into the terminal (equivalent to `Ctrl + V`): +- Output the clipboard's contents into the terminal (equivalent to ``): `xsel -ob` @@ -23,6 +23,6 @@ `xsel -cb` -- Output the X11 primary selection's contents into the terminal (equivalent to a mouse middle-click): +- Output the X11 primary selection's contents into the terminal (equivalent to a mouse ``): `xsel -op` diff --git a/pages/linux/ydotool.md b/pages/linux/ydotool.md index b292e739dd958e..be90477f97d2b7 100644 --- a/pages/linux/ydotool.md +++ b/pages/linux/ydotool.md @@ -7,14 +7,14 @@ `ydotoold` -- Perform a left click input: +- Perform a `` input: `ydotool click 0xC0` -- Perform a right click input: +- Perform a `` input: `ydotool click 0xC1` -- Input Alt+F4: +- Input ``: `ydotool key 56:1 62:1 62:0 56:0` diff --git a/pages/linux/yetris.md b/pages/linux/yetris.md index f38c8417357856..97a4cfb8000e58 100644 --- a/pages/linux/yetris.md +++ b/pages/linux/yetris.md @@ -9,28 +9,28 @@ - Navigate the piece horizontally: -`{{Left|Right arrow key}}` +`{{|}}` - Rotate the piece clockwise or counterclockwise: -`{{x|z}}` +`{{|}}` - Hold a piece (only one allowed at a time): -`c` +`` - Soft drop the piece: -`` +`` - Hard drop the piece: -`` +`` - Pause/unpause the game: -`p` +`

` - Quit the game: -`q` +`` diff --git a/pages/linux/zathura.md b/pages/linux/zathura.md index 3c01c70aa0d127..89c28714c5c0e5 100644 --- a/pages/linux/zathura.md +++ b/pages/linux/zathura.md @@ -10,24 +10,24 @@ - Navigate left/up/down/right: -`{{H|J|K|L|arrow keys}}` +`{{||||}}` - Rotate: -`r` +`` - Invert Colors: -` + R` +`` - Search for text by a given string: -`/{{string}}` +`{{string}}` - Create/delete bookmarks: -`:{{bmark|bdelete}} {{bookmark_name}}` +`<:>{{bmark|bdelete}} {{bookmark_name}}` - List bookmarks: -`:blist` +`<:>blist` diff --git a/pages/linux/zile.md b/pages/linux/zile.md index 8e0f779bf5e19a..22359b141ebb74 100644 --- a/pages/linux/zile.md +++ b/pages/linux/zile.md @@ -13,11 +13,11 @@ - Save a file: -` + X, + S` +`` - Quit: -` + X, + C` +`` - Open a file at a specified line number: @@ -25,4 +25,4 @@ - Undo changes: -` + X, U` +``