-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
27 lines (23 loc) · 788 Bytes
/
Taskfile.yml
File metadata and controls
27 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# https://taskfile.dev
version: "3"
tasks:
default:
deps: [update]
update:
desc: Update dotfiles.
vars:
STOW_PKGS:
sh: ls -I justfile -I Taskfile.yml -I Makefile -I installers | tr '\n' ' '
cmds:
# Delete all symlinks. This deals with deleted config files.
# Symlink files managed in this repo.
- for pkg in {{.STOW_PKGS}} ; do stow -R ${pkg} ; done
- stow --target ~/bin --dir ~/code/user-land/ packaged
- stow --target ~/.local/bin --dir ~/code/volume-notify/ bin
systemctl:
desc: Update systemctl user services.
cmds:
- systemctl --user daemon-reload
- systemctl --user enable fusuma.service
- systemctl --user enable ulauncher.service
- systemctl --user enable gnome-keyring-daemon