Cleanup

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-22 06:24:55 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-22 06:24:55 +0200
Commit 8c613848eb435d1c874b1cf372cf6b65bbab7319 (patch)
-rwxr-xr-x shenanigans.sh 20
1 files changed, 0 insertions, 20 deletions
diff --git a/shenanigans.sh b/shenanigans.sh
...
74
  
74
  
75
# Useful function. Much wow!
75
# Useful function. Much wow!
76
  
76
  
77
poe() {
  
78
	cd ~/.wine/drive_c/Program\ Files\ \(x86\)/Grinding\ Gear\ Games/Path\ of\ Exile/
  
79
	DXVK_FRAME_RATE=240 DXVK_HUD=0 wine Client.exe
  
80
}
  
81
  
  
82
wow() {
77
wow() {
83
	cd ~/Games/turtlewow/
78
	cd ~/Games/turtlewow/
84
	./start.sh
79
	./start.sh
...
134
	cd $CWD
129
	cd $CWD
135
}
130
}
136
  
131
  
137
update() {
  
138
	if grep -qi "debian" /etc/os-release; then
  
139
		sudo apt update
  
140
		sudo apt upgrade -y
  
141
	fi
  
142
  
  
143
	if grep -qi "fedora" /etc/os-release; then
  
144
		dnf check-update
  
145
		sudo dnf update -y
  
146
	fi
  
147
  
  
148
	if which flatpak > /dev/null 2>&1; then
  
149
		flatpak update -y
  
150
	fi
  
151
}