Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,9 @@ jobs:
build:
name: Build UEFI executable
runs-on: ubuntu-24.04
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
steps:
- uses: actions/checkout@v6

- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: |
${{ secrets.PRIVKEY_FRAMEWORK_SYSTEM_UEFI_INPUTMODULES }}

- name: Setup Rust toolchain
run: rustup show

Expand All @@ -34,19 +27,12 @@ jobs:
lints:
name: Lints
runs-on: ubuntu-24.04
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
steps:
- uses: actions/checkout@v6

- name: Setup Rust toolchain
run: rustup show

- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: |
${{ secrets.PRIVKEY_FRAMEWORK_SYSTEM_UEFI_INPUTMODULES }}

- name: Run cargo fmt
run: cargo fmt --all -- --check

Expand Down
2 changes: 1 addition & 1 deletion src/drawing_12in.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub const BACKGROUND_COLOR: Rgb888 = Rgb888::new(0xFF, 0xFF, 0xFF); //0xF3, 0xF2
pub const BLACK_BAR: Rgb888 = Rgb888::new(0x33, 0x33, 0x33);

pub const WARN_X: i32 = 50 + WIDTH_I32 / 2;
pub const WARN_Y: i32 = HEIGHT_I32 - 250;
pub const WARN_Y: i32 = HEIGHT_I32 - 275;

#[derive(Default)]
pub struct StateBitmaps {
Expand Down