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.

77 lines
3.8 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
7 months ago
7 months ago
7 months ago
7 months 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](https://github.com/tiyn/dwm)s and [st](https://github.com/tiyn/st)s hotkeys can be found in their repositories.
  30. ### SXHKD
  31. | ModKey | Shift | Key | Function |
  32. | ------ | ----- | ----------------- | --------------------------------------------------------- |
  33. | Super | | Return | Spawn terminal |
  34. | Super | | b | Spawn browser |
  35. | Super | Shift | b | Toggle dwmbar |
  36. | Super | | f | Spawn filemanager |
  37. | Super | | i | Spawn intellij-idea-ultimate-edition |
  38. | Super | | m | Spawn thunderbird |
  39. | Super | | p | Spawn ncmpcpp in st |
  40. | Super | Shift | r | (dmenu) dmenu\_run |
  41. | Super | | s | (dmenu) startpagesearch |
  42. | Super | | F5 | enable 2 Screen Monitor |
  43. | Super | | F6 | toggle touchpad |
  44. | Super | | F7 | (dmenu) mounting drives |
  45. | Super | | F8 | (dmenu) unmounting drives |
  46. | Super | | F9 | Restart NetworkManager |
  47. | Super | | F10 | (dmenu) prompt, if yes: slock |
  48. | Super | | F11 | (dmenu) prompt, if yes: reboot |
  49. | Super | | F12 | (dmenu) prompt, if yes: shutdown |
  50. | | | AudioMute | Volume mute |
  51. | | | AudioMicMute | Mic Mute |
  52. | | | AudioLowerVolume | Volume lower |
  53. | | | AudioRaiseVolume | Volume raise |
  54. | | | MonBrightnessDown | Brightness decrease |
  55. | | | MonBrightnessUp | Brightness increase |