Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
225 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: directoryf
  3. # key: directoryf
  4. # --
  5. directory "${1:name}" do
  6. owner "$create{2:root}"
  7. group "${3:root}"
  8. mode "${4:0755}"
  9. path "${5:name}"
  10. recursive ${6:false}
  11. action :${7:create}
  12. end