RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. desktop
    Log in to post
    • All categories
    • W

      Dolphin audio lag

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support linux mint 19 desktop dolphin audio delay audio lag
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • ZangdaarrZ

      Install retropie on an "old" computer

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support hardware desktop retropie setup
      5
      0 Votes
      5 Posts
      15k Views
      markyh444M

      @ChaosFox or like @mitu says, install Ubuntu and then Retropie...

    • M

      Retropie no longer loads desktop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support support pie3 desktop launch problem
      5
      0 Votes
      5 Posts
      748 Views
      mituM

      @mauroque said in Retropie no longer loads desktop:

      could be a dick too and mention how nobody helped me with my controller problems with PS1 games last year.

      Looking at your topic from last year, I don't see this to be true - you got help. How about your come back in another year or so ?

    • L

      Ports won't launch from Emulation Station

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support ports kodi desktop pixel
      3
      0 Votes
      3 Posts
      2k Views
      B

      Okay, here's what I've got in es_systems.cfg

      <system> <name>ports</name> <fullname>Ports</fullname> <path>/home/pi/RetroPie/roms/ports</path> <extension>.sh .SH</extension> <command>bash %ROM%</command> <platform>pc</platform> <theme>ports</theme> </system>

      And then put this in/home/pi/RetroPie/roms/ports/Kodi.sh

      #!/bin/bash "/opt/retropie/supplementary/runcommand/runcommand.sh" 0 _PORT_ "kodi" ""
    • D

      [SOLVED] Time dependent startup into either ES or Desktop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support autostart help emmulationstati help desktop piclock
      9
      0 Votes
      9 Posts
      762 Views
      D

      Resolved it by configuring retropie to boot to the command line and then i'll edit .bashrc to house the if logic to launch X or ES depending on TOD and of course

      if [ "`tty`" = "/dev/tty1" ]

      Was much easier than I was trying to make it...

      ##### # Set the hours between which PiClock will Launch #### minHour=6 maxHour=9 #Get Current Hour cHour=$(date +%H) # Get current time and time of boot. # calculate minutes since boot cSec=$(date +%s) sSec=$(date +%s -d "$(uptime -s)") uMin=$(( ($cSec - $sSec)/60 )) # Ensure that we are within 2 minutes of boot. This ensures that user can exit ES to the command line # without this script re-launching ES in an endless loop if [[ $uMin -le 2 ]]; then # Ensure this is tty1 if [[ "`tty`" = "/dev/tty1" ]]; then # If between min and max hour then startx and PiClock else execute autorun if [[ $cHour -ge $minHour && $cHour -lt $maxHour ]]; then startx else bash "/opt/retropie/configs/all/autorun.sh" fi fi fi

      The issue I see is trying to drop to the command line from ES in which case I believe it will just launch back into ES... i'm ok with this. Maybe some other unintended consequences but I'll find out soon enough.

      Edit: Added an additional If statement to check for minutes since boot so that one can successfully drop from ES to the CL without

    • 7

      Back to the Desktop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop
      7
      0 Votes
      7 Posts
      897 Views
      mituM

      @Thorr69 NOOBS allows you to 'multi-boot' between different OS-es, so there are actually 2 installations - one for Raspbian and one for RetroPie.

      @79goat5 If you want to switch back to full Raspbian - the other OS - you should use the OS chooser displayed at boot (https://github.com/raspberrypi/noobs/blob/master/README.md), you cannot start the full Raspbian desktop from within RetroPie.

    • N

      Add/Remove Software missing in menu

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie 3b+ desktop add software remove software
      6
      0 Votes
      6 Posts
      2k Views
      N

      Aha! I found it!
      I had to type ''sudo apt-get install pi-package'' in terminal.
      Source: https://www.raspberrypi.org/forums/viewtopic.php?t=127825
      Thanks!

    • S

      Help with alternative desktop enviroment

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop
      5
      0 Votes
      5 Posts
      583 Views
      S

      @mitu thanks mitu will do

    • N

      run retropie/emulationstation without desktop environment first?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop environment retropie x86
      1
      0 Votes
      1 Posts
      375 Views
      No one has replied
    • A

      Running the X-Windows Desktop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop
      7
      0 Votes
      7 Posts
      4k Views
      A

      Hi @mitu , not sure why, but it works now.

      Will also run the apt-get -f install, just in case.

      Thanks!

    • DarkkMatterD

      Retropie with a full Desktop Environment?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie raspbian desktop
      6
      0 Votes
      6 Posts
      19k Views
      jonnykeshJ

      @doubleeuroz It's been a while since I installed this way but I'm almost sure that synaptic is included when you install the LXDE/PIXEL Desktop on top of Raspbian Lite.

    • G

      Raspbian Desktop crashes a few seconds after boot

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop 4.4 stretch jessie
      2
      0 Votes
      2 Posts
      1k Views
      G

      My bad, I forgot I needed to disable the splash screen for this to work.

      see here

    • G2bbG

      Raspbian Jessie Environment missing key items

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop desktop environ main menu settings raspbian jessie
      3
      0 Votes
      3 Posts
      1k Views
      G2bbG

      Thank you @mitu for the quick and, arguably, more importantly, accurate information. Too many times I have been given a solution that just leads me down a rabbit hole that never ends but this was a one-stop solution.!

    • R

      Switch to desktop with CLI (not startx)

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support systemctl starx desktop switch to deskt
      2
      0 Votes
      2 Posts
      2k Views
      mituM

      @rasp_renegade said in Switch to desktop with CLI (not startx):

      What am I doing wrong?

      Did you install the desktop environment on your system ? As noted in the https://retropie.org.uk/docs/FAQ/#where-did-the-desktop-go, you need to install the Pixel DM from the script, then exit ES and execute startx only.

    • deepthawD

      Larger case?

      Watching Ignoring Scheduled Pinned Locked Moved Projects and Themes case question desktop
      2
      0 Votes
      2 Posts
      723 Views
      cyperghostC

      @tonytoon Take a look to the NESPi case from retroflag

      http://retroflag.com/

      It's a nice finish with fron USB available and it provides enough ROM for switches ... I think a 1.8" HDD will also fit with an ease

    • H

      Boot on Desktop but automatically quits to tty after a few seconds

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot desktop xsession
      9
      0 Votes
      9 Posts
      4k Views
      ClydeC

      @mitu Thanks, that also was my first guess (although I mentioned it secondly ;) ), but the other options seemed probable, too.

    • G

      Shortcut for raspbian desktop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support raspbian desktop
      3
      0 Votes
      3 Posts
      2k Views
      G

      Thank you.

    • BenMcLeanB

      Pixel desktop quit working? (sort of)

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support desktop retropiemenu emulationstatio
      3
      0 Votes
      3 Posts
      1k Views
      BenMcLeanB

      I updated and now I can't get it to start at all. Not even from the terminal

    • P

      On Ubuntu Desktop After picking a game it shows desktop.

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support ubuntu 16.04 desktop starting game
      1
      0 Votes
      1 Posts
      573 Views
      No one has replied
    • T

      Plz help me

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support monitor gui desktop question questions
      3
      -1 Votes
      3 Posts
      1k Views
      T

      @thewinterdojer yes it's also the emu station
      Menu