Update Dracula Themes

- Update submodules for zathura, gtk, and vim dracula themes
- Add submodule update command to justfile
This commit is contained in:
Sravan Balaji 2024-03-15 22:00:58 -04:00
parent 59b9c8145c
commit 9791efd989
5 changed files with 11 additions and 3 deletions

@ -1 +1 @@
Subproject commit b597b1537aa125e8829bef2cc57a0b0c6a6b35a1 Subproject commit d21609b0548eaf45cccc275791dd3cc5c22baa5e

@ -1 +1 @@
Subproject commit 80d5a3fedf280e9cc7f2df3b100a1082c3bcd1cc Subproject commit 573f88083ae759f480860552f66e9951077bc428

@ -1 +1 @@
Subproject commit 6495b4ff40479ec7705addb4ea800ec308026648 Subproject commit 9fa89296884e47bbadc49ad959e37b9d1c24cafb

View File

@ -9896,6 +9896,10 @@ stow-delete:
# Remove and re-create softlinks from .dotfiles to home directory # Remove and re-create softlinks from .dotfiles to home directory
stow-recreate: stow-recreate:
stow -v -R . stow -v -R .
# Update git submodules from remotes
submodule-update:
git submodule update --init --recursive --remote --progress
#+END_SRC #+END_SRC
* Miscellaneous Scripts * Miscellaneous Scripts

View File

@ -31,3 +31,7 @@ stow-delete:
# Remove and re-create softlinks from .dotfiles to home directory # Remove and re-create softlinks from .dotfiles to home directory
stow-recreate: stow-recreate:
stow -v -R . stow -v -R .
# Update git submodules from remotes
submodule-update:
git submodule update --init --recursive --remote --progress