Skip to content
Closed
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
10 changes: 6 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ result = subprocess.run(
"--column=","--column=Key","--column=Feature",
"--hide-column=2","--print-column=2",
"--separator=,",
"--width=390","--height=260",
"--width=450","--height=500",
"--ok-label=Apply","--cancel-label=Cancel",
] + rows,
capture_output=True, text=True
Expand Down Expand Up @@ -909,7 +909,7 @@ while true; do
"shortcuts" "Keyboard Shortcuts" "View useful desktop shortcuts" \
"wiki" "Online Wiki" "Read the technical documentation" \
--hide-column=1 --print-column=1 \
--width=450 --height=580 --ok-label="Launch" --cancel-label="Close" 2>/dev/null)
--width=450 --height=500 --ok-label="Launch" --cancel-label="Close" 2>/dev/null)

[ -z "$CHOICE" ] && break

Expand All @@ -922,8 +922,9 @@ while true; do
files) cutefish-filemanager & break ;;
screenshot) cutefish-screenshot & break ;;
accessibility) kiba-access & ;;
info) (fastfetch | zenity --text-info \
--title="KibaOS System Information") & ;;
info) (fastfetch --logo none --pipe true --no-color-blocks | zenity --text-info \
--title="KibaOS System Information" \
--width=450 --height=500) & ;;
shortcuts)
zenity --list --title="KibaOS Shortcuts" \
--column="Action" --column="Shortcut" \
Expand All @@ -933,6 +934,7 @@ while true; do
"File Manager" "Meta + E" \
"Accessibility" "Statusbar icon or kiba-access" \
"Apply theme" "kiba-set theme dark|light" \
--width=450 --height=500 \
--ok-label="Close" --cancel-label="Close" 2>/dev/null &
;;
wiki)
Expand Down
Loading