poetician

Rofi-shortcuts-config | Rolling Edition

Oct 1st, 2020 (edited)
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 93.03 KB | None | 0 0
  1. ##################################### TABLE OF CONTENTS #####################################
  2. * V I M
  3. - M o v e m e n t.
  4. - I n s e r t m o d e.
  5. - E d i t.
  6. - V i s u a l m o d e.
  7. - V i s u a l c o m m a n d s.
  8. - C u t & p a s t e.
  9. - S e a r c h & r e p l a c e.
  10. - S e a r c h m u l t i - f i l e.
  11. - E x i t.
  12. - M u l t i f i l e (b u f f e r s).
  13. - T a b s.
  14. - S e s s i o n s.
  15. - C o m m a n d L i n e.
  16. - P l u g i n s.
  17. * S U B L I M E
  18. * I 3 W M
  19. - B a s e.
  20. - U t i l i t i e s.
  21. - M u l t i m e d i a c o n t r o l.
  22. * R A N G E R
  23. - B o o k m a r k s.
  24. - t a b s.
  25. - R a n g e r m o v e m e n t.
  26. - R a n g e r f i l e s.
  27. - R a n g e r c o m m a n d s.
  28. - F i l e s u b s t i t u t i n g.
  29. - C u s t o m.
  30. * T M U X
  31. - S e s s i o n s.
  32. - W i n d o w s.
  33. - P a n e s.
  34. - S y n c.
  35. * T I L I X
  36. - A p p l i c a t i o n.
  37. - t a b s (s e s s i o n s).
  38. - C o l u m n s.
  39. - R e s i z e c o l u m n.
  40. - S e a r c h.
  41. * T E R M I N A T O R
  42. - C r e a t i o n & d e s t r u c t i o n.
  43. - N a v e g a t i o n.
  44. - O r g a n i z a t i o n.
  45. - M i s c e l a n e o u s.
  46. - G r o u p i n g & B r o a d c a s t i n g.
  47. * F I R E F O X
  48. - C u r r e n t p a g e.
  49. - T a b s.
  50. - H i s t o r y
  51. - B o o k m a r k s.
  52. - T o o l s.
  53. - P d f.
  54. - M i s c.
  55. * V I M I U M C
  56. - V i m i u m c n a v i g a t i o n.
  57. - V o m n i b a r.
  58. - F i n d.
  59. - N a v i g a t i n g h i s t o r y.
  60. - T a b s.
  61. * T H U N D E R D B I R D
  62. - B a s e.
  63. - E m a i l.
  64. - C a l e n d a r.
  65. - T a s k s.
  66. - P l u g i n s.
  67. * L I B R E O F F I C E W R I T E R
  68. - F u n c t i o n k e y s.
  69. - B a s e.
  70. - P a r a g r a p h s.
  71. - T a b l e s.
  72. - M o v i n g o b j e c t s.
  73. * L I B R E O F F I C E C A L C
  74. - N a v i g a t i o n.
  75. - F u n c t i o n k e y s.
  76. - F o r m a t c e l l s.
  77. - P i v o t t a b l e.
  78. * C L I P I T
  79. * N E M O
  80. - G e n e r a l
  81. - O p e n i n g
  82. - T a b
  83. - N a v i g a t i o n
  84. - V i e w
  85. - E d i t
  86. * B L E N D E R
  87. - F i l e O p e r a t i o n s
  88. - E d i t i n g
  89. * G I M P
  90. - F i l e M e n u
  91. - E d i t M e n u
  92. - S e l e c t M e n u
  93. - V i e w M e n u
  94. - I m a g e M e n u
  95. - L a y e r M e n u
  96. - T o o l s M e n u
  97. - S e l e c t
  98. - P a i n t
  99. - T r a n s f o r m
  100. - G e n e r a l
  101. - F i l t e r s M e n u
  102. - W i n d o w M e n u
  103. - H e l p M e n u
  104. * P O E T I C I A N A L I A S E S
  105. * F R A N Z
  106. * H E X C H A T
  107. * D I S C O R D
  108. * R O F I
  109.  
  110. * I N K S C A P E [todo]
  111. * S C R I B U S [todo]
  112. * S Y N F Y G [todo]
  113. * L I G H T W O R K S [todo]
  114. * N A T R O N [todo]
  115.  
  116. ###################################### VIM SHORTCUTS ########################################
  117. --------------------------------------- VIM MOVEMENT ----------------------------------------
  118. vim move: h # left
  119. vim move: j # down
  120. vim move: k # up
  121. vim move: l # right
  122. vim move: H # to top of screen
  123. vim move: M # to middle of screen
  124. vim move: L # to bottom of screen
  125. vim move: w # jump forwards to the start of a word
  126. vim move: W # jump forwards to the start of a word (words can contain punctuation)
  127. vim move: e # jump forwards to the end of a word
  128. vim move: E # jump forwards to the end of a word (words can contain punctuation)
  129. vim move: b # jump backwards to the start of a word
  130. vim move: B # jump backwards to the start of a word (words can contain punctuation)
  131. vim move: 0 # jump to the start of the line
  132. vim move: ^ # jump to the first non-blank character of the line
  133. vim move: $ # jump to the end of the line
  134. vim move: g_ # jump to the last non-blank character of the line
  135. vim move: gg # go to the first line of the document
  136. vim move: G # go to the last line of the document
  137. vim move: 5G # go to line 5
  138. vim move: fx # jump to next occurrence of character x
  139. vim move: tx # jump to before next occurrence of character x
  140. vim move: } # jump to next paragraph (or function/block, when editing code)
  141. vim move: { # jump to previous paragraph (or function/block, when editing code)
  142. vim move: zz # center cursor on screen
  143. vim move: Ctrl + b # move back one full screen
  144. vim move: Ctrl + f # move forward one full screen
  145. vim move: Ctrl + d # move forward 1/2 a screen
  146. vim move: Ctrl + u # move back 1/2 a screen
  147. vim move: lead + hjkl # move window
  148. vim move: lead+cd # cd current file's dir
  149. -------------------------------------- VIM INSERT MODE --------------------------------------
  150. vim insert: i # insert before the cursor
  151. vim insert: I # insert at the beginning of the line
  152. vim insert: a # insert (append) after the cursor
  153. vim insert: A # insert (append) at the end of the line
  154. vim insert: o # append (open) a new line below the current line
  155. vim insert: O # append (open) a new line above the current line
  156. vim insert: ea # insert (append) at the end of the word
  157. vim insert: Esc # exit insert mode
  158. ---------------------------------------- VIM EDIT -------------------------------------------
  159. vim edit: r # replace a single character
  160. vim edit: J # join line below to the current one
  161. vim edit: cc # change (replace) entire line
  162. vim edit: cw # change (replace) to the start of the next word
  163. vim edit: ce # change (replace) to the end of the next word
  164. vim edit: cb # change (replace) to the start of the previous word
  165. vim edit: c0 # change (replace) to the start of the line
  166. vim edit: c$ # change (replace) to the end of the line
  167. vim edit: s # delete character and substitute text
  168. vim edit: S # delete line and substitute text (same as cc)
  169. vim edit: xp # transpose two letters (delete and paste)
  170. vim edit: . # repeat last command
  171. vim edit: u # undo
  172. vim edit: Ctrl + r # redo
  173. ------------------------------------- VIM VISUAL MODE ---------------------------------------
  174. vim visual: v # start visual mode, mark lines, then do a command (like y-yank)
  175. vim visual: V # start linewise visual mode
  176. vim visual: o # move to other end of marked area
  177. vim visual: O # move to other corner of block
  178. vim visual: aw # mark a word
  179. vim visual: ab # a block with ()
  180. vim visual: aB # a block with {}
  181. vim visual: ib # inner block with ()
  182. vim visual: iB # inner block with {}
  183. vim visual: Esc # exit visual mode
  184. vim visual: Ctrl + v # start visual block mode
  185. vim visual: lead + * # search current selection next
  186. vim visual: lead + # # search current selection prev
  187. vim visual: lead + gv # quick search selection
  188. vim visual: lead + r # search and replace selection
  189. vim visual: $1 $2 $3 $$ $q $e # surround sel. with (),[],[],"",'',""
  190. ---------------------------------- VIM VISUAL COMMANDS --------------------------------------
  191. vim visual c: > # shift text right
  192. vim visual c: < # shift text left
  193. vim visual c: y # yank (copy) marked text
  194. vim visual c: d # delete marked text
  195. vim visual c: ~ # switch case
  196. ------------------------------------ VIM CUT & PASTE ----------------------------------------
  197. vim cut paste: yy # yank (copy) a line
  198. vim cut paste: 2yy # yank (copy) 2 lines
  199. vim cut paste: yw # yank (copy) the characters of the word from the cursor position to the start of the next word
  200. vim cut paste: y$ # yank (copy) to end of line
  201. vim cut paste: p # put (paste) the clipboard after cursor
  202. vim cut paste: P # put (paste) before cursor
  203. vim cut paste: dd # delete (cut) a line
  204. vim cut paste: 2dd # delete (cut) 2 lines
  205. vim cut paste: dw # delete (cut) the characters of the word from the cursor position to the start of the next word
  206. vim cut paste: D # delete (cut) to the end of the line
  207. vim cut paste: d$ # delete (cut) to the end of the line
  208. vim cut paste: d^ # delete (cut) to the first non-blank character of the line
  209. vim cut paste: d0 # delete (cut) to the begining of the line
  210. vim cut paste: x # delete (cut) character
  211. vim cut paste: lead + pp # toggle paste mode
  212. --------------------------------- VIM SEARCH & REPLACE --------------------------------------
  213. vim search replace: spacebar # search
  214. vim search replace: ctrl+spacebar # search prev
  215. vim search replace: lead+g # quick search
  216. vim search replace: /pattern # search for pattern
  217. vim search replace: ?pattern # search backward for pattern
  218. vim search replace: \vpattern # 'very magic' pattern: non-alphanumeric characters are interpreted as special regex symbols (no escaping needed)
  219. vim search replace: n # repeat search in same direction
  220. vim search replace: N # repeat search in opposite direction
  221. vim search replace: :%s/old/new/g # replace all old with new throughout file
  222. vim search replace: :%s/old/new/gc # replace all old with new throughout file with confirmations
  223. vim search replace: :noh # remove highlighting of search matches
  224. ---------------------------------- VIM SEARCH MULTI FILE ------------------------------------
  225. vim search multi: :vimgrep /pattern/ {file} # search for pattern in multiple files
  226. vim search multi: :cn # jump to the next match
  227. vim search multi: :cp # jump to the previous match
  228. vim search multi: :copen # open a window containing the list of matches
  229. --------------------------------------- VIM EXIT --------------------------------------------
  230. vim exit: :w or :w /path # write (save) the file, but don't exit
  231. vim exit: :W # write (save) the file as sudo, but don't exit
  232. vim exit: :w !sudo tee % # write out the current file using sudo
  233. vim exit: :wq or :x or ZZ # write (save) and quit
  234. vim exit: :q # quit (fails if there are unsaved changes)
  235. vim exit: :q! or ZQ # quit and throw away unsaved changes
  236. vim exit: :bd or bd! # Close the file (buffer)
  237. ----------------------------------- VIM MULTIPLE FILES--------------------------------------
  238. vim multi file: lead+q # Open buffer for scripbble
  239. vim multi file: lead+bd # close current buffer
  240. vim multi file: lead+ba # close all buffers
  241. vim multi file: :e file # edit a file in a new buffer
  242. vim multi file: :bnext or :bn # go to the next buffer
  243. vim multi file: :bprev or :bp # go to the previous buffer
  244. vim multi file: :bd # delete a buffer (close a file)
  245. vim multi file: :ls # list all open buffers
  246. vim multi file: :sp file # open a file in a new buffer and split window
  247. vim multi file: :vsp file # open a file in a new buffer and vertically split window
  248. vim multi file: Ctrl + wv # split window vertically
  249. vim multi file: Ctrl + ws # split window horizontally
  250. vim multi file: Ctrl + ww # switch windows
  251. vim multi file: Ctrl + wq # quit a window
  252. vim multi file: Ctrl + wv # split window vertically
  253. vim multi file: Ctrl + wh # move cursor to the left window (vertical split)
  254. vim multi file: Ctrl + wl # move cursor to the right window (vertical split)
  255. vim multi file: Ctrl + wj # move cursor to the window below (horizontal split)
  256. vim multi file: Ctrl + wk # move cursor to the window above (horizontal split)
  257. --------------------------------------- VIM TABS --------------------------------------------
  258. vim tabs: lead+tn # open a file in a new tab
  259. vim tabs: lead+to # tab only
  260. vim tabs: lead+tc # tab close
  261. vim tabs: lead+tm # tab move
  262. vim tabs: lead+te # tab edit
  263. vim tabs: <number>gt # move to tab <number>
  264. vim tabs: Ctrl + wT # move the current split window into its own tab
  265. vim tabs: gt or :tabnext or :tabn # move to the next tab
  266. vim tabs: gT or :tabprev or :tabp # move to the previous tab
  267. vim tabs: :tabmove <number> # move current tab to the <number>th position (indexed from 0)
  268. vim tabs: :tabclose or :tabc # close the current tab and all its windows
  269. vim tabs: :tabonly or :tabo # close all tabs except for the current one
  270. vim tabs: :tabdo command # run the command on all tabs (e.g. :tabdo q - closes all opened tabs)
  271. --------------------------------------- VIM CODE FOLDING ------------------------------------
  272. vim folding: zo / zO # Open
  273. vim folding: zc / zC # Close
  274. vim folding: za / zA # Toggle
  275. vim folding: zv # Open folds for this line
  276. vim folding: zM # Close all
  277. vim folding: zR # Open all
  278. vim folding: zm # Fold more (foldlevel += 1)
  279. vim folding: zr # Fold less (foldlevel -= 1)
  280. vim folding: zx # Update folds
  281. vim folding: ADVICE # I recommend using vim-anyfold for better folding.
  282. --------------------------------------- VIM SESSIONS -----------------------------------------
  283. vim sessions: ":mksession /path" # Save the curren vim session.
  284. vim sessions: ":source /path" # Load the specified vim session.
  285. --------------------------------------- VIM COMMAND LINE -----------------------------------
  286. vim command line: iab # Insert timestamp
  287. vim command line: $q # Delete until the last slash
  288. --------------------------------------- VIM PLUGINS -----------------------------------------
  289. vim plugin nerdtree: lead+nn # Toggle tree
  290. vim plugin nerdtree: lead+nf # Tree from bookmark
  291. vim plugin nerdtree: lead+nb # Open Bookmark
  292. vim plugin buferexplorer: lead+o # See and manage current buffers
  293. vim plugin ctrlp.vim: lead+f # Recent files
  294. vim plugin ctrlp.vim: lead+b # Recent buffers
  295. vim plugin ctrlp.vim: <C-f> # Recent files on CWD
  296. vim plugin zen mode: lead+z # Toggle zen mode
  297. vim plugin mult cursors: '<C-s>' # multi_cursor_start_word_key
  298. vim plugin mult cursors: '<A-s>' # multi_cursor_select_all_word_key
  299. vim plugin mult cursors: 'g<C-s>' # multi_cursor_start_key
  300. vim plugin mult cursors: 'g<A-s>' # multi_cursor_select_all_key
  301. vim plugin mult cursors: '<C-s>' # multi_cursor_next_key
  302. vim plugin mult cursors: '<C-p>' # multi_cursor_prev_key
  303. vim plugin mult cursors: '<C-x>' # multi_cursor_skip_key
  304. vim plugin mult cursors: '<Esc>' # multi_cursor_quit_key
  305. vim plugin yankstack: <C-p> # yankstack_substitute_older_paste
  306. vim plugin yankstack: <C-n> # yankstack_substitute_newer_paste
  307. vim plugin ctrl-p: '<C-f>' # g:ctrlp_map
  308. vim plugin ctrl-p: <lead>j # :CtrlP<cr>
  309. vim plugin ctrl-p: <C-b> # :CtrlPBuffer<cr>
  310. vim plugin snipmate: <C-j> # autocomplete
  311. vim plugin surround: Si # Surrounds a string with _() gettext annotation
  312. vim plugin ale: <lead>a # Go to the next Ale syntax/lint error
  313. vim plugin spell checking: lead+ss # toggle spellcheck
  314. vim plugin cope: cc # Open errors bot-right
  315. vim plugin cope: lead+co # Open errors in new tab
  316. vim plugin cope: lead+n # Next-error
  317. vim plugin cope: lead+p # Prev-error
  318. vim plugin anyfold: [[ # Move to the beginning of the current block.
  319. vim plugin anyfold: ]] # Move to the end of the current block.
  320. vim plugin anyfold: ]k # Move to the end of the previous block.
  321. vim plugin anyfold: [j # Move to the beginning of the next block.
  322. #################################### SUBLIME SHORTCUTS ######################################
  323. sublime: ctrl + o # Open file
  324. sublime: ctrl + shift + o # Open directory
  325. sublime: ctrl + shift + s # Save as
  326. sublime: ctrl + n # New tab
  327. sublime: ctrl + w # Close tab
  328. sublime: mayus + alt + number # Set N of columns
  329. sublime: ctrl + number # Select column
  330. sublime: ctrl + mayus + number # Move tab to n column
  331. sublime: ctrl + shift + p # Change syntax
  332. sublime: ctrl + k + b # Toggle tree
  333.  
  334. ##################################### I3WM SHORTCUTS ########################################
  335. --------------------------------------- I3WM Navigation -------------------------------------
  336. i3wm navigation: $mod + number # Go to workspace
  337. i3wm navigation: $mod + minus # Go to $ws11
  338. i3wm navigation: $mod + equal # Go to $ws12
  339. i3wm navigation: $mod + bracketleft # Go to $ws13
  340. i3wm navigation: $mod + bracketright # Go to $ws14
  341.  
  342. i3wm navigation: $mod + next/prior # Go to next/prior workspace
  343. i3wm navigation: $mod + arrows # Select application in the current workspace
  344. i3wm navigation: $mod + shift + number # Move application to workspace
  345. i3wm navigation: $mod + shift + arrows # Move application
  346. i3wm navigation: $mod + Shift + minus # move container to workspace $ws11
  347. i3wm navigation: $mod + Shift + equal # move container to workspace $ws12
  348. i3wm navigation: $mod + Shift + bracketleft # move container to workspace $ws13
  349. i3wm navigation: $mod + Shift + bracketright # move container to workspace $ws14
  350.  
  351. i3wm navigation: $mod + a # Focus parent
  352. i3wm navigation: $mod + b # Bar mode invisible
  353. i3wm spices: $mod + c # Conky-toggle
  354. i3wm navigation: $mod + d # Focus child
  355. i3wm navigation: $mod + e # Layout toggle split
  356. i3wm navigation: $mod + f # Fullscreen
  357. i3wm navigation: $mod + h # Split horizontal
  358. i3wm navigation: $mod + i # Focus up
  359. i3wm navigation: $mod + j # Focus left
  360. i3wm navigation: $mod + k # Focus down
  361. i3wm navigation: $mod + l # Focus right
  362. i3wm navigation: $mod + m # Bar mode dock
  363. i3wm navigation: $mod + s # Layout stacking
  364. i3wm navigation: $mod + t # Layout title
  365. i3wm navigation: $mod + u # Border none
  366. i3wm navigation: $mod + v # Split vertical
  367. i3wm navigation: $mod + y # Border 1pixel
  368. i3wm navigation: $mod + z # Layout tabbed
  369. i3wm navigation: $mod + space # Toggle float
  370. i3wm navigation: $mod + Tab # workspace back_and_forth
  371.  
  372. i3wm navigation: Mod1 + Shift + Tab # workspace prev
  373. i3wm navigation: Mod1 + Tab # workspace next
  374. i3wm navigation: Mod1 + Ctrl + Left # workspace prev
  375. i3wm navigation: Mod1 + Ctrl + Right # workspace next
  376.  
  377. i3wm navigation: $mod + Ctrl + Right # resize grow width 2 px or 2 ppt
  378. i3wm navigation: $mod + Ctrl + Up # resize shrink height 2 px or 2 ppt
  379. i3wm navigation: $mod + Ctrl + Down # resize grow height 2 px or 2 ppt
  380. i3wm navigation: $mod + Ctrl + Left # resize shrink width 2 px or 2 ppt
  381.  
  382. i3wm navigation: $mod + Shift + a #
  383. i3wm navigation: $mod + Shift + b # exec --no-startup-id i3-msg border toggle
  384.  
  385. i3wm navigation: $mod + Shift + d #
  386. i3wm navigation: $mod + Shift + e #
  387. i3wm navigation: $mod + Shift + f #
  388. i3wm navigation: $mod + Shift + g #
  389. i3wm navigation: $mod + Shift + h #
  390. i3wm navigation: $mod + Shift + i #
  391. i3wm navigation: $mod + Shift + j #
  392. i3wm navigation: $mod + Shift + k #
  393. i3wm navigation: $mod + Shift + l #
  394. i3wm navigation: $mod + Shift + m #
  395. i3wm navigation: $mod + Shift + n #
  396. i3wm navigation: $mod + Shift + o #
  397. i3wm navigation: $mod + Shift + p #
  398. i3wm navigation: $mod + Shift + q #
  399.  
  400. i3wm navigation: $mod + Shift + s #
  401. i3wm navigation: $mod + Shift + t #
  402. i3wm navigation: $mod + Shift + u #
  403. i3wm navigation: $mod + Shift + v #
  404. i3wm navigation: $mod + Shift + w #
  405. i3wm navigation: $mod + Shift + x #
  406. i3wm navigation: $mod + Shift + y #
  407. i3wm navigation: $mod + Shift + z #
  408.  
  409. i3wm navigation: control + shift + a #
  410. i3wm navigation: control + shift + b #
  411. i3wm navigation: control + shift + c #
  412. i3wm navigation: control + Shift + d # gaps inner all set 0; gaps outer all set 40
  413. i3wm navigation: control + Shift + f # gaps inner all set 0; gaps outer all set 0
  414. i3wm navigation: control + shift + i # gaps inner current plus 10
  415. i3wm navigation: control + shift + j # gaps left current plus 10
  416. i3wm navigation: control + shift + k # gaps left current minus 10
  417. i3wm navigation: control + shift + l # gaps vertical current plus 10
  418. i3wm navigation: control + shift + m # gaps inner all set 5; gaps outer all set 5
  419. i3wm navigation: control + shift + n # gaps inner all set 40; gaps outer all set 0
  420. i3wm navigation: control + shift + o # gaps outer current plus 10
  421. i3wm navigation: control + shift + p #
  422. i3wm navigation: control + shift + q #
  423. i3wm navigation: control + shift + r #
  424. i3wm navigation: control + shift + s #
  425. i3wm navigation: control + shift + t #
  426. i3wm navigation: control + shift + u # gaps top current plus 20; gaps horizontal all plus 20
  427. i3wm navigation: control + Shift + w # gaps inner all set 10; gaps outer all set 30
  428. i3wm navigation: control + shift + y # gaps top current minus 20; gaps horizontal current minus 20
  429. i3wm navigation: control + shift + apostrophe # gaps right current minus 10
  430. i3wm navigation: control + shift + backslash # gaps outer current toggle 40
  431. i3wm navigation: control + shift + bracketleft # gaps horizontal current minus 5
  432. i3wm navigation: control + shift + bracketright # gaps horizontal current plus 10
  433. i3wm navigation: control + shift + comma # gaps vertical current minus 5
  434. i3wm navigation: control + shift + semicolon # gaps right current plus 10
  435. i3wm navigation: control + shift + minus # gaps inner current minus 5
  436. i3wm navigation: control + shift + plus # gaps outer current minus 5
  437. i3wm navigation: $mod + Tab # Workspace back_and_forth
  438.  
  439. --------------------------------- i3wm APPLICATIONS -------------------------------------------
  440.  
  441. i3wm application: $mod + F1 # Firefox
  442. i3wm application: $mod + F2 # Atom
  443. i3wm application: $mod + F3 # Cherrytree
  444. i3wm application: $mod + F4 # LibreOffice
  445. i3wm application: $mod + F5 # kdenlive
  446. i3wm application: $mod + F6 # Gimp
  447. i3wm application: $mod + F7 # Google Earth Pro
  448. i3wm application: $mod + F8 # OBS
  449. i3wm application: $mod + F9 # Meld
  450. i3wm application: $mod + F10 # VirtualBox
  451. i3wm application: $mod + F11 # Rofi Combi
  452. i3wm application: $mod + F12 # Rofi Window
  453. i3wm application: $mod + g # Rofi
  454. i3wm application: $mod + l # Lxappearance
  455. i3wm application: $mod + n # Nitrogen
  456. i3wm application: $mod + o # Opera
  457. i3wm application: $mod + p # Peek
  458. i3wm application: $mod + r # Flameshot
  459. i3wm application: $mod + w # ArcoLinux Welcome App
  460.  
  461. i3wm application: $mod + ctrl + a # Agenda (Gnome-calendar)
  462. i3wm application: $mod + ctrl + b # Blender
  463. i3wm application: $mod + ctrl + c # Galculator *
  464. i3wm application: $mod + ctrl + d # Audacious *
  465. i3wm application: $mod + ctrl + e #
  466. i3wm application: $mod + ctrl + f #
  467. i3wm application: $mod + ctrl + g # Geany
  468. i3wm application: $mod + ctrl + h #
  469. i3wm application: $mod + ctrl + i #
  470. i3wm application: $mod + ctrl + j #
  471. i3wm application: $mod + ctrl + k #
  472. i3wm application: $mod + ctrl + l #
  473. i3wm application: $mod + ctrl + m #
  474. i3wm application: $mod + ctrl + n #
  475. i3wm application: $mod + ctrl + o # Oomox
  476. i3wm application: $mod + ctrl + p #
  477. i3wm application: $mod + ctrl + q # Qt5ct
  478. i3wm application: $mod + ctrl + r # Rofi-shortcuts
  479. i3wm application: $mod + ctrl + s # Shutter
  480. i3wm application: $mod + ctrl + t # Cherrytree
  481. i3wm application: $mod + ctrl + u #
  482. i3wm application: $mod + ctrl + v # VirtManager
  483. i3wm application: $mod + ctrl + w #
  484. i3wm application: $mod + ctrl + x # Xscreensaver
  485. i3wm application: $mod + ctrl + y # Xfce4-dictionary
  486. i3wm application: $mod + ctrl + z #
  487.  
  488. i3wm base: $mod + Return # Alacritty
  489. i3wm base: $mod + x # Arcolinux Logout
  490. i3wm base: $mod + q # Kill
  491. i3wm base: $mod + Esc # XKill
  492.  
  493. i3wm base: $mod + Shift + r # Restart
  494. i3wm base: $mod + Shift + c # Reload
  495.  
  496. i3wm base: Mod1 + shift + slash # Send to Scratchpad
  497. i3wm base: Mod1 + slash # Toggle Scratchpad
  498.  
  499. #ᰜᰜᰜᰜᰜᰜ Variety with Wallpapers ᰜᰜᰜᰜᰜᰜ#
  500. i3wm variety: # trash wallpaper # mod1+t exec --no-startup-id variety -t
  501. i3wm variety: # next wallpaper # mod1+n exec --no-startup-id variety -n
  502. i3wm variety: # mod1+Right exec --no-startup-id variety -n
  503. i3wm variety: # previous wallpaper # mod1+p exec --no-startup-id variety -p
  504. i3wm variety: # mod1+Left exec --no-startup-id variety -p
  505. i3wm variety: # favorite wallpaper # mod1+f exec --no-startup-id variety -f
  506. i3wm variety: # pause wallpaper # mod1+Up exec --no-startup-id variety --pause
  507. i3wm variety: # resume wallpaper # mod1+Down exec --no-startup-id variety --resume
  508.  
  509. #ᰜᰜᰜᰜᰜᰜ Variety with Pywal ᰜᰜᰜᰜᰜᰜ#
  510. i3wm variety with pywall: # next wallpaper # mod1+Shift+n exec --no-startup-id variety -n && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  511. i3wm variety with pywall: # previous wallpaper # mod1+Shift+p exec --no-startup-id variety -p && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  512. i3wm variety with pywall: # trash wallpaper # mod1+Shift+t exec --no-startup-id variety -t && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  513. i3wm variety with pywall: # update wallpaper # mod1+Shift+u exec --no-startup-id wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)
  514.  
  515. -------------------------------- I3WM MULTIMEDIA CONTROLS -----------------------------------
  516. i3wm multi: # Mute
  517. i3wm multi: # Vol up
  518. i3wm multi: # Vol down
  519. i3wm multi: # Play/pause
  520. i3wm multi: # brightness up
  521. i3wm multi: # brightness down
  522. i3wm multi: # Toggle trackpad
  523.  
  524. ################################### RANGER SHORTCUTS ########################################
  525. ----------------------------------- RANGER BOOKMARKS ----------------------------------------
  526. ranger bookmarks: m - letter # Create bookmark
  527. ranger bookmarks: um - letter # Delete bookmark
  528. ranger bookmarks: ' or ` # Go to a bookmark
  529. ranger bookmarks: gh # Go to home
  530. ----------------------------------- RANGER TABS ---------------------------------------------
  531. ranger tabs: C-n # Create new tab
  532. ranger tabs: C-w # Close current tab
  533. ranger tabs: tab # Next tab
  534. ranger tabs: shift + tab # Previous tab
  535. ranger tabs: alt + [n] # goto / create [n] tab
  536. ----------------------------------- RANGER MOVEMENT -----------------------------------------
  537. ranger movement: k # up
  538. ranger movement: j # down
  539. ranger movement: h # parent directory
  540. ranger movement: l # subdirectory
  541. ranger movement: gg # go to top of list
  542. ranger movement: G # go t bottom of list
  543. ranger movement: J # half page down
  544. ranger movement: K # half page up
  545. ranger movement: H # History Back
  546. ranger movement: L # History Forward
  547. ----------------------------------- RANGER FILES --------------------------------------------
  548. ranger files: <Enter> # Open
  549. ranger files: r # open file with
  550. ranger files: z # toggle settings
  551. ranger files: o # change sort order
  552. ranger files: zh # view hidden files
  553. ranger files: cw # rename current file
  554. ranger files: yy # yank / copy
  555. ranger files: dd # cut
  556. ranger files: pp # paste
  557. ranger files: / # search for files :search
  558. ranger files: n # next match
  559. ranger files: N # prev match
  560. ranger files: <del> # Delete
  561. ranger: 1l # Unzip selected file (uncompress)
  562. ----------------------------------- RANGER COMMANDS -----------------------------------------
  563. ranger commands: : # Execute Range Command
  564. ranger commands: ! # Execute Shell Command
  565. ranger commands: chmod # Change file Permissions
  566. ranger commands: du # Disk Usage Current Directory
  567. ----------------------------------- FILE SUBSTITUTING ---------------------------------------
  568. ranger subst: %f # Substitute highlighted file
  569. ranger subst: %d # Substitute current directory
  570. ranger subst: %s # Substitute currently selected files
  571. ranger subst: %t # Substitute currently tagged files
  572. ranger subst: :bulkrename %s # Example for substitution
  573. ----------------------------------- RANGER CUSTOM -------------------------------------------
  574. ranger: cmd + f1 # Focus ranger
  575.  
  576. ##################################### TMMUX SHORTCUTS #######################################
  577. -------------------------------------- TMUX SESSIONS ----------------------------------------
  578. tmux sessions: mode -> s # Select session. Kill one with 'x'
  579. --------------------------------------- TMUX WINDOWS ----------------------------------------
  580. tmux windows mode -> w # Select window. Kill one with 'x'
  581. -------------------------------------- TMUX PANES -------------------------------------------
  582. tmux panes: mode -> alt + number # Choose a different pane layout. Kill one with 'exit'
  583. tmux panes: mode -> arrow # Select a pane'
  584. -------------------------------------- TMUX SYNC --------------------------------------------
  585. tmux sync: mode -> x # Toggle sync panes on/off
  586. ##################################### TILIX SHORTCUTS #######################################
  587. ------------------------------------ TILIX APPLICATION --------------------------------------
  588. tilix appl: F11 # Full screen
  589. tilix appl: F12 # Show sessions sidebar
  590. tilix appl: unasigned # Open settings
  591. tilix appl: unasigned # Open shortcuts cheatsheet
  592. --------------------------------- TILIX TABS (SESSIONS) ------------------------------------
  593. tilix tabs: mayus + ctrl + t # New session
  594. tilix tabs: mayus + ctrl + n # New window
  595. tilix tabs: ctrl + pg up # Next session
  596. tilix tabs: ctrl + pg down # Previous session
  597. tilix tabs: ctrl + alt + [n] # Show session n
  598. tilix tabs: ctrl + alt + [n] # Close session
  599. tilix tabs: mayus + ctrl + s # Save session
  600. tilix tabs: unasigned # Save session on file
  601. ------------------------------------ TILIX COLUMNS ------------------------------------------
  602. tilix columns: ctrl + alt + r # Split right
  603. tilix columns: ctrl + alt + d # Split down
  604. tilix columns: ctrl + alt + a # Split on aureal pattern
  605. tilix wind: alt + arrow # Select column
  606. --------------------------------- TILIX RESIZE COLUMN ---------------------------------------
  607. tilix resize: ctrl + alt + up # Resize up
  608. tilix resize: ctrl + alt + down # Resize down
  609. tilix resize: ctrl + alt + left # Resize left
  610. tilix resize: ctrl + alt + right # Resize right
  611. ---------------------------------- TILIX SEARCH --------------------------------------------
  612. tilix resize: ctrl + shift + f # Search
  613. tilix resize: ctrl + shift + g # Search next
  614. tilix resize: ctrl + shift + h # Search prev
  615.  
  616. ################################### TERMINATOR SHORTCUTS ####################################
  617. ------------------------------ TERMINATOR CREATION & DESTRUCTION ----------------------------
  618. terminator creation: Ctrl+Shift+O # Split terminals Horizontally
  619. terminator creation: Ctrl+Shift+E # Split terminals Vertically
  620. terminator creation: Ctrl+Shift+T # Open new tab
  621. terminator creation: Ctrl+Shift+I # Open a new window (as part of the same process).
  622. terminator creation: Alt + L # Open layout launcher
  623. terminator creation: Ctrl + shift + W # Close current terminal.
  624. terminator creation: Ctrl+Shift+Q # Close current window.
  625. ----------------------------------- TERMINATOR navigationEGATION -----------------------------------
  626. terminator navigationegation: Alt+Up # Move to the terminal above the current one.
  627. terminator navigationegation: Alt+Down # Move to the terminal below the current one.
  628. terminator navigationegation: Alt+Left # Move to the terminal left of the current one.
  629. terminator navigationegation: Alt+Right # Move to the terminal right of the current one.
  630. terminator navigationegation: Ctrl+PageDown # Move to next Tab.
  631. terminator navigationegation: Ctrl+PageUp # Move to previous Tab.
  632. terminator navigationegation: Ctrl+Shift+N or Ctrl+Tab # Move to next terminal within the same tab, use Ctrl+PageDown to move to the next tab. If cycle_term_tab is False, cycle within the same tab will be disabled.
  633. terminator navigationegation: Ctrl+Shift+P or Ctrl+Shift+Tab # Move to previous terminal within the same tab, use Ctrl+PageUp to move to the previous tab. If cycle_term_tab is False, cycle within the same tab will be disabled.
  634. ----------------------------------- TERMINATOR ORGANIZATION ---------------------------------
  635. terminator organ: Ctrl+Shift+Right # Move parent dragbar Right.
  636. terminator organ: Ctrl+Shift+Left # Move parent dragbar Left.
  637. terminator organ: Ctrl+Shift+Up # Move parent dragbar Up.
  638. terminator organ: Ctrl+Shift+Down # Move parent dragbar Down.
  639. terminator organ: Super+R # Rotate terminals clockwise.
  640. terminator organ: Drag and Drop # Or you could just drag & drop.
  641. terminator organ: Ctrl+Shift+PageDown # Swap tab position with next Tab.
  642. terminator organ: Ctrl+Shift+PageUp # Swap tab position with previous Tab.
  643. ----------------------------------- TERMINATORMISCELANEOUS ----------------------------------
  644. terminator misc: Ctrl+Shift+C # Copy selected text to clipboard.
  645. terminator misc: Ctrl+Shift+V # Paste clipboard text.
  646. terminator misc: Ctrl+Shift+S # Hide/Show Scrollbar.
  647. terminator misc: Ctrl+Shift+F # Search within terminal scrollback.
  648. terminator misc: Ctrl+Shift+R # Reset terminal state.
  649. terminator misc: Ctrl+Shift+G # Reset terminal state and clear window.
  650. terminator misc: Ctrl+Plus (+) # Increase font size. Note: This may require you to press shift, depending on your keyboard.
  651. terminator misc: Ctrl+Minus (-) # Decrease font size. Note: This may require you to press shift, depending on your keyboard.
  652. terminator misc: Ctrl+Zero (0) # Restore font size to original setting.
  653. terminator misc: Ctrl+Alt+W # Rename window title.
  654. terminator misc: Ctrl+Alt+A # Rename tab title.
  655. terminator misc: Ctrl+Alt+X # Rename terminal title.
  656. terminator misc: Super+1 # Insert terminal number, i.e. 1 to 12.
  657. terminator misc: Super+0 # Insert padded terminal number, i.e. 01 to 12
  658. --------------------------------- TERMINATOR GROUPING & BROADCASTING ------------------------
  659. terminator broad: F11 # Toggle window to fullscreen.
  660. terminator broad: Ctrl +Shift + X # Toggle between showing all terminals and only showing the current one (maximise).
  661. terminator broad: Ctrl+Shift+Z # Toggle between showing all terminals and only showing a scaled version of the current one (zoom).
  662. terminator broad: Ctrl+Shift+Alt+A # Hide the initial window. Note that this is a global binding, and can only be bound once.
  663. terminator broad: Super+T # Group all terminals in the current tab so input sent to one of them, goes to all terminals in the current tab.
  664. terminator broad: Super+Shift+T # Remove grouping from all terminals in the current tab.
  665. terminator broad: Super+G # Group all terminals so that any input sent to one of them, goes to all of them.
  666. terminator broad: Super+Shift+G # Remove grouping from all terminals.
  667. terminator broad: Alt+A # Broadcast to All terminals.
  668. terminator broad: Alt+G # Broadcast to Grouped terminals.
  669. terminator broad: Alt+O # Broadcast Off.
  670.  
  671. ################################### FIREFOX SHORTCUTS #######################################
  672. --------------------------------- FIREFOX CURRENT PAGE ------------------------
  673. firefox current pag: F6 # move to the next frame
  674. firefox current pag: Shift + F6 # move to the prev frame
  675. --------------------------------- FIREFOX EDITING ------------------------
  676. firefox edit: Ctrl + Backspace # Delete Word to the Left
  677. firefox edit: Ctrl + Del # Delete Word to the Right
  678. firefox edit: Ctrl + ← # Go one Word to the Left
  679. firefox edit: Ctrl + → # Go one Word to the Right
  680. firefox edit: Ctrl + Home # Go to Beginning of Text
  681. firefox edit: Ctrl + End # Go to End of Text
  682. --------------------------------- FIREFOX SEARCH ------------------------
  683. firefox search: Ctrl + F # Find
  684. firefox search: F3 Ctrl + G # Find Again
  685. firefox search: Shift + F3 Ctrl + Shift + G # Find Previous
  686. firefox search: ' # Quick Find within link-text only
  687. firefox search: / # Quick Find
  688. firefox search: Esc # Close the Find or Quick Find bar - when the Find or Quick Find bar is focused
  689. firefox search: Alt + ↓↑ # Switch Search Engine - after you have written something in the address bar
  690. firefox search: Ctrl + K Ctrl + J # Focus Address bar for Web Search (writes "? " there) - if search bar is not shown
  691. firefox search: Ctrl + K Ctrl + J # Focus Search bar - if search bar is shown
  692. firefox search: Ctrl + ↓ Ctrl + ↑ # Change the Default Search Engine - in the Search bar or the Search field of the New Tab page.
  693. firefox search: Alt + ↓ Alt + ↑ F4 # View menu to switch, add or manage search engines - when the Search bar is focused
  694. --------------------------------- FIREFOX TABS ------------------------
  695. firefox tabs: Ctrl + W Ctrl + F4 # Close Tab - except for Pinned Tabs
  696. firefox tabs: Ctrl + Shift + W Alt + F4 # Close Window
  697. firefox tabs: Ctrl + Tab # Cycle through Tabs in Recently Used Order -if enabled in Preferences
  698. firefox tabs: Ctrl + Q # Quit
  699. firefox tabs: Ctrl+Page Up, Ctrl+Shift+Tab # Go one Tab to the Left
  700. firefox tabs: Ctrl + Page Down Ctrl + Tab # Go one Tab to the Right * if the setting Ctrl+Tab cycles through tabs in recently used order is disabled in Preferences
  701. firefox tabs: Alt + 1 # to 8 Go to Tab 1 to 8
  702. firefox tabs: Alt + 9 # Go to Last Tab
  703. firefox tabs: Ctrl + Shift + Page Up # Move Tab Left
  704. firefox tabs: Ctrl + Shift + Page Down # Move Tab Right
  705. firefox tabs: Ctrl + Shift + Home # Move Tab to start - requires the currently selected tab to be "in focus" for instance, by hitting Alt + D to focus the address bar, and then Shift + Tab until you reach the browser tab bar.
  706. firefox tabs: Ctrl + Shift + End # Move Tab to end - requires the currently selected tab to be "in focus" for instance, by hitting Alt + D to focus the address bar, and then Shift + Tab until you reach the browser tab bar.
  707. firefox tabs: Ctrl + M # Mute/Unmute Audio
  708. firefox tabs: Ctrl + T # New Tab
  709. firefox tabs: Ctrl + N # New Window
  710. firefox tabs: Ctrl + Shift + P # New Private Window
  711. firefox tabs: Alt + Shift + Enter # Open Address or Search in New Background Tab - from address bar
  712. firefox tabs: Alt + Enter # Open Address or Search in New Foreground Tab - from address bar or Search bar
  713. firefox tabs: Shift + Enter # Open Address or Search in New Window - from address bar or the Search field on the New Tab page
  714. firefox tabs: Ctrl + Enter # Open Search in New Background Tab - from the Search field on the New Tab page. (see note, below)
  715. firefox tabs: Ctrl + Shift + Enter # Open Search in New Foreground Tab - from the Search field on the New Tab page. Note: The Foreground and Background Tab shortcuts are switched if the setting When you open a link in a new tab, switch to it immediately is enabled in Preferences
  716. firefox tabs: Enter # Open Focused Bookmark or Link in Current Tab
  717. firefox tabs: Ctrl + Enter # Open Focused Bookmark in New Foreground Tab
  718. firefox tabs: Ctrl + Shift + Enter # Open Focused Bookmark in New Background Tab
  719. firefox tabs: Ctrl + Enter # Open Focused Link in New Background Tab (see note, below)
  720. firefox tabs: Ctrl + Shift + Enter # Open Focused Link in New Foreground Tab Note: The Foreground and Background Tab shortcuts are switched if the setting When you open a link in a new tab, switch to it immediately is enabled in Preferences
  721. firefox tabs: Shift + Enter # Open Focused Bookmark or Link in New Window
  722. firefox tabs: Ctrl + Shift + T # Undo Close Tab
  723. firefox tabs: Ctrl + Shift + N # Undo Close Window
  724. firefox tabs: Ctrl + Shift + X # Moves the URL left or right (if cursor is in the address bar)
  725. --------------------------------- FIREFOX HISTORY ------------------------
  726. firefox history: Ctrl + H # History sidebar
  727. firefox history: Ctrl + Shift + H # Library window (History)
  728. firefox history: Ctrl + Shift + Del # Clear Recent History
  729. --------------------------------- FIREFOX BOOKMARKS ------------------------
  730. firefox marks: Ctrl + D # Bookmark This Page
  731. firefox marks: Ctrl + B # Bookmarks sidebar
  732. firefox marks: Ctrl + Shift + O # Library window (Bookmarks)
  733. --------------------------------- FIREFOX TOOLS ------------------------
  734. firefox tools: Ctrl + Shift + Y # Downloads
  735. firefox tools: Ctrl + Shift + A # Add-ons
  736. firefox tools: F12, Ctrl + Shift + I # Toggle Developer Tools
  737. firefox tools: Ctrl + Shift + K # Web Console
  738. firefox tools: Ctrl + Shift + C # Inspector
  739. firefox tools: Ctrl + Shift + S # Debugger
  740. firefox tools: Shift + F7 # Style Editor
  741. firefox tools: Shift + F5 # Profiler
  742. firefox tools: Ctrl + Shift + E # Network
  743. firefox tools: Shift + F2 # Developer Toolbar
  744. firefox tools: Ctrl + Shift + M # Responsive Design View
  745. firefox tools: Shift + F4 # Scratchpad
  746. firefox tools: Ctrl + U # Page Source
  747. firefox tools: Ctrl + Shift + J # Browser Console
  748. firefox tools: Ctrl + I # Page Info
  749. --------------------------------- FIREFOX PDF VIEWER ------------------------
  750. firefox pdf: N or J or → # Next page
  751. firefox pdf: P or K or ← # Previous page
  752. firefox pdf: Ctrl + # Zoom in
  753. firefox pdf: Ctrl - # Zoom out
  754. firefox pdf: Ctrl + 0 # Automatic Zoom
  755. firefox pdf: R # Rotate the document clockwise
  756. firefox pdf: Shift + R # Rotate counterclockwise
  757. firefox pdf: Ctrl + Alt + P # Switch to Presentation Mode
  758. firefox pdf: S # Choose Text Selection Tool
  759. firefox pdf: H # Choose Hand Tool
  760. firefox pdf: Ctrl + Alt + G # Focus the Page Number input box
  761. --------------------------------- FIREFOX MISCELANEOUS ------------------------
  762. firefox misc: Ctrl + Enter # Complete .com Address
  763. firefox misc: Shift + Del # Delete Selected Autocomplete Entry
  764. firefox misc: F11 # Toggle Full Screen
  765. firefox misc: Alt or F10 # Toggle Menu Bar activation (showing it temporarily when hidden)
  766. firefox misc: Ctrl + Alt + R # Toggle Reader Mode
  767. firefox misc: F7 # Caret Browsing
  768. firefox misc: F6, Alt + D, Ctrl + L # Focus Address Bar
  769. firefox misc: F6, Ctrl + F # Focus Search Field in Library
  770. firefox misc: Esc # Stop Autoscroll Mode
  771. firefox misc: Shift + F10 # Toggle Context Menu
  772. --------------------------------- FIREFOX SIMPLE TABS GROUPS ------------------------
  773. firefox misc: Ctrl + space # Show groups
  774. firefox misc: ctrl+1-9 # Change to a group
  775.  
  776. ################################### VIMIUMC SHORTCUTS #######################################
  777. ---------------------------------- VIMIUMC navigation --------------------------------------
  778. vimiumc navigation: ? # This help
  779. vimiumc navigation: <c-e>, j # Scroll down
  780. vimiumc navigation: <c-y>, k # Scroll up
  781. vimiumc navigation: h # Scroll left
  782. vimiumc navigation: l # Scroll right
  783. vimiumc navigation: gg # Scroll to the top of the page
  784. vimiumc navigation: G # Scroll to the bottom of the page
  785. vimiumc navigation: zH # Scroll all the way to the left
  786. vimiumc navigation: zL # Scroll all the way to the right
  787. vimiumc navigation: d # Scroll a page down
  788. vimiumc navigation: u # Scroll a page up
  789. vimiumc navigation: r # Reload current frame (use hard)
  790. vimiumc navigation: <a-r> # Reload N tab(s) (use hard, bypassCache)
  791. vimiumc navigation: R # Reload N-th tab (use hard)
  792. vimiumc navigation: gs # View page source
  793. vimiumc navigation: yy # Copy page's info (use type=url/title/frame, decoded)
  794. vimiumc navigation: <f2>, <s-f1> # Blur activeElement or refocus it (use flash, select=""/all/all-line/start/end)
  795. vimiumc navigation: <f1> # Simulate backspace once if focused
  796. vimiumc navigation: yf # Copy a link URL to the clipboard
  797. vimiumc navigation: p # Open the clipboard's URL in the current tab
  798. vimiumc navigation: P # Open the clipboard's URL in N new tab(s)
  799. vimiumc navigation: gu # Go up the URL hierarchy (use trailingSlash=null/true/false)
  800. vimiumc navigation: gU # Go to root of current URL hierarchy
  801. vimiumc navigation: gi # Focus the N-th visible text box on the page and cycle using tab (use keep, select=""/all/all-line/start/end)
  802. vimiumc navigation: f # Open a link in the current tab (use button=""/right, touch=false/true/"auto")
  803. vimiumc navigation: F # Open a link in a new tab
  804. vimiumc navigation: <a-f> # Open multiple links in a new tab
  805. vimiumc navigation: [[ # Follow the link labeled previous or "<"
  806. vimiumc navigation: ]] # Follow the link labeled next or ">"
  807. vimiumc navigation: gf # Cycle forward to the next frame on the page
  808. vimiumc navigation: gF # Select the tab's main/top frame
  809. vimiumc navigation: i # Enter insert mode (use key:string)
  810. vimiumc navigation: <f8>, v # Enter visual mode
  811. vimiumc navigation: V # Enter visual line mode
  812. vimiumc navigation: m # Create a new mark (use swap)
  813. vimiumc navigation: ` # Go to a mark (use prefix=true, swap, mapKey)
  814. ----------------------------------- VIMIUMC VOMNIBAR ----------------------------------------
  815. vimiumc vomni: O # Open URL, history, ... in a new tab (use keyword, url)
  816. vimiumc vomni: b # Open a bookmark
  817. vimiumc vomni:B # Open a bookmark in a new tab
  818. vimiumc vomni:T # Search through your open t a b s?
  819. vimiumc vomni:ge # Edit the current URL
  820. vimiumc vomni:gE # Edit the current URL and open in a new tab
  821. vimiumc vomni:gn # Toggle styles of vomnibar page (use style=dark, current)
  822. ------------------------------------- VIMIUMC FIND ------------------------------------------
  823. vimiumc find: / # Enter find mode (use last, selected=true)
  824. vimiumc find: n # Cycle forward to the next find match
  825. vimiumc find: N # Cycle backward to the previous find match
  826. vimiumc find: <a-n> # Find the second or even earlier query words
  827. -------------------------------- VIMIUMC navigationIGATING HISTORY ---------------------------------
  828. vimiumc history: H # Go back in history (use reuse=-2/-1)
  829. vimiumc history: L # Go forward in history (use reuse=-2/-1)
  830. vimiumc history: <a-R> # Reopen current page
  831. ------------------------------------- VIMIUMC TABS -------------------------------------
  832. vimiumc tabs: gt, K, <a-v>, <a-s-c> # Go one tab right
  833. vimiumc tabs: gT, J, <a-c> # Go one tab left
  834. vimiumc tabs: g0 # Go to the first N-th tab
  835. vimiumc tabs: g$ # Go to the last N-th tab
  836. vimiumc tabs: t, <a-t> # Create new tab(s)
  837. vimiumc tabs: yt # Duplicate current tab for N times
  838. vimiumc tabs: x # Close N tab(s) (use mayClose, goto=""/left/right/previous)
  839. vimiumc tabs: X # Restore closed tab(s)
  840. vimiumc tabs: W # Move tab to next window (use right)
  841. vimiumc tabs: <a-p> # Pin or unpin N tab(s)
  842. vimiumc tabs: <a-m> # Mute or unmute current tab (use all, other)
  843. vimiumc tabs: ^ # Go to previously-visited tab on current window
  844. vimiumc tabs: << # Move tab to the left
  845. vimiumc tabs: >> # Move tab to the right
  846.  
  847. #################################### FRANZ SHORTCUTS ########################################
  848. franz: ctrl-1-9 # Select service
  849. franz: Tab # Move inside of the service
  850.  
  851. ################################### HEXCHAT SHORTCUTS #######################################
  852. hexchat: ctrl+Page # Next or prev channel of the list
  853. hexchat: alt-1-9 # Go to channel
  854. hexchat: Shift-Ctrl-page # Change the order of the servers in the list
  855. hexchat: alt+left or right # Change tab, if they are enabled
  856. hexchat: Shift-page # Next or prev nickname on the list
  857. hexchat: Tab # Complete the command
  858. hexchat: Ctrl+S # Open server memu
  859.  
  860. ################################### DISCORD SHORTCUTS #######################################
  861. discord: Ctrl + ALT + / # navigationigate Between Servers
  862. discord: ALT + / # navigationigate Between Channels
  863. discord: ALT + Shift + / # navigationigate Between Unread Channels
  864. discord: Ctrl + Shift + ALT + / # navigationigate Between Unread Channels with Mentions
  865. discord: Escape # Mark Channel as Read
  866. discord: Shift + Escape # Mark Server Read
  867. discord: Ctrl + Slash # Toggle Hotkeys
  868. discord: Ctrl + B # Return to Previous Text Channel
  869. discord: Ctrl + ALT + A # Return to Active Audio Channel
  870. discord: Ctrl + P # Toggle Pins Popout
  871. discord: Ctrl + I # Toggle Mentions Popout
  872. discord: Ctrl + U # Toggle Channel Member List
  873. discord: Ctrl + E # Toggle Emoji Picker
  874. discord: Shift + Page Up # Jump to Oldest Unread Message
  875. discord: Ctrl + Shift + N # Create or Join a Server
  876. discord: Ctrl + Enter # Answer Incoming Call
  877. discord: Ctrl + K # Find or Start a Direct Message
  878. discord: Escape # Decline Incoming Call
  879. discord: Ctrl + Shift + T # Create A Private Group
  880. discord: Ctrl + [ # Start Call in Private Message or Group
  881. discord: Tab # Focus Text Area
  882. discord: ALT + ← # Return to Connected Audio Channel
  883. discord: ALT + → # Return to Previous Text Channel
  884. discord: Ctrl + Shift + M # Toggle Mute
  885. discord: Ctrl + Shift + D # Toggle Deafen
  886. discord: Ctrl + Shift + H # Get Help
  887. discord: Ctrl + Shift + U # Upload a File
  888.  
  889. #################################### ROFI SHORTCUTS #########################################
  890. rofi: Ctrl-v # Insert: Paste from clipboard
  891. rofi: Ctrl-Shift-v, Shift-Insert: # Paste primary selection
  892. rofi: Ctrl-u # Clear the line
  893. rofi: Ctrl- # Beginning of line
  894. rofi: Ctrl-e # End of line
  895. rofi: Ctrl-f Right # Forward one character
  896. rofi: Alt-f, Ctrl-Right # Forward one word
  897. rofi: Ctrl-b, Left # Back one character
  898. rofi: Alt-b, Ctrl-Left # Back one word
  899. rofi: Ctrl-d, Delete # Delete character
  900. rofi: Ctrl-Alt-d # Delete word
  901. rofi: Ctrl-h, Backspace, Shift-Backspace # Backspace (delete previous character)
  902. rofi: Ctrl-Alt-h # Delete previous word
  903. rofi: Ctrl-j,Ctrl-m,Enter # Accept entry
  904. rofi: Ctrl-n,Down # Select next entry
  905. rofi: Ctrl-p,Up # Select previous entry
  906. rofi: Page Up # Go to previous page
  907. rofi: Page Down # Go to next page
  908. rofi: Ctrl-Page Up # Go to previous column
  909. rofi: Ctrl-Page Down # Go to next column
  910. rofi: Ctrl-Enter # Use entered text as a command (in ssh/run modi)
  911. rofi: Shift-Enter # Launch the application in a terminal (in run mode)
  912. rofi: Shift-Enter # Return the selected entry and move to the next item while keeping rofi open. (in dmenu)
  913. rofi: Shift-Right # Switch to the next mode. The list can be customized with the -switchers argument.
  914. rofi: Shift-Left # Switch to the previous mode. The list can be customized with the -switchers argument.
  915. rofi: Ctrl-Tab # Switch to the next mode. The list can be customized with the -switchers argument.
  916. rofi: Ctrl-Shift-Tab # Switch to the previous mode. The list can be customized with the -switchers argument.
  917. rofi: Ctrl-space # Set selected item as input text.
  918. rofi: Shift-Del # Delete entry from history.
  919. rofi: grave # Toggle case sensitivity.
  920. rofi: Alt-grave # Toggle sorting.
  921. rofi: Alt-Shift-S # Take a screenshot and store it in the Pictures directory.
  922.  
  923. ################################# THUNDERBIRD SHORTCUTS #####################################
  924. ------------------------------------- THUNDERBIRD BASE -------------------------------------
  925. thunderbird base: F10, ctrl+f # Open menu
  926. thunderbird base: ctrl+w # Close tab
  927. thunderbird base: ctrl+pag # Next/prev tab
  928. thunderbird base: ctrl+pag # Next/prev tab
  929. thunderbird base: F11 # Open sidebar
  930. ------------------------------------- THUNDERBIRD EMAIL -------------------------------------
  931. thunderbird email: ctrl+n # New email
  932. thunderbird email: ctrl+r # Reply email
  933. ---------------------------------- THUNDERBIRD CALENDAR -------------------------------------
  934. thunderbird cal: ctrl+shift+c # Open calendar
  935. thunderbird cal: ctrl+i # New event
  936. thunderbird cal: ctrl+a # Select all events
  937. thunderbird cal: ctrl+1-4 # Select day-week-multi-month
  938. ---------------------------------- THUNDERBIRD TASKS -------------------------------------
  939. thunderbird task: ctrl+shift+c # Open Tasks
  940. thunderbird task: ctrl+d # Create new task
  941. ---------------------------------- THUNDERBIRD PLUGINS -------------------------------------
  942. thunderbird plug: alt+shift+ta # Open Plugins settings
  943. thunderbird plug: alt+shift+tt # Open thunderstats
  944.  
  945. ############################## LIBREOFFICE WRITER SHORTCUTS #################################
  946. ------------------------------- LIBREOFFICE FUNCTION KEYS -----------------------------------
  947. libre writer func: F2 # Formula Bar
  948. libre writer func: Ctrl+F2 # Insert Fields
  949. libre writer func: F3 # Complete AutoText
  950. libre writer func: Ctrl+F3 # Edit AutoText
  951. libre writer func: F4 # Open Data Source View
  952. libre writer func: Shift+F4 # Select next frame
  953. libre writer func: F5 # navigationigator on/off
  954. libre writer func: Ctrl+Shift+F5 # navigationigator on, go to page number
  955. libre writer func: F7 # Spellcheck
  956. libre writer func: Ctrl+F7 # Thesaurus
  957. libre writer func: F8 # Extension mode
  958. libre writer func: Ctrl+F8 # Field shadings on / off
  959. libre writer func: Shift+F8 # Additional selection mode
  960. libre writer func: Ctrl+Shift+F8 # Block selection mode
  961. libre writer func: F9 # Update fields
  962. libre writer func: Ctrl+F9 # Show fields
  963. libre writer func: Shift+F9 # C a l c ulate Table
  964. libre writer func :Ctrl+Shift+F9 # Update Input Fields and Input Lists
  965. libre writer func :Ctrl+F10 # Nonprinting Characters on/off
  966. libre writer func: F11 # Styles and Formatting window on/off
  967. libre writer func: Shift+F11 # Create Style
  968. libre writer func: Ctrl+F11 # Sets focus to Apply Style box
  969. libre writer func: Ctrl+Shift+F11 # Update Style
  970. libre writer func: F12 # Numbering on
  971. libre writer func: Ctrl+F12 # Insert or edit Table
  972. libre writer func: Shift+F12 # Bullets on
  973. libre writer func: Ctrl+Shift+F12 # Numbering / Bullets off
  974. ------------------------------- LIBREOFFICE WRITER BASE -----------------------------------
  975. libre writer base: Ctrl+A # Select All
  976. libre writer base: Ctrl+J # Justify
  977. libre writer base: Ctrl+D # Double Underline
  978. libre writer base: Ctrl+E # Centered
  979. libre writer base: Ctrl+H # Find and Replace
  980. libre writer base: Ctrl+Shift+P # Superscript
  981. libre writer base: Ctrl+L # Align Left
  982. libre writer base: Ctrl+R # Align Right
  983. libre writer base: Ctrl+Shift+B # Subscript
  984. libre writer base: Ctrl+Y # Redo last action
  985. libre writer base: Ctrl+0 (zero) # Apply Text Body paragraph style
  986. libre writer base: Ctrl+1 # Apply Heading 1 paragraph style
  987. libre writer base: Ctrl+2 # Apply Heading 2 paragraph style
  988. libre writer base: Ctrl+3 # Apply Heading 3 paragraph style
  989. libre writer base: Ctrl+4 # Apply Heading 4 paragraph style
  990. libre writer base: Ctrl+5 # Apply Heading 5 paragraph style
  991. libre writer base: Ctrl + Plus Key(+) # C a l c ulates the s e l ected text and copies the result to the clipboard.
  992. libre writer base: Ctrl+Hyphen(-) # Soft hyphens; hyphenation set by you.
  993. libre writer base: Ctrl+Shift+minus sign (-) # Non-breaking hyphen (is not used for hyphenation)
  994. libre writer base: Ctrl+multiplication sign * (only on number pad) # Run macro field
  995. libre writer base: Ctrl+Shift+Space # Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified.
  996. libre writer base: Shift+Enter # Line break without paragraph change
  997. libre writer base: Ctrl+Enter # Manual page break
  998. libre writer base: Ctrl+Shift+Enter # Column break in multicolumnar texts
  999. libre writer base: Alt+Enter # Inserting a new paragraph without numbering inside a list. Does not work when the cursor is at the end of the list.
  1000. libre writer base: Alt+Enter # Inserting a new paragraph directly before or after a section, or before a table.
  1001. libre writer base: Arrow Left # Move cursor to left
  1002. libre writer base: Shift+Arrow Left # Move cursor with selection to the left
  1003. libre writer base: Ctrl+Arrow Left # Go to beginning of word
  1004. libre writer base: Ctrl+Shift+Arrow # Selecting word by word
  1005. libre writer base: Arrow Right # Move cursor to right
  1006. libre writer base: Shift+Arrow # Move cursor with selection to the right
  1007. libre writer base: Ctrl+Arrow # Go to start of next word
  1008. libre writer base: Ctrl+Shift+Arrow # Selecting to the right word by word
  1009. libre writer base: Arrow Up # Move cursor up one line
  1010. libre writer base: Shift+Arrow Up # Selecting lines in an upwards direction
  1011. libre writer base: Ctrl+Arrow Up # Move cursor to beginning of the previous paragraph
  1012. libre writer base: Ctrl+Shift+Arrow # Select to beginning of paragraph. Next keystroke extends selection to beginning of previous paragraph
  1013. libre writer base: Arrow Down # Move cursor down one line
  1014. libre writer base: Shift+Arrow Down # Selecting lines in a downward direction
  1015. libre writer base: Ctrl+Arrow Down # Move cursor to beginning of next paragraph.
  1016. libre writer base: Ctrl+Shift+Arrow # Select to end of paragraph. Next keystroke extends selection to end of next paragraph
  1017. libre writer base: Home # Go to beginning of line
  1018. libre writer base: Home+Shift # Go and select to the beginning of a line
  1019. libre writer base: End # Go to end of line
  1020. libre writer base: End+Shift # Go and select to end of line
  1021. libre writer base: Ctrl+Home # Go to start of document
  1022. libre writer base: Ctrl+Home+Shift # Go and select text to start of document
  1023. libre writer base: Ctrl+End # Go to end of document
  1024. libre writer base: Ctrl+End+Shift # Go and select text to end of document
  1025. libre writer base: Ctrl+PageUp # Switch cursor between text and header
  1026. libre writer base: Ctrl+PageDown # Switch cursor between text and footer
  1027. libre writer base: Insert # Insert mode on/off
  1028. libre writer base: PageUp # Screen page up
  1029. libre writer base: Shift+PageUp # Move up screen page with selection
  1030. libre writer base: PageDown # Move down screen page
  1031. libre writer base: Shift+PageDown # Move down screen page with selection
  1032. libre writer base: Ctrl+Del # Delete text to end of word
  1033. libre writer base: Ctrl+Backspace # Delete text to beginning of word. In a list: delete an empty paragraph in front of the current paragraph
  1034. libre writer base: Ctrl+Del+Shift # Delete text to end of sentence
  1035. libre writer base: Ctrl+Shift+Back.s # Delete text to beginning of sentence
  1036. libre writer base: Ctrl+Tab # Next suggestion with Automatic Word Completion
  1037. libre writer base: Ctrl+Shift+Tab # Use previous suggestion with Automatic Word Completion
  1038. libre writer base: Ctrl+Alt+Shift+V # Paste the contents of the clipboard as unformatted text.
  1039. libre writer base: Ctrl + double-click or Ctrl + Shift + F10 # Use this combination to quickly dock or undock the navigationigator, Styles and Formatting window, or other windows
  1040. -------------------- LIBREOFFICE WRITER PARAGRAPH AND HEADING LEVELS ------------------------
  1041. libre writer parag: Ctrl+Alt+UpArrow # Move the active paragraph or selected paragraphs up one paragraph.
  1042. libre writer parag: Ctrl+Alt+Down Arrow # Move the active paragraph or selected paragraphs down one paragraph.
  1043. libre writer parag: Tab # The heading in format "Heading X" (X = 1-9) is moved down one level in the outline.
  1044. libre writer parag: Shift+Tab # The heading in format "Heading X" (X = 2-10) is moved up one level in the outline.
  1045. libre writer parag: CTRL+Tab # Inserts tab in front of the heading.
  1046. ------------------------------- LIBREOFFICE WRITER TABLES -----------------------------------
  1047. libre writer tables: Ctrl+A # If the active cell is empty: selects the whole table. Otherwise: selects the contents of the active cell. Pressing again selects the entire table.
  1048. libre writer tables: Ctrl+Home # If the active cell is empty: goes to the beginning of the table. Otherwise: first press goes to beginning of the active cell, second press goes to beginning of the current table, third press goes to beginning of document.
  1049. libre writer tables: Ctrl+End # If the active cell is empty: goes to the end of the table. Otherwise: first press goes to the end of the active cell, second press goes to the end of the current table, third press goes to the end of the document.
  1050. libre writer tables: Ctrl+Tab # Inserts a tab stop (only in tables). Depending on the Window Manager in use, Alt+Tab may be used instead.
  1051. libre writer tables: Alt+Arrow Keys # Increases/decreases the size of the column/row on the right/bottom cell edge
  1052. libre writer tables: Alt+Shift+Arrow Keys # Increase/decrease the size of the column/row on the left/top cell edge
  1053. libre writer tables: Alt+Ctrl+Arrow Keys # Like Alt, but only the active cell is modified
  1054. libre writer tables: Ctrl+Alt+Shift+Arrow Keys # Like Alt, but only the active cell is modified
  1055. libre writer tables: Alt+Insert # 3 seconds in Insert mode, Arrow Key inserts row/column, Ctrl+Arrow Key inserts cell
  1056. libre writer tables: Alt+Del # 3 seconds in Delete mode, Arrow key deletes row/column, Ctrl+Arrow key merges cell with neighboring cell
  1057. libre writer tables: Shift+Ctrl+Del # If no whole cell is selected, the text from the cursor to the end of the current sentence is deleted. If the cursor is at the end of a cell, and no whole cell is selected, the contents of the next cell are deleted. If no whole cell is selected and the cursor is at the end of the table, the paragraph following the table will be deleted, unless it is the last paragraph in the document. If one or more cells are selected, the whole rows containing the selection will be deleted. If all rows are selected completely or partially, the entire table will be deleted.
  1058. -------------------------- LIBREOFFICE WRITER MOVING OBJECTS -------------------------------
  1059. libre writer move obj: Esc # Cursor is inside a text frame and no text is selected: Escape selects the text frame. Text frame is selected: Escape clears the cursor from the text frame.
  1060. F2 or Enter or any key # If a text frame is selected: positions the cursor to the end of the text in the text frame. If you press any key that produces a character on screen, and the document is in edit mode, the character is appended to the text.
  1061. libre writer move obj: Alt+Arrow Keys # Move object.
  1062. libre writer move obj: Alt+Ctrl+Arrow Keys # Resizes by moving lower right corner.
  1063. libre writer move obj: Alt+Ctrl+Shift+Arrow # Keys Resizes by moving top left corner.
  1064. libre writer move obj: Ctrl+Tab # Selects the anchor of an object (in Edit Points mode).
  1065.  
  1066. ############################### LIBREOFFICE CALC SHORTCUTS ##################################
  1067. ------------------------------ LIBREOFFICE CALC navigation ----------------------------------
  1068. libre calc navigation: Ctrl+Home # Moves the cursor to the first cell in the sheet (A1).
  1069. libre calc navigation: Ctrl+End # Moves the cursor to the last cell on the sheet that contains data.
  1070. libre calc navigation: Home # Moves the cursor to the first cell of the current row.
  1071. libre calc navigation: End # Moves the cursor to the last cell of the current row.
  1072. libre calc navigation: Shift+Home # Selects cells from the current cell to the first cell of the current row.
  1073. libre calc navigation: Shift+End # Selects cells from the current cell to the last cell of the current row.
  1074. libre calc navigation: Shift+Page Up # Selects cells from the current cell up to one page in the current column or extends the existing selection one page up.
  1075. libre calc navigation: Shift+Page Down # Selects cells from the current cell down to one page in the current column or extends the existing selection one page down.
  1076. libre calc navigation: Ctrl+Left Arrow # Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data.
  1077. libre calc navigation: Ctrl+Right Arrow # Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data.
  1078. libre calc navigation: Ctrl+Up Arrow # Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data.
  1079. libre calc navigation: Ctrl+Down Arrow # Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data.
  1080. libre calc navigation: Ctrl+Shift+Arrow # Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected.
  1081. libre calc navigation: Ctrl+Page Up # Moves one sheet to the left.
  1082. libre calc navigation: Ctrl+Page Down # Moves one sheet to the right.
  1083. libre calc navigation: Alt+Page Up # Moves one screen to the left.
  1084. libre calc navigation: Alt+Page Down # Moves one screen page to the right.
  1085. libre calc navigation: Shift+Ctrl+Page Up # Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet.
  1086. libre calc navigation: Shift+Ctrl+Page Down # Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet.
  1087. libre calc navigation: Ctrl+ * # Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns.
  1088. libre calc navigation: Ctrl+ / # Selects the matrix formula range that contains the cursor.
  1089. libre calc navigation: Ctrl+Plus key # Insert cells (as in menu Insert - Cells)
  1090. libre calc navigation: Ctrl+Minus key # Delete cells (as in menu Edit - Delete Cells)
  1091. libre calc navigation: Enter (in a selected range) # Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose Tools - Options - LibreOffice Calc - General.
  1092. libre calc navigation: Ctrl+ ` # Displays or hides the formulas instead of the values in all cells.
  1093. ---------------------------- LIBREOFFICE CALC FUNCTION KEYS ---------------------------------
  1094. libre calc func: Ctrl+F1 # Displays the comment that is attached to the current cell
  1095. libre calc func: F2 # Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode. If the cursor is in an input box in a dialog that has a Minimize button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog.
  1096. libre calc func: Ctrl+F2 # Opens the Function Wizard.
  1097. libre calc func: Shift+Ctrl+F2 # Moves the cursor to the Input line where you can enter a formula for the current cell.
  1098. libre calc func: Ctrl+F3 # Opens the Define Names dialog.
  1099. libre calc func: F4 # Shows or Hides the Database explorer.
  1100. libre calc func: Shift+F4 # Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field.
  1101. libre calc func: F5 # Shows or hides the navigationigator.
  1102. libre calc func: Shift+F5 # Traces dependents.
  1103. libre calc func: Shift+F7 # Traces precedents.
  1104. libre calc func: Shift+Ctrl+F5 # Moves the cursor from the Input line to the Sheet area box.
  1105. libre calc func: F7 # Checks spelling in the current sheet.
  1106. libre calc func: Ctrl+F7 # Opens the Thesaurus if the current cell contains text.
  1107. libre calc func: F8 # Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection.
  1108. libre calc func: Ctrl+F8 # Highlights cells containing values.
  1109. libre calc func: F9 # Recalculates changed formulas in the current sheet.
  1110. libre calc func: Ctrl+Shift+F9 # Recalculates all formulas in all sheets.
  1111. libre calc func: Ctrl+F9 # Updates the selected chart.
  1112. libre calc func: F11 # Opens the Styles and Formatting window where you can apply a formatting style to the contents of the cell or to the current sheet.
  1113. libre calc func: Shift+F11 # Creates a document template.
  1114. libre calc func: Shift+Ctrl+F11 # Updates the templates.
  1115. libre calc func: F12 # Groups the selected data range.
  1116. libre calc func: Ctrl+F12 # Ungroups the selected data range.
  1117. libre calc func: Alt+Down Arrow # Increases the height of current row (only in OpenOffice.org legacy compatibility mode).
  1118. libre calc func: Alt+Up Arrow # Decreases the height of current row (only in OpenOffice.org legacy compatibility mode).
  1119. libre calc func: Alt+Right Arrow # Increases the width of the current column.
  1120. libre calc func: Alt+Left Arrow # Decreases the width of the current column.
  1121. libre calc func: Alt+Shift+Arrow # Optimizes the column width or row height based on the current cell.
  1122. ----------------------------- LIBREOFFICE CALC FORMAT CELLS --------------------------------
  1123. libre calc cell format: Ctrl+1 # Open Format Cells dialog
  1124. libre calc cell format: Ctrl+Shift+1 # Two decimal places, thousands separator
  1125. libre calc cell format: Ctrl+Shift+2 # Standard exponential format
  1126. libre calc cell format: Ctrl+Shift+3 # Standard date format
  1127. libre calc cell format: Ctrl+Shift+4 # Standard currency format
  1128. libre calc cell format: Ctrl+Shift+5 # Standard percentage format (two decimal places)
  1129. libre calc cell format: Ctrl+Shift+6 # Standard format
  1130. ----------------------------- LIBREOFFICE CALC PIVOT TABLE ---------------------------------
  1131. libre calc cell pivot: Tab # Changes the focus by moving forwards through the areas and buttons of the dialog.
  1132. libre calc cell pivot: Shift+Tab # Changes the focus by moving backwards through the areas and buttons of the dialog.
  1133. libre calc cell pivot: Up Arrow # Moves the focus up one item in the current dialog area.
  1134. libre calc cell pivot: Down Arrow # Moves the focus down one item in the current dialog area.
  1135. libre calc cell pivot: Left Arrow # Moves the focus one item to the left in the current dialog area.
  1136. libre calc cell pivot: Right Arrow # Moves the focus one item to the right in the current dialog area.
  1137. libre calc cell pivot: Home # Selects the first item in the current dialog area.
  1138. libre calc cell pivot: End # Selects the last item in the current dialog area.
  1139. libre calc cell pivot: Alt # Copies or moves the current field into the "Row" area.
  1140. libre calc cell pivot: Alt # Copies or moves the current field into the "Column" area.
  1141. libre calc cell pivot: Alt # Copies or moves the current field into the "Data" area.
  1142. libre calc cell pivot: Ctrl+Up # Arrow Moves the current field up one place.
  1143. libre calc cell pivot: Ctrl+Down # Arrow Moves the current field down one place.
  1144. libre calc cell pivot: Ctrl+Left # Arrow Moves the current field one place to the left.
  1145. libre calc cell pivot: Ctrl+Right # Arrow Moves the current field one place to the right.
  1146. libre calc cell pivot: Ctrl+Home # Moves the current field to the first place.
  1147. libre calc cell pivot: Ctrl+End # Moves the current field to the last place.
  1148. libre calc cell pivot: Alt+O # Displays the options for the current field.
  1149. libre calc cell pivot: Delete # Removes the current field from the area.
  1150.  
  1151. ################################# CLIPIT #####################################
  1152. clipit: alt+ctrl+h # Open clipboard
  1153. clipit: alt+ctrl+f # Find on history
  1154.  
  1155. ################################# NEMO #######################################
  1156. ### G E N E R A L
  1157. Nemo new window: Ctrl+N # New window
  1158. Nemo close: Ctrl+W # Close window or tab
  1159. Nemo close all: Ctrl+Q # Close all windows
  1160. Nemo toggle: F3 # Toggle extra pane
  1161. Nemo search: Ctrl+F # Search
  1162. Nemo bookmark: Ctrl+D # Bookmark current Location
  1163. Nemo edit bookmarks: Ctrl+B # Edit bookmarks
  1164. Nemo make link: Ctrl+M # Make link
  1165.  
  1166. ### O P E N I N G
  1167. Nemo opening: Shift+Ctrl+D # Pin/Unpin selection
  1168. Nemo opening: F1 # Show help
  1169. Nemo opening: Ctrl+F1 # Shortcuts
  1170. Nemo opening: ENTER/Ctrl+O # Open
  1171. Nemo opening: Shift+Ctrl+T # Open in new tab
  1172. Nemo opening: Shift+Ctrl+O # Open in new window
  1173. Nemo opening: Ctrl+Alt+O # Open item in Location (recent files and search only)
  1174.  
  1175. ### T A B S
  1176. Nemo tabs: Ctrl+T # New tab
  1177. Nemo tabs: Ctrl+PageUp # Go to previous tab
  1178. Nemo tabs: Ctrl+PageDown # Go to next tab
  1179. Nemo tabs: Alt+0...8 # Switch to tab
  1180. Nemo tabs: Shift+Ctrl+PageUp # Move tab left
  1181. Nemo tabs: Shift+Ctrl+PageDown # Move tab right
  1182.  
  1183. ### N A V I G A T I O N
  1184. Nemo navigation: Backspace / Alt+LeftArrow # Go back
  1185. Nemo navigation: Alt+RightArrow # Go forward
  1186. Nemo navigation: Alt+UpArrow # Go up
  1187. Nemo navigation: Alt+DownArrow # Go down
  1188. Nemo navigation: Alt+Home # Go to home folder
  1189. Nemo navigation: Ctrl+L # Toggle Location entry
  1190.  
  1191. ### V I E W
  1192. Nemo view: Ctrl+Plus # Zoom in
  1193. Nemo view: Ctrl+Minus # Zoom out
  1194. Nemo view: Ctrl+O # Reset zoom
  1195. Nemo view: F5/Ctrl+R # Reset view
  1196. Nemo view: Ctrl+H # Show/hide hidden files
  1197. Nemo view: F9 # Show/hide sidebar
  1198. Nemo view: F10 # Show/hide action menu
  1199. Nemo view: Ctrl+1 # List view
  1200. Nemo view: Ctrl+2 # Grid view
  1201. Nemo view: Ctrl+3 # Compact view
  1202.  
  1203. ### E D I T I N G
  1204. Nemo editing: Shift+Ctrl+N # Create folder
  1205. Nemo editing: F2 # Rename
  1206. Nemo editing: Delete # Move to trash
  1207. Nemo editing: Shift+delete # Delete permanently
  1208. Nemo editing: Ctrl+X # Cut
  1209. Nemo editing: Ctrl+C # Copy
  1210. Nemo editing: Ctrl+V # Paste
  1211. Nemo editing: Ctrl+A # Select all
  1212. Nemo editing: Shift+Ctrl+I # Invert Selection
  1213. Nemo editing: Ctrl+S # Select items matching
  1214. Nemo editing: Ctrl+Z # Undo
  1215. Nemo editing: Ctrl+Y # Redo
  1216. Nemo editing: Ctrl+I/Alt+Backspace # Show item properties
  1217.  
  1218. ################################# GIMP #######################################
  1219.  
  1220. ### F I L E M E N U
  1221. Gimp file menu: Ctrl + N # New Image
  1222. Gimp file menu: Shift+Ctrl+V # Create a new Image from Clipboard
  1223. Gimp file menu: Ctrl + O # Open Image
  1224. Gimp file menu: Ctrl+Alt+O # Open as Layers
  1225. Gimp file menu: Ctrl+S # Save Image
  1226. Gimp file menu: Shift+Ctrl+S # Save As
  1227. Gimp file menu: Ctrl+P # Print
  1228. Gimp file menu: Ctrl+W # Close
  1229. Gimp file menu: Shift+Ctrl+W # Close All
  1230. Gimp file menu: Ctrl+Q # Quit
  1231.  
  1232. ### E D I T M E N U
  1233. Gimp edit menu: Ctrl+Z # Undo
  1234. Gimp edit menu: Ctrl+Y # Redo
  1235. Gimp edit menu: Ctrl+X # Cut
  1236. Gimp edit menu: Ctrl+C # Copy
  1237. Gimp edit menu: Shift+Ctrl+C # Copy Visible
  1238. Gimp edit menu: Ctrl+V # Paste
  1239. Gimp edit menu: Shift+Ctrl+V # Paste as New Image
  1240. Gimp edit menu: Delete # Clear
  1241. Gimp edit menu: Ctrl+, # Fill with FG Color
  1242. Gimp edit menu: Ctrl+. # Fill with BG Color
  1243. Gimp edit menu: Ctrl+; # Fill with Pattern
  1244.  
  1245. ### S E L E C T M E N U
  1246. Gimp select menu: Ctrl+A # Select All
  1247. Gimp select menu: Shift+Ctrl+A # Select None
  1248. Gimp select menu: Ctrl+I # Invert Selection
  1249. Gimp select menu: Shift+Ctrl+L # Create a Floating Selection
  1250. Gimp select menu: Shift+O # Select by Color
  1251. Gimp select menu: Shift+V # Select from Path
  1252. Gimp select menu: Shift+Q # Toggle Quick Mask
  1253.  
  1254. ### V I E W M E N U
  1255. Gimp view menu: Ctrl+E # Shrink Wrap - Reduce image window to size of image
  1256. Gimp view menu: F11 # Toggle Fullscreen View
  1257. Gimp view menu: Ctrl+T # Show Selection
  1258. Gimp view menu: Shift+Ctrl+T # Show Guides
  1259. Gimp view menu: Shift+Ctrl+R # Show Rulers
  1260.  
  1261. ### I M A G E M E N U
  1262. Gimp image menu: Ctrl+D # Duplicate Image
  1263. Gimp image menu: Ctrl+M # Merge Visible Layers
  1264. Gimp image menu: Alt+Return # Display Image Properties
  1265.  
  1266. ### L A Y E R M E N U
  1267. Gimp layer menu: Shift+Ctrl+N # New Layer
  1268. Gimp layer menu: Shift+Ctrl+D # Duplicate Layer
  1269. Gimp layer menu: Ctrl+H # Anchor Layer
  1270. Gimp layer menu: Page Up # Select Previous Layer
  1271. Gimp layer menu: Page Down # Select Next Layer
  1272. Gimp layer menu: Home # Select Top Layer
  1273. Gimp layer menu: End # Select Bottom Layer
  1274.  
  1275. ### T O O L S M E N U
  1276. ### Selection Tools
  1277. Gimp tools menu: R # Rectangle Select
  1278. Gimp tools menu: E # Ellipse Select
  1279. Gimp tools menu: F # Free Select
  1280. Gimp tools menu: U # Fuzzy Select
  1281. Gimp tools menu: Shift+O # Select by Color
  1282. Gimp tools menu: I # Intelligent Scissors
  1283.  
  1284. ### Paint Tools
  1285. Gimp paint tools: Shift+B # Bucket Fill
  1286. Gimp paint tools: L # Blend
  1287. Gimp paint tools: N # Pencil
  1288. Gimp paint tools: P # Paintbrush
  1289. Gimp paint tools: Shift+E # Eraser
  1290. Gimp paint tools: A # Airbrush
  1291. Gimp paint tools: K # Ink
  1292. Gimp paint tools: C # Clone
  1293. Gimp paint tools: H # Heal
  1294. Gimp paint tools: Shift+U # Blur / Sharpen
  1295. Gimp paint tools: S # Smudge
  1296. Gimp paint tools: Shift+D # Dodge / Burn
  1297.  
  1298. ### Transfrom Tools
  1299. Gimp trandform tools: Q # Align
  1300. Gimp trandform tools: M # Move
  1301. Gimp trandform tools: Shift+C # Crop
  1302. Gimp trandform tools: Shift+R # Rotate
  1303. Gimp trandform tools: Shift+T # Scale
  1304. Gimp trandform tools: Shift+S # Shear
  1305. Gimp trandform tools: Shift+P # Perspective
  1306. Gimp trandform tools: Shift+F # Flip
  1307.  
  1308. ### G E N E R A L
  1309. Gimp general shortcutls: B # Paths
  1310. Gimp general shortcutls: O # Color Picker
  1311. Gimp general shortcutls: Z # Zoom
  1312. Gimp general shortcutls: Shift+M # Measure
  1313. Gimp general shortcutls: T # Text
  1314. Gimp general shortcutls: Ctrl+B # Toolbox
  1315. Gimp general shortcutls: D # Default Colors (Sets foreground to black and background to white)
  1316. Gimp general shortcutls: X # Swap Colors
  1317.  
  1318. ### Filters Menu
  1319. Gimp filters menu: Ctrl+F # Repeat Last
  1320. Gimp filters menu: Shift+Ctrl+F # Re-Show Last
  1321.  
  1322. ### Windows Menu
  1323. Dockable Dialogs
  1324.  
  1325. Gimp dockable dialogs: Ctrl+L # Layers
  1326. Gimp dockable dialogs: Shift+Ctrl+B # Brushes
  1327. Gimp dockable dialogs: Shift+Ctrl+P # Patterns
  1328. Gimp dockable dialogs: Ctrl+G # Gradients
  1329.  
  1330. Gimp dockable dialogs: Ctrl+B # Toolbox
  1331.  
  1332. ### Help Menu
  1333. Gimp help: F1 # Help
  1334. Gimp help: Shift+F1 # Context Sensitive Help
  1335.  
  1336. ################################# INKSCAPE ###################################
  1337. ################################# BLENDER ####################################
  1338.  
  1339. Blender file operations: ESC # Stops ongoing operation
  1340. Blender file operations: TAB # Toggles Edit/Object mode
  1341. Blender file operations: Z KEY # Toggles Solid/Wireframe display
  1342. Blender file operations: CTRL-Z # Undo
  1343. Blender file operations: SHIFT-CTRL-Z # Redo
  1344. Blender file operations: CTRL-N # Open New Default File
  1345. Blender file operations: CTRL-O # Open File
  1346. Blender file operations: CTRL-S # Save
  1347. Blender file operations: SHIFT-CTRL-S # Save As
  1348. Blender file operations: F-12 # Render Camera View
  1349. Blender file operations: CTRL-U # Save as Default
  1350. Blender file operations: RIGHT-CLICK # Select
  1351. Blender file operations: F-12 # Render (PC Only)
  1352.  
  1353. #ᰜᰜᰜᰜᰜᰜ Editing
  1354.  
  1355. Blender editing: X KEY # Invoke X-Axis
  1356. Blender editing: Y KEY # Invoke Y-Axis
  1357. Blender editing: Z KEY # Invoke Z-Axis
  1358. Blender editing: A KEY # Toggle select all/select none
  1359. Blender editing: B KEY # Box select
  1360. Blender editing: C KEY # Circle select
  1361. Blender editing: C KEY-LMB # Circle Mouse-over select
  1362. Blender editing: L KEY # Select Linked
  1363. Blender editing: CTRL-I # Inverse Selection
  1364. Blender editing: G KEY # Grab (move)
  1365. Blender editing: R KEY # Rotate
  1366. Blender editing: S KEY # Scale
  1367. Blender editing: X KEY # Delete
  1368. Blender editing: CTRL-TAB # Sub-Object Selection Menu
  1369. Blender editing: ALT-RMB # Loop Select
  1370. Blender editing: ALT-M # Merge Vertices
  1371. Blender editing: CTRL-ALT-RMB # Face Loop Select
  1372. Blender editing: CTRL-V # Vertex Menu
  1373. Blender editing: CTRL-E # Edge Menu
  1374. Blender editing: CTRL-F # Face Menu
  1375. Blender editing: SPACEBAR # Search Menu
  1376. Blender editing: CTRL-R # Loop Cut and Slide
  1377. Blender editing: K KEY-LMB # Knife Cut Exact
  1378. Blender editing: SHIFT-K KEY-LMB # Knife Cut Midpoints
  1379. Blender editing: V KEY # Rip Tool
  1380. Blender editing: SHIFT-S # Snap Menu
  1381. Blender editing: ALT-S # Clear Scale
  1382. Blender editing: ALT-R # Clear Rotation
  1383. Blender editing: ALT-G # Clear Location
  1384. Blender editing: O KEY # Proportional Editing
  1385. Blender editing: F KEY # Make new Face/Edge
  1386. Blender editing: CTRL-TAB # Vertex/Edge/Face Select
  1387. Blender editing: ALT-F # Fill
  1388. Blender editing: SHIFT-ALT-F # Beauty Fill navigation
  1389. Blender editing: CTRL-ALT-Q # Toggle Quad View
  1390. Blender editing: CTRL-UP ARROW # Toggle Full Screen
  1391. Blender editing: NUMPAD-1 # Front View
  1392. Blender editing: NUMPAD-3 # Right Side View
  1393. Blender editing: NUMPAD-7 # Top View
  1394. Blender editing: CTRL-NUMPAD-1 # Back View
  1395. Blender editing: CTRL-NUMPAD-3 # Left Side View
  1396. Blender editing: CTRL-NUMPAD-7 # Bottom View
  1397. Blender editing: N KEY Toggle # 3D Editor Porperties Panel
  1398. Blender editing: T KEY Toggle # 3D Editor Tools Panel
  1399. Blender editing: NUMPAD-0 # Camera View
  1400. Blender editing: NUMPAD-5 # Toggle Perspective/Orthographic
  1401. Blender editing: CTRL-ALT-NUMPAD-0 # Align Camera to View
  1402. Blender editing: J KEY # Cycle Render SlotsModeling
  1403. Blender editing: SHIFT-A # Add object
  1404. Blender editing: E KEY # Extrude
  1405. Blender editing: CTRL-LEFT MOUSE # Extrude (here)
  1406. Blender editing: SHIFT-E # Extrude Edges
  1407. Blender editing: SHIFT-D # Duplicate
  1408. Blender editing: ALT-D # Linked Duplicate
  1409. Blender editing: CTRL-P # Parent
  1410. Blender editing: ALT-P # Clear Parent
  1411. Blender editing: CTRL-J # Join Objects
  1412. Blender editing: P KEY # Separate
  1413. Blender editing: ALT-C # Convert
  1414. Blender editing: CTRL-H # Hooks
  1415. Blender editing: M KEY # Move to Layer
  1416. Blender editing: H KEY # Hide
  1417. Blender editing: SHIFT-CTRL-ALT-C # Set Origin
  1418. Blender editing: SHIFT-C # Reset 3D Cursor to 0,0,0
  1419. Blender editing: CTRL-SPACEBAR # Turn 3D Widget On/OffCurves
  1420. Blender editing: H KEY # Toggle Free/Aligned Handles
  1421. Blender editing: V KEY # Vector Handles
  1422. Blender editing: SHIFT-H KEY # Auto Handles
  1423. Blender editing: CTRL-CLICK # Add Control Point
  1424. Blender editing: W KEY # Subdivide CurveSculpting
  1425. Blender editing: F KEY # Change Brush Size
  1426. Blender editing: SHIFT-F # Change Brush Strength
  1427. Blender editing: CTRL-F # Rotate Brush Texture
  1428.  
  1429. ################################# ALIASES #####################################
  1430. #list of Poetician Edition Aliases
  1431.  
  1432. alias ls='exa -al --color=always --group-directories-first'
  1433. alias la='ls -a'
  1434. alias ll='ls -la'
  1435. alias l='ls'
  1436. alias l.="ls -A | egrep '^\.'"
  1437.  
  1438. #fix obvious typo's
  1439. alias cd..='cd ..'
  1440. alias pdw="pwd"
  1441.  
  1442. ## Colorize the grep command output for ease of use (good for log files)##
  1443. alias grep='grep --color=auto'
  1444. alias egrep='egrep --color=auto'
  1445. alias fgrep='fgrep --color=auto'
  1446.  
  1447. #readable output
  1448. alias df='df -h'
  1449.  
  1450. #pacman unlock
  1451. alias unlock="sudo rm /var/lib/pacman/db.lck"
  1452.  
  1453. #free
  1454. alias free="free -mt"
  1455.  
  1456. #use all cores
  1457. alias uac="sh ~/.bin/main/000*"
  1458.  
  1459. #continue download
  1460. alias wget="wget -c"
  1461.  
  1462. #userlist
  1463. alias userlist="cut -d: -f1 /etc/passwd"
  1464.  
  1465. #merge new settings
  1466. alias merge="xrdb -merge ~/.Xresources"
  1467.  
  1468. #ps
  1469. alias psa="ps auxf"
  1470. alias psgrep="ps aux | grep -v grep | grep -i -e VSZ -e"
  1471.  
  1472. #grub update
  1473. alias upgrub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
  1474.  
  1475. #add new fonts
  1476. alias update-fc='sudo fc-cache -fv'
  1477.  
  1478. #copy/paste all content of /etc/skel over to home folder - backup of config created - beware
  1479. alias skel='cp -Rf ~/.config ~/.config-backup-$(date +%Y.%m.%d-%H.%M.%S) && cp -rf /etc/skel/* ~'
  1480. #backup contents of /etc/skel to hidden backup folder in home/user
  1481. alias bupskel='cp -Rf /etc/skel ~/.skel-backup-$(date +%Y.%m.%d-%H.%M.%S)'
  1482.  
  1483. #copy bashrc-latest over on bashrc - cb= copy bashrc
  1484. #alias cb='sudo cp /etc/skel/.bashrc ~/.bashrc && source ~/.bashrc'
  1485. #copy /etc/skel/.zshrc over on ~/.zshrc - cb= copy zshrc
  1486. alias cz='sudo cp /etc/skel/.zshrc ~/.zshrc && source ~/.zshrc'
  1487.  
  1488. #switch between bash and zsh
  1489. alias tobash="sudo chsh $USER -s /bin/bash && echo 'Now log out.'"
  1490. alias tozsh="sudo chsh $USER -s /bin/zsh && echo 'Now log out.'"
  1491.  
  1492. #quickly kill conkies
  1493. alias kc='killall conky'
  1494.  
  1495. #hardware info --short
  1496. alias hw="hwinfo --short"
  1497.  
  1498. #skip integrity check
  1499. alias yayskip='yay -S --mflags --skipinteg'
  1500. alias trizenskip='trizen -S --skipinteg'
  1501.  
  1502. #check vulnerabilities microcode
  1503. alias microcode='grep . /sys/devices/system/cpu/vulnerabilities/*'
  1504.  
  1505. #get fastest mirrors in your neighborhood
  1506. alias mr="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist"
  1507. alias mrd="sudo reflector --latest 50 --number 20 --sort delay --save /etc/pacman.d/mirrorlist"
  1508. alias mrs="sudo reflector --latest 50 --number 20 --sort score --save /etc/pacman.d/mirrorlist"
  1509. alias mra="sudo reflector --latest 50 --number 20 --sort age --save /etc/pacman.d/mirrorlist"
  1510.  
  1511. #mounting the folder Public for exchange between host and guest on virtualbox
  1512. alias vbm="sudo /usr/local/bin/arcolinux-vbox-share"
  1513.  
  1514. #shopt
  1515. #shopt -s autocd # change to named directory
  1516. #shopt -s cdspell # autocorrects cd misspellings
  1517. #shopt -s cmdhist # save multi-line commands in history as single line
  1518. #shopt -s dotglob
  1519. #shopt -s histappend # do not overwrite history
  1520. #shopt -s expand_aliases # expand aliases
  1521.  
  1522. #youtube-dl
  1523. alias yta-aac="youtube-dl --extract-audio --audio-format aac "
  1524. alias yta-best="youtube-dl --extract-audio --audio-format best "
  1525. alias yta-flac="youtube-dl --extract-audio --audio-format flac "
  1526. alias yta-m4a="youtube-dl --extract-audio --audio-format m4a "
  1527. alias yta-mp3="youtube-dl --extract-audio --audio-format mp3 "
  1528. alias yta-opus="youtube-dl --extract-audio --audio-format opus "
  1529. alias yta-vorbis="youtube-dl --extract-audio --audio-format vorbis "
  1530. alias yta-wav="youtube-dl --extract-audio --audio-format wav "
  1531.  
  1532. alias ytv="youtube-dl -f bestvideo+bestaudio "
  1533.  
  1534. #Recent Installed Packages
  1535. alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"
  1536. alias riplong="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -3000 | nl"
  1537.  
  1538. #Cleanup orphaned packages
  1539. alias cleanup='sudo pacman -Rns $(pacman -Qtdq)'
  1540.  
  1541. #get the error messages from journalctl
  1542. alias jctl="journalctl -p 3 -xb"
  1543.  
  1544. #nano for important configration files
  1545. #know what you do in these files
  1546. alias nlightdm="sudo nano /etc/lightdm/lightdm.conf"
  1547. alias npacman="sudo nano /etc/pacman.conf"
  1548. alias ngrub="sudo nano /etc/default/grub"
  1549. alias nmkinitcpio="sudo nano /etc/mkinitcpio.conf"
  1550. alias nslim="sudo nano /etc/slim.conf"
  1551. alias noblogout="sudo nano /etc/oblogout.conf"
  1552. alias nmirrorlist="sudo nano /etc/pacman.d/mirrorlist"
  1553. alias nconfgrub="sudo nano /boot/grub/grub.cfg"
  1554.  
  1555. #gpg
  1556. #verify signature for isos
  1557. alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify"
  1558. #receive the key of a developer
  1559. alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
  1560.  
  1561. #shutdown or reboot
  1562. alias ssn="sudo shutdown now"
  1563. alias sr="sudo reboot"
  1564.  
  1565. #Poetician Edition
  1566. alias cl="clear"
  1567. alias rs="redshift &"
  1568.  
  1569. # Aliases for software managment
  1570. # pacman or pm
  1571. alias pacman='sudo pacman --color auto'
  1572. alias up='sudo pacman -Syyu'
  1573.  
  1574. # yay as aur helper - updates everything
  1575. alias pksyua="yay -Syu --noconfirm"
  1576. alias all="yay -Syu --noconfirm"
  1577.  
Advertisement
Add Comment
Please, Sign In to add comment