Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dolph/dotfiles
my ~/.files
https://github.com/dolph/dotfiles
ansible dotfiles fedora
Last synced: 21 days ago
JSON representation
my ~/.files
- Host: GitHub
- URL: https://github.com/dolph/dotfiles
- Owner: dolph
- Created: 2012-09-05T19:52:06.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T12:14:23.000Z (7 months ago)
- Last Synced: 2024-04-14T02:24:23.953Z (7 months ago)
- Topics: ansible, dotfiles, fedora
- Language: Shell
- Homepage:
- Size: 15.3 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Build a system with software, dotfiles, etc, for productivity using Ansible.
## Dependencies
* `git`
* `ansible`## Usage
To deploy to `localhost`:
curl https://raw.githubusercontent.com/dolph/dotfiles/master/bootstrap.sh | bash
cd $HOME/dotfiles
source ~/venv/ansible/bin/activate
ansible-playbook --ask-become-pass headless.yml # or desktop.yml## Desktop interface design: `i3` + `urvxt` + `tmux` + `vim`
### Motions
Each layer has a different modifier key to control motions, but the same motions
have the same effect at each layer.* `i3` modifier: Alt
* + Tab / Shift + Tab: switch workspaces
* + H / J / K / L: switch containers
* `tmux` modifier: Ctrl
* + Tab / Shift + Tab: switch windows
* + H / J / K / L: switch panes
* `vim` modifier: Ctrl
* + H / J / K / L: switch buffers`tmux` and `vim` seamlessly share the same modifier key.
### Clipboard
Copying text at any one layer should make it available to paste at any other
layer in the stack.* `i3`:
* Copy: Ctrl + Shift + C
* Paste Ctrl + Shift + V
* `urvxt`:
* Copy: Ctrl + Shift + C
* Paste Ctrl + Shift + V
* `tmux`:
* Copy: Ctrl + a, V, make selection, Y
* `vim`:
* Paste in insert mode: Ctrl + Shift + V
* Paste in normal mode: `"+gP`