Remove dolphin dir, add README, update uninstall
This commit is contained in:
parent
5335e9ce1d
commit
fb883a772f
5 changed files with 22 additions and 13 deletions
21
README.md
Normal file
21
README.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# jstm's dotfiles
|
||||
## Installing
|
||||
```bash
|
||||
git clone https://git.staropensource.de/JeremyStarTM/punktdateien.git "$HOME/.dotfiles"
|
||||
cd "$HOME/.dotfiles"
|
||||
./install.sh
|
||||
```
|
||||
## Updating
|
||||
```bash
|
||||
cd "$HOME/.dotfiles"
|
||||
./uninstall.sh
|
||||
git pull
|
||||
./install.sh
|
||||
```
|
||||
## Uninstalling
|
||||
```bash
|
||||
cd "$HOME/.dotfiles"
|
||||
env REMOVE_REPOSITORIES=true ./uninstall.sh
|
||||
cd "$HOME"
|
||||
rm -rf "$HOME/.dotfiles"
|
||||
```
|
4
dolphin/.gitignore
vendored
4
dolphin/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
|||
# Ignore feedback
|
||||
kuserfeedback
|
||||
# Ignore state
|
||||
dolphinstaterc
|
|
@ -1,6 +0,0 @@
|
|||
[Dolphin]
|
||||
Timestamp=2023,11,30,17,50,10.271
|
||||
Version=4
|
||||
|
||||
[Settings]
|
||||
HiddenFilesShown=true
|
|
@ -69,7 +69,6 @@ link "fontconfig" ".config/fontconfig"
|
|||
link "konsolerc" ".config/konsolerc"
|
||||
link "konsole" ".local/share/konsole"
|
||||
link "dolphinrc" ".config/dolphinrc"
|
||||
link "dolphin" ".local/share/dolphin"
|
||||
|
||||
# check for executables
|
||||
if ! which qt5ct &> /dev/null; then
|
||||
|
|
|
@ -10,7 +10,7 @@ function unlink() {
|
|||
}
|
||||
|
||||
# repositories
|
||||
rm -rf "jstmbash" "dracula-mc"
|
||||
[[ -n "$REMOVE_REPOSITORIES" ]] && rm -rf "jstmbash" "dracula-mc"
|
||||
|
||||
# jobrunner
|
||||
unlink ".local/bin/jobrunner"
|
||||
|
@ -51,4 +51,3 @@ unlink ".config/fontconfig"
|
|||
unlink ".config/konsolerc"
|
||||
unlink ".local/share/konsole"
|
||||
unlink ".config/dolphinrc"
|
||||
unlink ".local/share/dolphin"
|
||||
|
|
Loading…
Reference in a new issue