Command Palette

The Command Palette is Glitch's built-in quick launcher for system administration commands. Open it with Ctrl+Shift+P or via the header menu → Command Palette.

How It Works

  1. Palette opens as a modal overlay with a search/filter input.
  2. Type to filter the 18 built-in commands by name.
  3. Click a command or press Enter on the highlighted row.
  4. The command is injected into the active terminal pane and executed by your shell.
  5. Palette closes automatically after selection.

All 18 Built-in Commands

#NameCommand
1System Update & Upgradesudo apt update && sudo apt upgrade -y
2Clean Package Cachesudo apt autoremove -y && sudo apt clean
3Clear Systemd Journal Logssudo journalctl --vacuum-time=3d
4Real-time Processes (htop)htop || top
5Disk Space Usagedf -h
6Live Memory Monitorfree -h -s 3
7List Storage Deviceslsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT
8Find Top 10 Largest Filessudo find / -type f -exec du -sh {} + 2>/dev/null | sort -rh | head -n 10
9List Listening Portssudo ss -tunlpa
10Show IPs (Local & Public)echo 'Internal: ' && hostname -I && echo 'External: ' && curl -s ifconfig.me && echo ''
11Live Network Connectionssudo netstat -antup
12Count Active Connectionsnetstat -an | wc -l
13Detailed System Infofastfetch || neofetch || uname -a
14List USB Deviceslsusb
15Show Kernel Boot Logssudo dmesg -T | tail -n 50
16System Uptime & Loaduptime
17List Zombie Processesps aux | awk '"[Zz]" ~ $8 {print $2, $11}'
18Kill Resource Hogging Processesps -eo pid,%mem,%cpu,comm --sort=-%cpu | head -n 6

After Running a Command

Once output appears in the terminal, you can:

  • Select the output and use Send to AI to get Glitch AI diagnostics (/shell mode).
  • Copy output with Ctrl+Shift+C.
  • Split the pane to run another command alongside.

Related