Skip to content

Commit ce133df

Browse files
remove games, fix ollama scriptsRun
1 parent 443b137 commit ce133df

18 files changed

Lines changed: 60 additions & 38 deletions

usr/share/biglinux/biglinux-settings/ai/chatboxRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"ChatBox Install"
2929
zenityText=$"Instaling ChatBox, Please wait..."
30+
else
31+
zenityTitle=$"ChatBox Uninstall"
32+
zenityText=$"Uninstaling ChatBox, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/kritaRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Krita Install"
2929
zenityText=$"Instaling Krita, Please wait..."
30+
else
31+
zenityTitle=$"Krita Uninstall"
32+
zenityText=$"Uninstaling Krita, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/lmStudioRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"LM Studio Install"
2929
zenityText=$"Instaling LM Studio, Please wait..."
30+
else
31+
zenityTitle=$"LM Studio Uninstall"
32+
zenityText=$"Uninstaling LM Studio, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/ollamaAmdRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Ollama ROCm Install"
2929
zenityText=$"Instaling Ollama ROCm, Please wait..."
30+
else
31+
zenityTitle=$"Ollama ROCm Uninstall"
32+
zenityText=$"Unistaling Ollama ROCm, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/ollamaCpuRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Ollama Install"
2929
zenityText=$"Instaling Ollama, Please wait..."
30+
else
31+
zenityTitle=$"Ollama Uninstall"
32+
zenityText=$"Unistaling Ollama, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/ollamaLabRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Ollama Lab Install"
2929
zenityText=$"Instaling Ollama Lab, Please wait..."
30+
else
31+
zenityTitle=$"Ollama Lab Uninstall"
32+
zenityText=$"Unistaling Ollama Lab, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/ollamaNvidiaRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Ollama CUDA Install"
2929
zenityText=$"Instaling Ollama CUDA, Please wait..."
30+
else
31+
zenityTitle=$"Ollama CUDA Uninstall"
32+
zenityText=$"Unistaling Ollama CUDA, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

usr/share/biglinux/biglinux-settings/ai/ollamaVulkanRun.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ mkfifo "$pipePath"
2727
if [[ "$function" == "install" ]]; then
2828
zenityTitle=$"Ollama Vulkan Install"
2929
zenityText=$"Instaling Ollama, Please wait..."
30+
else
31+
zenityTitle=$"Ollama Vulkan Uninstall"
32+
zenityText=$"Unistaling Ollama Vulkan, Please wait..."
3033
fi
3134
runAsUser "zenity --progress --title=\"$zenityTitle\" --text=\"$zenityText\" --pulsate --auto-close --no-cancel < '$pipePath'" &
3235

Lines changed: 7 additions & 0 deletions
Loading

usr/share/biglinux/biglinux-settings/main.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from devices_page import DevicesPage
1414
from docker_page import DockerPage
1515
from gi.repository import Adw, Gdk, Gio, GLib, Gtk
16-
from performance_games_page import PerformanceGamesPage
16+
from performance_page import PerformanceGamesPage
1717
from preload_page import PreloadPage
1818
from system_page import SystemPage
1919
from usability_page import UsabilityPage
@@ -267,10 +267,10 @@ def setup_ui(self):
267267
"class": DockerPage,
268268
},
269269
{
270-
"label": _("Performance and Games"),
271-
"icon": "games-symbolic",
272-
"id": "perf_games",
273-
"class": PerformanceGamesPage,
270+
"label": _("Performance"),
271+
"icon": "performance-symbolic",
272+
"id": "performance",
273+
"class": PerformancePage,
274274
},
275275
]
276276

0 commit comments

Comments
 (0)