moved salt from alias to functin, added username pillar
This commit is contained in:
parent
f290d39b96
commit
7e580ef997
1
.alias
1
.alias
@ -6,4 +6,3 @@ alias dotf='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
|
||||
alias ls_dotfiels='/usr/bin/git --git-dir=$HOME/.dotfiles ls-tree --full-tree -r --name-only HEAD'
|
||||
alias t="todo.sh"
|
||||
alias gl='git log --graph --pretty=format:'\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit --date=relative'
|
||||
alias salt='sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@"'
|
||||
|
@ -1,12 +1,5 @@
|
||||
function gnomebindings(){
|
||||
local KEY_PATH="/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings"
|
||||
local CMD="gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:$KEY_PATH"
|
||||
gsettings set org.gnome.settings-daemon.plugins.media-keys custom-keybindings "['$KEY_PATH/custom0/']"
|
||||
|
||||
# Open Terminator
|
||||
$CMD/custom0/ name "Open Terminator"
|
||||
$CMD/custom0/ command "terminator"
|
||||
$CMD/custom0/ binding "<Primary><Alt>Return"
|
||||
function salt() {
|
||||
sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@" pillar="{username: $USER}"
|
||||
}
|
||||
|
||||
function pw(){
|
||||
|
@ -1,3 +1,5 @@
|
||||
```
|
||||
alias salt='sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@"'
|
||||
function salt(){
|
||||
sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@" pillar="{username: $USER}"
|
||||
}
|
||||
```
|
||||
|
@ -3,15 +3,14 @@ packages:
|
||||
|
||||
vim:
|
||||
plugins:
|
||||
jonas:
|
||||
calendar-vim:
|
||||
name: https://github.com/mattn/calendar-vim.git
|
||||
vim-commentary:
|
||||
name: https://github.com/tpope/vim-commentary.git
|
||||
vim-instant-markdown:
|
||||
name: https://github.com/suan/vim-instant-markdown.git
|
||||
vim-surround:
|
||||
name: https://github.com/tpope/vim-surround.git
|
||||
vimwiki:
|
||||
name: https://github.com/vimwiki/vimwiki.git
|
||||
calendar-vim:
|
||||
name: https://github.com/mattn/calendar-vim.git
|
||||
vim-commentary:
|
||||
name: https://github.com/tpope/vim-commentary.git
|
||||
vim-instant-markdown:
|
||||
name: https://github.com/suan/vim-instant-markdown.git
|
||||
vim-surround:
|
||||
name: https://github.com/tpope/vim-surround.git
|
||||
vimwiki:
|
||||
name: https://github.com/vimwiki/vimwiki.git
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
{% for user, plugins in pillar['vim']['plugins'].items() %}
|
||||
{% for plugin, args in plugins.items() %}
|
||||
{% for plugin, args in pillar['vim']['plugins'].items() %}
|
||||
{{ plugin }}:
|
||||
git.latest:
|
||||
- name: {{ args['name'] }}
|
||||
- target: {{ salt['user.info']( user ).home }}/.vim/bundle/{{ plugin }}
|
||||
- user: {{ user }}
|
||||
{% endfor %}
|
||||
- target: {{ salt['user.info']( pillar['username'] ).home }}/.vim/bundle/{{ plugin }}
|
||||
- user: {{ pillar['username'] }}
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user