-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add controller support - graphical boot with plymouth - hide boot menu - disable watchdog - warn when installing to external drives - prevent installing to drives less than 55 GB in size - use more human readable disk descriptions - allow disk descriptions to be overridden - include 'probe.sh' script to gather information about devices - hide boot/install disk from list of disks - skip disk selection step if only a single disk is available - copy changes to improve clarity - dropped support for legacy boot - drop Steam bootstrap installation (was causing first boot to fail) - drop Advanced install option to avoid confusion - drop local install option - include frzr 0.15.1 with some changes to frzr-bootstrap to facilitate installer changes
- Loading branch information
Showing
100 changed files
with
1,036 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[Daemon] | ||
Theme=bgrt-chimera |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/ShadowBlip/InputPlumber/main/rootfs/usr/share/inputplumber/schema/device_profile_v1.json | ||
# Schema version number | ||
version: 1 | ||
|
||
kind: DeviceProfile | ||
name: Simple keyboard profile | ||
description: Minimal keyboard profile for OS installer | ||
|
||
mapping: | ||
# Dpad | ||
- name: D-Up | ||
source_event: | ||
gamepad: | ||
button: DPadUp | ||
target_events: | ||
- keyboard: KeyUp | ||
- name: D-Down | ||
source_event: | ||
gamepad: | ||
button: DPadDown | ||
target_events: | ||
- keyboard: KeyDown | ||
- name: D-Left | ||
source_event: | ||
gamepad: | ||
button: DPadLeft | ||
target_events: | ||
- keyboard: KeyLeft | ||
- name: D-Right | ||
source_event: | ||
gamepad: | ||
button: DPadRight | ||
target_events: | ||
- keyboard: KeyRight | ||
|
||
# Left analog stick | ||
- name: Left Stick Up | ||
source_event: | ||
gamepad: | ||
axis: | ||
name: LeftStick | ||
direction: up | ||
deadzone: 0.8 | ||
target_events: | ||
- keyboard: KeyUp | ||
- name: Left Stick Down | ||
source_event: | ||
gamepad: | ||
axis: | ||
name: LeftStick | ||
direction: down | ||
deadzone: 0.8 | ||
target_events: | ||
- keyboard: KeyDown | ||
- name: Left Stick Left | ||
source_event: | ||
gamepad: | ||
axis: | ||
name: LeftStick | ||
direction: left | ||
deadzone: 0.8 | ||
target_events: | ||
- keyboard: KeyLeft | ||
- name: Left Stick Right | ||
source_event: | ||
gamepad: | ||
axis: | ||
name: LeftStick | ||
direction: right | ||
deadzone: 0.8 | ||
target_events: | ||
- keyboard: KeyRight | ||
|
||
# Buttons | ||
- name: A Button | ||
source_event: | ||
gamepad: | ||
button: South | ||
target_events: | ||
- keyboard: KeyEnter |
Oops, something went wrong.