Fiz typos

This commit is contained in:
Jose 2023-07-04 10:23:52 -03:00
parent e87b40ee92
commit c4325d5a9e
4 changed files with 16 additions and 11 deletions

View File

@ -17,7 +17,7 @@ opportunity to learn about computers, files, directories and programs.
** Appearance, screens
* [[./tutorial/i3wm_screens.org][xrandr: working with two screens in i3-wm]]
* [[./tutorial/i3wm_screens.org][xrandr: working with multiple screens in i3-windows manager]]
** Manuals, documentation

View File

@ -21,8 +21,11 @@ You can redirect the output to a file and make a patch: a file containing the di
** Comparing directories
Some arguments may be hepful to have an output showing the differences between two directories:
~--brief~ (show only the differences) and ~-r~ (compare the directories that are located within the main directory also)
Some arguments may be hepful to have an output showing the differences between
two directories:
* ~--brief~ (show only the differences) and
* ~-r~ (compare the directories that are located within the main directory also)
#+begin_example bash
diff --brief -r directory1 directory2
@ -30,8 +33,8 @@ Some arguments may be hepful to have an output showing the differences between t
Another approach to compare all the files within each directory is to use:
- ~q~ : Shows only differences
- ~r~ : Run the command recursively
* ~q~ : Shows only differences
* ~r~ : Run the command recursively
#+begin_example bash
diff -qr directory1 directory2

View File

@ -1,4 +1,5 @@
#+options: toc:nil num:nil
#+date: 2023-11-24
* How to use "xrandr" to use multiple screens in i3-wm
@ -10,7 +11,9 @@ So you can use the command line to solve the problem.
** ~xrandr~ command
~xrandr~ is a command line interface to RandR extension in GNU systems.
~xrandr~ is a command line interface to RandR extension in GNU systems. [[https://wiki.archlinux.org/title/Xrandr][RandR]]
(resize and rotate)is a communication protocol that allows to change the
appearance of X Window System.
From the manual:
@ -41,7 +44,6 @@ That's all!
You are good to use the new screen in a second workspace. Check the i3-wm userguide for more information.
** References
- [[https://i3wm.org/docs/userguide.html#_configuring_your_monitors][i3-wm documentation: configuring monitors]]

View File

@ -10,13 +10,13 @@ The command accepts arguments:
First use the source, then the destination
#+begin_src sh
#+begin_example sh
rsync -rav /home/user/Documents /run/media/user/disk/backup/
#+end_src
#+end_example
~rsync~ can be also used with selective copyng based on file type
#+begin_src sh
#+begin_example sh
rsync /home/user/Desktop/*.jpg /home/user/Desktop/backupdata/
#+end_src
#+end_example