Featured

Sneaking Early Gemini Features Into Google Home

Gemini for Home still isn’t officially rolled out, but there’s a workaround floating around that lets you access part of the Gemini experience early: the upgraded Gemini voice pack, which is normally tied to the upcoming Home assistant revamp. On your phone, pop this into your browser: googlehome://assistant/voice/setup This deep-link forces the Google Home app to launch the new Voice Setup UI — the same one Google is reserving for the Gemini transition. If you’re using Chrome, pick the second option when it appears. The first one is just a Google search. You might see a “Continue to Home?” prompt,  hit Continue. You’re immediately given a choice of ten new voices, polished, ultra-natural, and clearly modeled after the more expressive Gemini TTS engine: Amaryllis – soft, airy, almost therapeutic Calathea – deeper, grounded Croton – bright, youthful Yarrow – calm, articulate They have that Gemini warmth, the same energy Google used in its AI Studio demos, not the old rob...

One-Click Launcher for Ollama GPT-OSS: Make AI Access Easy on Linux

 

 

Running large language models like GPT-OSS locally with Ollama gives you cutting-edge AI right on your Linux machine. But if you’re tired of typing out the same commands each session, why not simplify things with a one-click launcher? In this guide, you’ll learn how to create both a shell script and a graphical Desktop shortcut so you can launch your Ollama model instantly—no terminal typing required.

Why Use a Launcher?

  • Speed: Open your favorite AI in seconds, not minutes.

  • Convenience: Great for non-technical users or anyone who wants to skip memorizing commands.

  • Efficiency: Reduce repetitive actions and streamline your workflow.

Step 1: The Simple Shell Script

A shell script is the easiest way to automate starting Ollama with GPT-OSS.

  1. Open your terminal and create a new file:

    bash
    nano launch-gpt-oss.sh
  2. Add the following lines:

    bash
    #!/bin/bash ollama run gpt-oss:20b

    Change gpt-oss:20b to any model you prefer.

  3. Save and exit (press Ctrl+X, then Y, then Enter).

  4. Make it executable:

    bash
    chmod +x launch-gpt-oss.sh
  5. Now, to run it, simply type:

    bash
    ./launch-gpt-oss.sh

    Or, double-click in your file manager if your Linux desktop allows executable scripts.

Step 2: Create a Desktop Shortcut

Take it further by creating a clickable icon on your desktop:

  1. Create the Desktop file:

    bash
    nano ~/Desktop/ollama-gpt-oss.desktop
  2. Paste this:

    text
    [Desktop Entry] Type=Application Name=Ollama GPT-OSS Comment=Launch Ollama with GPT-OSS Exec=gnome-terminal -- bash -c "ollama run gpt-oss:20b; read" Icon=utilities-terminal Terminal=true Categories=Development;
    • Change gnome-terminal if you use a different terminal.

    • The read at the end keeps the window open so you can see outputs.

  3. Make it executable:

    bash
    chmod +x ~/Desktop/ollama-gpt-oss.desktop

Comments