From b96985c8d3142b734f6fb385a488928fedc32616 Mon Sep 17 00:00:00 2001 From: acidburnmonkey Date: Fri, 13 Dec 2024 19:10:36 -0500 Subject: [PATCH] minor changes --- README.md | 5 +++++ rice-cook.py | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66f2d1e..26a144e 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,11 @@ Should look like this . |---data.config |---rice-cook.py ``` +### Before reboot +Need to correct ownership of home directory +``` +sudo chown -R user:user ~/home/username +``` ## Donate Buy Me A Coffee diff --git a/rice-cook.py b/rice-cook.py index 42b96e1..d2b7146 100755 --- a/rice-cook.py +++ b/rice-cook.py @@ -264,8 +264,8 @@ def copy_dotfiles(setup): # list of relevant configs lis = os.listdir() - exeptions = ['.git', '.bashrc','.zshrc','retired','data.txt','wrappedhl','Hyprland','install.sh', - 'logg.log','README.md','.gitignore','rice-cook.py','wrappedhl','Laptop-configs'] + exeptions = ['.git', '.bashrc','.zshrc','retired','data.config','wrappedhl','Hyprland','install.sh', + 'logg.log','README.md','.gitignore','rice-cook.py','Laptop-configs','.ideavimrc'] for z in exeptions: if z in lis: @@ -276,6 +276,7 @@ def copy_dotfiles(setup): shutil.copy2('.zshrc',home) shutil.copy2('.p10k.zsh',home) shutil.copy2('.vimrc',home) + shutil.copy2('.ideavimrc',home) if (setup =='l'): console.print("Setting up dotfiles for Laptop", style='ok')