Skip to content

Instantly share code, notes, and snippets.

How to setup RetroPie on Ubuntu Server (x86 NOT RASPBERRY PI'S)



Automated Script I made and still being updated (USE THIS NOW)

Retropie_Setup_x86 (UNOFFICIAL)










GIST NOT BEING WORKED ON ANYMORE

@tbrautaset
tbrautaset / gist:7492561315a8c71d0588f110585e2cc3
Created December 5, 2021 20:05 — forked from djwisdom/gist:3272510
The ultimate Arch Linux install script
#!/bin/bash
#-------------------------------------------------------------------------------
#Created by helmuthdu mailto: helmuthdu[at]gmail[dot]com
#Inspired by Andreas Freitag, aka nexxx script
#-------------------------------------------------------------------------------
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
@tbrautaset
tbrautaset / pantheon_install.sh
Created January 8, 2021 10:23 — forked from cinco/pantheon_install.sh
archlinux install pantheon
#!/bin/bash
#remove gnome e gnome-shell
#pacman -Rcns gnome-shell gnome gnome-extra
#remove pacotes orfãos
#sudo pacman -Rs $(pacman -Qdtq)
#sudo pacman -S pantheon-session-git cerbere-git gala-git wingpanel-git pantheon-applications-menu-git plank pantheon-default-settings-git pantheon-dpms-helper-git elementary-icon-theme gtk-theme-elementary-git elementary-wallpapers-git wingpanel-indicator-power-git pantheon-print-git pantheon-polkit-agent-git elementary-icon-theme-git lightdm-pantheon-greeter-git ttf-dejavu ttf-droid ttf-freefont ttf-liberation pantheon-files-git pantheon-terminal-git pantheon-code-git pantheon-calculator-git pantheon-music-git pantheon-videos-git pantheon-calendar-git wingpanel-indicator-datetime-git pantheon-screenshot pantheon-photos-git pantheon-camera-git switchboard-git
aurman -S cerbere-git contractor-git elementary-icon-theme-git elementary-wallpapers-git file-roller gala-git geary granite-git gtk-theme-elementary-git lightdm lightdm-pantheon-greeter-git networkmanager pantheon-
@tbrautaset
tbrautaset / wireguard-over-tcp.md
Created December 18, 2020 08:50
WireGuard over TCP with udptunnel

WireGuard over TCP with udptunnel

udptunnel is a small program which can tunnel UDP packets bi-directionally over a TCP connection. Its primary purpose (and original motivation) is to allow multi-media conferences to traverse a firewall which allows only outgoing TCP connections.

Server

# udptunnel -s 443 127.0.0.1/51820

Client

@tbrautaset
tbrautaset / markdown-details-collapsible.md
Created December 9, 2020 08:50 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

A collapsible section containing markdown

Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets
@tbrautaset
tbrautaset / github-to-bitbucket
Created November 30, 2020 12:46 — forked from sangeeths/github-to-bitbucket
Forking a Github repo to Bitbucket
Go to Bitbucket and create a new repository (its better to have an empty repo)
git clone git@bitbucket.org:abc/myforkedrepo.git
cd myforkedrepo
Now add Github repo as a new remote in Bitbucket called "sync"
git remote add sync git@github.com:def/originalrepo.git
Verify what are the remotes currently being setup for "myforkedrepo". This following command should show "fetch" and "push" for two remotes i.e. "origin" and "sync"
git remote -v