make a TODO list, and correct the d instruction bug.
This commit is contained in:
parent
5fd2a76332
commit
1f57e40d6d
2 changed files with 28 additions and 2 deletions
26
README.md
26
README.md
|
@ -1,3 +1,29 @@
|
||||||
# save_config_dotfiles
|
# save_config_dotfiles
|
||||||
|
|
||||||
Use it to save in ~/Documents/git/dotfiles/dotconfig your config files.
|
Use it to save in ~/Documents/git/dotfiles/dotconfig your config files.
|
||||||
|
|
||||||
|
## TODO
|
||||||
|
|
||||||
|
### program config file.
|
||||||
|
|
||||||
|
Implement in _INSTRUCTIONS_
|
||||||
|
- fu for user file copy
|
||||||
|
- fr for root file copy (use doas)
|
||||||
|
- du for user directory copy
|
||||||
|
- dr for root firectory copy (use doas)
|
||||||
|
|
||||||
|
Rename u by uu, for update user.
|
||||||
|
|
||||||
|
### dotfiles to config
|
||||||
|
|
||||||
|
Implement f instruction
|
||||||
|
|
||||||
|
make as function dotfiles to config
|
||||||
|
|
||||||
|
### config to dotfile
|
||||||
|
|
||||||
|
Implement the reverse.
|
||||||
|
|
||||||
|
make as function config to dotfiles.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ do
|
||||||
|
|
||||||
if [ "$order" = "d" ]
|
if [ "$order" = "d" ]
|
||||||
then
|
then
|
||||||
cp -Rf ${_GIT_FOLDER}/${operand_2} ${operand_1}
|
cp -Rf ${_GIT_FOLDER}/${operand_2}/* ${operand_1}
|
||||||
elif [ "$order" = "f" ]
|
elif [ "$order" = "f" ]
|
||||||
then
|
then
|
||||||
echo ".. f detected .."
|
echo ".. f detected .."
|
||||||
|
|
Loading…
Reference in a new issue