Compare commits
7 Commits
45d8f0034f
...
0280a88a7b
Author | SHA1 | Date | |
---|---|---|---|
0280a88a7b | |||
7df94a817d | |||
28183f554d | |||
fc45c8e1e4 | |||
edabb1c4f7 | |||
b50871e27c | |||
cb4e8dec44 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
/packages/*/*
|
||||
/packages/*
|
||||
/packages/**
|
||||
/defaults/bash/api_keys
|
||||
|
10
README.md
10
README.md
@ -6,17 +6,17 @@
|
||||
|
||||
#### Install:
|
||||
```bash
|
||||
wget -qO- https://github.com/gibbyb/sunhat/releases/download/1.0/install.sh | bash
|
||||
wget -qO- https://github.com/gibbyb/sunhat/releases/download/1.0/install
|
||||
```
|
||||
##### Mirror:
|
||||
```bash
|
||||
wget -qO- https://git.gibbyb.com/gib/sunhat/releases/download/1.0/install.sh | bash
|
||||
wget -qO- https://git.gbrown.org/gib/sunhat/releases/download/1.0/install
|
||||
```
|
||||
|
||||
##### To Do:
|
||||
|
||||
- [ ] Add eza installation at is no longer in repository
|
||||
- [ ] Change sunshine copr repo to the official one.
|
||||
- [X] Add eza installation at is no longer in repository
|
||||
- [X] Change sunshine copr repo to the official one.
|
||||
- [ ] Add a way to change the font & theme of kitty using the script
|
||||
- [ ] Add a way to update all packages installed with git in the packages folder.
|
||||
- [X] Add a way to update all packages installed with git in the packages folder.
|
||||
- [ ] Add a way to update all links to packages installed by link
|
||||
|
@ -1,3 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Aliases I like
|
||||
alias update="sudo dnf update -y && flatpak update -y"
|
||||
alias install="sudo dnf install -y"
|
||||
@ -16,7 +18,7 @@ alias shutdown="systemctl poweroff"
|
||||
alias ts="~/.config/hypr/scripts/snapshot.sh"
|
||||
alias wifi="mctui"
|
||||
alias update-grub="sudo grub-mkconfig -o /etc/grub2-efi.cfg"
|
||||
alias nvidia-smi-docker='sudo docker run --rm --gpus all --privileged nvidia/cuda:11.3.1-base nvidia-smi'
|
||||
alias nvidia-smi-docker='sudo docker run --rm --gpus all --privileged nvidia/cuda:12.8.1-base-ubuntu24.04 nvidia-smi'
|
||||
alias ncconnect='sudo docker exec -u www-data -it nextcloud-aio-nextcloud bash'
|
||||
alias docker-up='sudo docker compose up -d'
|
||||
alias docker-down='sudo docker compose down'
|
||||
|
@ -1,2 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
source ~/.local/share/sunhat/defaults/bash/shell
|
||||
source ~/.local/share/sunhat/defaults/bash/aliases
|
||||
if [ -f ~/.local/share/sunhat/defaults/bash/api_keys ]; then
|
||||
source ~/.local/share/sunhat/defaults/bash/api_keys
|
||||
fi
|
||||
|
@ -1,3 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Source global definitions
|
||||
if [ -f /etc/bashrc ]; then
|
||||
. /etc/bashrc
|
||||
|
@ -1,6 +1,3 @@
|
||||
sudo dnf remove -y gnome-contacts gnome-tour \
|
||||
gnome-maps libreoffice-calc libreoffice-writer \
|
||||
libreoffice-impress totem
|
||||
|
||||
sudo mv /usr/bin/gnome-terminal /usr/bin/gnome-terminal.NOPE
|
||||
sudo cp /usr/bin/kitty /usr/bin/gnome-terminal
|
||||
|
Reference in New Issue
Block a user