minor changes

This commit is contained in:
acidburnmonkey
2024-12-13 19:10:36 -05:00
parent a67b4055cd
commit b96985c8d3
2 changed files with 8 additions and 2 deletions
+5
View File
@@ -57,6 +57,11 @@ Should look like this .
|---data.config |---data.config
|---rice-cook.py |---rice-cook.py
``` ```
### Before reboot
Need to correct ownership of home directory
```
sudo chown -R user:user ~/home/username
```
## Donate ## Donate
<a href="https://www.buymeacoffee.com/acidburn" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a> <a href="https://www.buymeacoffee.com/acidburn" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
+3 -2
View File
@@ -264,8 +264,8 @@ def copy_dotfiles(setup):
# list of relevant configs # list of relevant configs
lis = os.listdir() lis = os.listdir()
exeptions = ['.git', '.bashrc','.zshrc','retired','data.txt','wrappedhl','Hyprland','install.sh', exeptions = ['.git', '.bashrc','.zshrc','retired','data.config','wrappedhl','Hyprland','install.sh',
'logg.log','README.md','.gitignore','rice-cook.py','wrappedhl','Laptop-configs'] 'logg.log','README.md','.gitignore','rice-cook.py','Laptop-configs','.ideavimrc']
for z in exeptions: for z in exeptions:
if z in lis: if z in lis:
@@ -276,6 +276,7 @@ def copy_dotfiles(setup):
shutil.copy2('.zshrc',home) shutil.copy2('.zshrc',home)
shutil.copy2('.p10k.zsh',home) shutil.copy2('.p10k.zsh',home)
shutil.copy2('.vimrc',home) shutil.copy2('.vimrc',home)
shutil.copy2('.ideavimrc',home)
if (setup =='l'): if (setup =='l'):
console.print("Setting up dotfiles for Laptop", style='ok') console.print("Setting up dotfiles for Laptop", style='ok')