remove rubbish

This commit is contained in:
Malin Freeborn 2022-06-18 15:45:10 +02:00
parent a28fbe91c0
commit 320da6b5a0
Signed by: andonome
GPG Key ID: 52295D2377F4D70F
3 changed files with 0 additions and 111 deletions

View File

@ -1,29 +0,0 @@
---
title: "signal"
tags: [ "Documentation", "Chat" ]
---
> yay -S signal-cli
Choose option 4 for Arch Arm - `jdk8-openjdk`.
Register your number, including the country's area code:
> signal-cli -u +381616643141 register
Or for landlines:
> signal-cli -u +381629775298 register --voice
Then verify:
> signal-cli -u +381616643141 verify 839-382
Send:
> signal-cli -u +381616643141 send -m "message" +381616643141
Receive all messages:
> signal-cli -u +381616643141 receive

View File

@ -1,26 +0,0 @@
---
title: "sdcv"
tags: [ "Documentation", "data" ]
---
# Install New Dictionaries
If the path doesn't exist then:
> sudo mkdir -p /usr/share/stardict/dic
Then move the dictionaries there.
# Words
To look up 'cat' in all languages, just do:
> sdcv cat
Look at dictionaries you have with:
> sdcv -l
To use a specific dictionary, like `en_rs`, do:
> sdcv -u en_rs

View File

@ -1,56 +0,0 @@
---
title: "screen"
tags: [ "Documentation", "Networking" ]
---
start session: screen
> screen -S 'name'
Make a screen with name 'name'
> screen -r 'name'
Reattach screen 'name'. Names need not be complete
> screen -ls
list screen sessions
> screen -X -S 'screen' 'command'
Send 'command' to 'screen', e.g. 'quit',
**Ctrl + a**
Screens have a list of commands to send
:? - keybindings
:" - list screen sessions
:A - rename window
:d - detatch
:k - kill the screen
:n - next screen
:p - previous screen
:\ - kill all screens
:| - create new pane
**Panes**
:| - create new pane
:w - list of windows, input name of window to summon
:C - clear pane
:d - detatch pane
:X - kill pane
:* - displays
:{/} - history
:i - info
:k - kill
:x - lockscreen
:L - login
:S - horizontal pane
:w - list of open windows
[n] - pick number 1-0 to pick a window
------Example----------
Start a new session with 'screen -S base' (which calls that session 'base'). Make a horizontal split with ^|, move into it with ^tab then create a new screen with ^c in that second split. The new screen can be named with ^A as 'music' before entering cmus. Next up, visualizations with vis in another screen. ^S makes a horizontal split and you can switch into that with ^tab to name is 'visualizations' and start vis. Switch back to the first screen and make another horizontal split and a screen in there with the name 'reading'. Inside reading you type ^? to get a list of useless screen commands. Reading can then be detatched with ^d and the horizontal split destroyed with ^X.
Those visualizations should be larger, so we enlarge them with Ctrl+: to send the command resize 50 and :resize -h 100.
Once done with reading, you can destroy it wil ^k then destroy the lot once done with ^\. Outside the screens entirely you can ensure complete death with 'killall screen'.
----------------------