# Run Steam in gamepadui/big-picture mode at boot

### Pre config

<p class="callout info">You just need auto login an steam</p>

### Systemd-service

create sytemd service:

`/etc/systemd/system/steam-bigpicture.service`

```bash
[Unit]
Description=Steam Big Picture Mode
After=network.target

[Service]
User=YOUR_USER
ExecStart=/usr/bin/steam -gamepadui
Restart=on-failure
Environment=DISPLAY=:0
WorkingDirectory=/home/YOUR_USER

[Install]
WantedBy=graphical.target

```

### Or as auto-run script

Create `/etc/xdg/autostart/steam-big-picture.desktop`

Or: `~/.config/autostart/steam-big-picture.desktop`

```bash
[Desktop Entry]
Type=Application
Exec=steam -gamepadui
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=Steam Big Picture

```