Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions .github/workflows/kiba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1234,36 +1234,36 @@ jobs:
--window-icon="/usr/share/kibaos/logo.png" \
--text="Welcome to KibaOS! What would you like to do?" \
--image-column=1 --column=" " --column="Action" --column="Description" \
"calamares" "Install KibaOS" "Install the system permanently to your disk" \
"chromium" "Web Browser" "Browse the internet" \
"org.kde.discover" "Software Center" "Discover and install new applications" \
"input-keyboard" "Keyboard Shortcuts" "View useful desktop shortcuts" \
"help-browser" "Online Wiki" "Read the technical documentation" \
"calamares" "πŸš€ Install KibaOS" "Install the system permanently to your disk" \
"chromium" "🌐 Web Browser" "Browse the internet" \
"org.kde.discover" "πŸ›οΈ Software Center" "Discover and install new applications" \
"input-keyboard" "⌨️ Keyboard Shortcuts" "View useful desktop shortcuts" \
"help-browser" "✨ Online Wiki" "Read the technical documentation" \
--hide-column=1 --print-column=2 \
--width=450 --height=500 --ok-label="Launch" --cancel-label="Close" 2>/dev/null)

[ -z "$CHOICE" ] && break

case "$CHOICE" in
"Install KibaOS")
"πŸš€ Install KibaOS")
sudo calamares &
break
;;
"Web Browser")
"🌐 Web Browser")
chromium &
break
;;
"Software Center")
"πŸ›οΈ Software Center")
plasma-discover &
break
;;
"Keyboard Shortcuts")
"⌨️ Keyboard Shortcuts")
(zenity --info --title="Keyboard Shortcuts" \
--window-icon="/usr/share/kibaos/logo.png" \
--text="<b>Standard KibaTV Shortcuts:</b>\n\n β€’ <b>Meta + T</b>: Terminal (Konsole)\n β€’ <b>Meta + W</b>: Overview (Window Grid)\n β€’ <b>Meta + S</b>: Search (KRunner)\n β€’ <b>Meta + A</b>: Quick Settings\n β€’ <b>Meta + E</b>: File Manager (Dolphin)\n β€’ <b>Meta + L</b>: Lock Screen\n β€’ <b>Meta + 1-9</b>: Activate Task Manager Entries" \
--text="<b>Standard KibaOS Shortcuts:</b>\n\n β€’ <b>Meta + T</b>: Terminal (Konsole)\n β€’ <b>Meta + W</b>: Overview (Window Grid)\n β€’ <b>Meta + S</b>: Search (KRunner)\n β€’ <b>Meta + A</b>: Quick Settings\n β€’ <b>Meta + E</b>: File Manager (Dolphin)\n β€’ <b>Meta + L</b>: Lock Screen\n β€’ <b>Meta + 1-9</b>: Activate Task Manager Entries" \
--width=450 2>/dev/null) &
;;
"Online Wiki")
"✨ Online Wiki")
chromium "https://github.com/WolfTech-Innovations/Kiba/blob/main/WIKI.md" &
break
;;
Expand All @@ -1277,6 +1277,7 @@ jobs:
[Desktop Entry]
Type=Application
Name=Kiba Welcome
Comment=Welcome to KibaOS
Exec=/usr/local/bin/kiba-welcome
Icon=start-here-kde-symbolic
Terminal=false
Expand Down
Loading