Skip to content

Commit 5af07e4

Browse files
committed
Add screenshot and description to README
1 parent 1856b9b commit 5af07e4

File tree

4 files changed

+40
-21
lines changed

4 files changed

+40
-21
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
# PiBootstrapper
22
Windows app to configure Raspbian SD card image before first boot
3+
4+
[Download](https://github.com/t1m0thyj/PiBootstrapper/releases/latest)
5+
6+
![Screenshot](/screenshot.png)
7+
8+
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.

screenshot.png

42.8 KB
Loading

src/MainForm.Designer.cs

Lines changed: 33 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private void UpdateDriveList()
3535
string itemName = d.Name;
3636
if (d.VolumeLabel.Length > 0)
3737
{
38-
itemName += " (" + d.VolumeLabel + ")";
38+
itemName += " - " + d.VolumeLabel;
3939
}
4040

4141
driveComboBox.Items.Add(itemName);

0 commit comments

Comments
 (0)