Dotfiles for different machines on different branches.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
6.0 KiB

1 year ago
9 months ago
1 year ago
9 months ago
9 months ago
9 months ago
9 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. # .dotfiles
  2. My Arch Linux dotfiles.
  3. They were originally based on the dotfiles of [lukesmithxyz](https://github.com/lukesmithxyz/voidrice).
  4. This being some time, hundreds of commits and my personalized version of [larbs](https://github.com/TiynGER/larbs) ago, they are now quite different.
  5. ## Required and Recommended Software
  6. All requirements and recommendations get installed by my version of LARBS.
  7. To take a look at all the software it installs look at the progs.csv in my LARBS repository (https://github.com/TiynGER/larbs/blob/master/progs.csv)
  8. ## Migration of my dotfiles to other system
  9. ### set alias in .bashrc
  10. `alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'`
  11. ### clone this repository
  12. `git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles`
  13. ### checkout changes
  14. `config checkout`
  15. ### backup old files
  16. ```
  17. mkdir -p .config-backup && \
  18. config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
  19. xargs -I{} mv {} .config-backup/{}
  20. ```
  21. ### checkout changes
  22. `config checkout`
  23. ### set showUntrackedFiles to no
  24. `config config --local status.showUntrackedFiles no`
  25. ### pull current setup
  26. `config pull`
  27. ## Hotkeys
  28. There are various shortcuts and hotkeys used in this version. Included in my build are the following.
  29. ### DWM
  30. | ModKey | Shift | Key | Function |
  31. | ------ | ----- | ----------------- | --------------------------------------------------------- |
  32. | Super | Shift | Escape | Quit dwm |
  33. | Super | Shift | b | Toggle dwmbar |
  34. | Super | Shift | c | Enable deck(/card) layout |
  35. | Super | Shift | d | Toggle floating/tiled for selected window |
  36. | Super | Shift | f | Toggle fullscreen |
  37. | Super | | h | (Tiling/Deck) Focus window higher in stack than current |
  38. | Super | Shift | h | (Tiling/Deck) Make current window the master window |
  39. | Super | | j | (Tiling/Deck) Focus window lower in stack than current |
  40. | Super | Shift | j | (Tiling/Deck) Make current window the master window |
  41. | Super | | k | (Tiling/Deck) Focus window higher in stack than current |
  42. | Super | Shift | k | (Tiling/Deck) Make current window the master window |
  43. | Super | | l | (Tiling/Deck) Focus window lower in stack than current |
  44. | Super | Shift | m | Enable monocle layout |
  45. | Super | Shift | o | (Tiling/Deck) Increase master window size |
  46. | Super | | q | Close current window |
  47. | Super | Shift | t | Enable tiling layout |
  48. | Super | Shift | z | (Tiling/Deck) Decrease master window size |
  49. | Super | | 0 | Show all tags |
  50. | Super | Shift | 0 | Add current window to all tag |
  51. | Super | | 1/2/.../9 | Show tag 1/2/.../9 |
  52. | Super | Shift | 1/2/.../9 | Add current window to tag 1/2/.../9 |
  53. | Super | | . | Show monitor lower in stack |
  54. | Super | Shift | . | Add to monitor lower in stack |
  55. | Super | | , | Show monitor higher in stack |
  56. | Super | Shift | , | Add to monitor higher in stack |
  57. | Super | | Return | Spawn st |
  58. | Super | | b | Spawn firefox |
  59. | Super | Shift | b | Toggle dwmbar |
  60. | Super | | f | Spawn vifm in st |
  61. | Super | | i | Spawn intellij-idea-ultimate-edition |
  62. | Super | | m | Spawn thunderbird |
  63. | Super | | p | Spawn ncmpcpp in st |
  64. | Super | Shift | r | (dmenu) dmenu\_run |
  65. | Super | | s | (dmenu) startpagesearch |
  66. | Super | | F5 | enable 2 Screen Monitor |
  67. | Super | | F6 | toggle touchpad |
  68. | Super | | F7 | (dmenu) mounting drives |
  69. | Super | | F8 | (dmenu) unmounting drives |
  70. | Super | | F9 | Restart NetworkManager |
  71. | Super | | F10 | (dmenu) prompt, if yes: slock |
  72. | Super | | F11 | (dmenu) prompt, if yes: reboot |
  73. | Super | | F12 | (dmenu) prompt, if yes: shutdown |
  74. | | | AudioMute | Volume mute |
  75. | | | AudioMicMute | Mic Mute |
  76. | | | AudioLowerVolume | Volume lower |
  77. | | | AudioRaiseVolume | Volume raise |
  78. | | | MonBrightnessDown | Brightness decrease |
  79. | | | MonBrightnessUp | Brightness increase |