mirror of
https://github.com/javalsai/lidm.git
synced 2025-08-31 18:38:00 +02:00
Compare commits
3 Commits
v1.2.1
...
a22c6b4597
Author | SHA1 | Date | |
---|---|---|---|
a22c6b4597
|
|||
ab7666f561
|
|||
ee244be195
|
@@ -1,2 +1,2 @@
|
|||||||
[codespell]
|
[codespell]
|
||||||
skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects
|
skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects,./assets/pkg/aur/*/*.tar.*
|
||||||
|
17
.github/workflows/push.yml
vendored
17
.github/workflows/push.yml
vendored
@@ -12,7 +12,24 @@ jobs:
|
|||||||
name: Check
|
name: Check
|
||||||
uses: ./.github/workflows/check.yml
|
uses: ./.github/workflows/check.yml
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
check_paths:
|
||||||
|
name: Paths Filter
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
code_changed: ${{ steps.filter.outputs.code }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- id: filter
|
||||||
|
uses: dorny/paths-filter@v3
|
||||||
|
with:
|
||||||
|
filters: |
|
||||||
|
code:
|
||||||
|
- Makefile
|
||||||
|
- 'src/**'
|
||||||
|
- 'include/**'
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
|
needs: check_paths
|
||||||
|
if: github.event_name != 'push' || needs.check_paths.outputs.code_changed == 'true'
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
BAUD_RATE=38400
|
|
||||||
TERM_NAME=linux
|
|
||||||
|
|
||||||
TTY=tty7
|
|
||||||
EXEC_PATH=/bin/lidm
|
|
@@ -1,5 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
[ -r conf ] && . ./conf
|
|
||||||
|
|
||||||
exec utmpset -w $TTY
|
|
@@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
[ -r conf ] && . ./conf
|
|
||||||
|
|
||||||
if [ -x /sbin/getty -o -x /bin/getty ]; then
|
|
||||||
# busybox
|
|
||||||
GETTY=getty
|
|
||||||
elif [ -x /sbin/agetty -o -x /bin/agetty ]; then
|
|
||||||
# util-linux
|
|
||||||
GETTY=agetty
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec setsid ${GETTY} ${GETTY_ARGS} \
|
|
||||||
"${TTY}" "${TERM_NAME}" \
|
|
||||||
-n -l "${EXEC_PATH}" -o 7
|
|
Reference in New Issue
Block a user