mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-22 22:48:05 +01:00
Compare commits
No commits in common. "e5bf69149d0b68a804ce3705217415f53263c4bc" and "aed1729be5534836168ac5f4ef0fb67d0be10fbe" have entirely different histories.
e5bf69149d
...
aed1729be5
6 changed files with 51 additions and 40 deletions
|
@ -1,10 +1,3 @@
|
|||
function bwunlock
|
||||
set -x NODE_OPTIONS "--no-deprecation"
|
||||
|
||||
if not bw login --check
|
||||
set -gx BW_SESSION (bw login --raw)
|
||||
end
|
||||
if not bw unlock --check
|
||||
set -gx BW_SESSION (bw unlock --raw)
|
||||
end
|
||||
set -g BW_SESSION (bw login --raw)
|
||||
end
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
function chezmoiapply
|
||||
set -x NODE_OPTIONS "--no-deprecation"
|
||||
bwunlock
|
||||
|
||||
if not bw login --check
|
||||
set -x BW_SESSION (bw login --raw)
|
||||
end
|
||||
if not bw unlock --check
|
||||
set -x BW_SESSION (bw unlock --raw)
|
||||
end
|
||||
chezmoi apply
|
||||
end
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
function chezmoiupdate
|
||||
set -x NODE_OPTIONS "--no-deprecation"
|
||||
bwunlock
|
||||
if not bw login --check
|
||||
set -x BW_SESSION (bw login --raw)
|
||||
end
|
||||
if not bw unlock --check
|
||||
set -x BW_SESSION (bw unlock --raw)
|
||||
end
|
||||
chezmoi update
|
||||
end
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
function fetchkeys
|
||||
set -x NODE_OPTIONS "--no-deprecation"
|
||||
bwunlock
|
||||
if not bw login --check
|
||||
set -x BW_SESSION (bw login --raw)
|
||||
end
|
||||
if not bw unlock --check
|
||||
set -x BW_SESSION (bw unlock --raw)
|
||||
end
|
||||
set key_item (bw list items --search "SSH Main" | jq ".[0]" --raw-output)
|
||||
set key_item_id (echo $key_item | jq ".id" --raw-output)
|
||||
set key1 (echo $key_item | jq ".attachments[0]" --raw-output)
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
function upgrade --wraps=topgrade
|
||||
set -x NODE_OPTIONS "--no-deprecation"
|
||||
bwunlock
|
||||
if not bw login --check
|
||||
set -x BW_SESSION (bw login --raw)
|
||||
end
|
||||
if not bw unlock --check
|
||||
set -x BW_SESSION (bw unlock --raw)
|
||||
end
|
||||
{{- if get . "sudo" }}
|
||||
sudo ls >/dev/null
|
||||
{{- end }}
|
||||
|
|
|
@ -8,13 +8,11 @@
|
|||
disable = [
|
||||
"mas",
|
||||
"pip3",
|
||||
"gem",
|
||||
"ruby_gems",
|
||||
{{- if eq .chezmoi.os "darwin" }}
|
||||
"vim",
|
||||
{{- end }}
|
||||
{{- if not (get . "sudo") }}
|
||||
"node",
|
||||
"npm",
|
||||
{{- end }}
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue