VICE (Commodore 64)
  • editing the /home/pi/.profile so it no longer called the PiMAME menu and instead simply launched x64 to go directly into launching VICE (the C64 emulator)

    Can someone show me an example of this. Any help and I would be most indebted to you.
  • The /home/pi/.profile looks like this when you change it to boot up right to the C=64.

    I just put a # in front of the "python launchmenu.py" and a line under it that is just "x64" reboot and it goes right to the C=64 then.

    -Raymond Day

    # ~/.profile: executed by the command interpreter for login shells.
    # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
    # exists.
    # see /usr/share/doc/bash/examples/startup-files for examples.
    # the files are located in the bash-doc package.

    # the default umask is set in /etc/profile; for setting the umask
    # for ssh logins, install and configure the libpam-umask package.
    #umask 022

    # if running bash
    if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
    fi

    # set PATH so it includes user's private bin if it exists
    if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
    fi
    if [ "$DISPLAY" == "" ] && [ "$SSH_CLIENT" == "" ] && [ "$SSH_TTY" == "" ]; then
    cd /home/pi/pimame/pimame-menu/
    #python launchmenu.py
    x64
    fi

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!