Skip to content

Commit

Permalink
Add screenshot and description to README
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed Sep 15, 2018
1 parent 1856b9b commit 5af07e4
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 21 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# PiBootstrapper
Windows app to configure Raspbian SD card image before first boot

[Download](https://github.com/t1m0thyj/PiBootstrapper/releases/latest)

![Screenshot](/screenshot.png)

Setting up Wi-Fi on a Raspberry Pi with a display directly connected is usually easy to do in Raspbian. However, if you want to setup a headless Pi or connect to a university's enterprise network, this requires editing configuration files manually and is less straightforward. This app lets you set up Wi-Fi right after flashing an SD card image for your Pi while the SD card is still in your Windows PC. It can automatically generate the Wi-Fi configuration for both personal and enterprise networks and also enable SSH (Secure Shell) login. After bootstrapping the Pi with this app, it should connect to Wi-Fi right away when it boots and be accessible remotely over the network without any further setup necessary.
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 33 additions & 20 deletions src/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void UpdateDriveList()
string itemName = d.Name;
if (d.VolumeLabel.Length > 0)
{
itemName += " (" + d.VolumeLabel + ")";
itemName += " - " + d.VolumeLabel;
}

driveComboBox.Items.Add(itemName);
Expand Down

0 comments on commit 5af07e4

Please sign in to comment.