forked from mortie/swaylock-effects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ErikReider/master
pull: Display image inside of indicator mortie#89
- Loading branch information
Showing
18 changed files
with
539 additions
and
302 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# For the full list of code style requirements, see sway's CONTRIBUTING.md | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
[*.{c,h,cmake,txt}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.{xml,yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[config] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,41 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
name: Build on Alpine ${{ matrix.arch }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: | ||
- x86_64 | ||
- aarch64 | ||
- armv7 | ||
- ppc64le | ||
- riscv64 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install latest Alpine Linux for ${{ matrix.arch }} | ||
uses: jirutka/setup-alpine@v1 | ||
with: | ||
arch: ${{ matrix.arch }} | ||
branch: ${{ matrix.arch == 'riscv64' && 'edge' || 'latest-stable' }} | ||
packages: > | ||
build-base | ||
cairo-dev | ||
libxkbcommon-dev | ||
linux-pam-dev | ||
meson | ||
scdoc | ||
wayland-dev | ||
wayland-protocols | ||
- name: Build | ||
run: | | ||
meson -Dgdk-pixbuf=disabled . output | ||
meson compile -C output --verbose | ||
shell: alpine.sh {0} |
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 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 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
Oops, something went wrong.