Compare commits
3 commits
89adca6574
...
fd829d6d88
Author | SHA1 | Date | |
---|---|---|---|
fd829d6d88 | |||
8d49ee09de | |||
540a9eff7f |
9 changed files with 132 additions and 48 deletions
17
.github/workflows/bitbucket-mirror.yml
vendored
Normal file
17
.github/workflows/bitbucket-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to bitbucket
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
bitbucket-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in bitbucket
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://anas-elgarhy@bitbucket.org/anas_elgarhy/archy-dwm.git'
|
||||||
|
REMOTE_NAME: bitbucket
|
||||||
|
GIT_USERNAME: anas_elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.BITBUCKET_TOKEN }}
|
17
.github/workflows/codeberg-mirror.yml
vendored
Normal file
17
.github/workflows/codeberg-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to codeberg
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
codeberg-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in codeberg
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://codeberg.org/archy-linux/archy-dwm.git'
|
||||||
|
REMOTE_NAME: codeberg
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}
|
17
.github/workflows/disroot-mirror.yml
vendored
Normal file
17
.github/workflows/disroot-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to disroot
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
disroot-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in git.disroot
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://git.disroot.org/archy-linux/archy-dwm.git'
|
||||||
|
REMOTE_NAME: disroot
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.DISROOT_TOKEN }}
|
17
.github/workflows/gitdab-mirror.yml
vendored
Normal file
17
.github/workflows/gitdab-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to Gitdab
|
||||||
|
on: [ push ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
gitdab-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in Gitdab
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://gitdab.com/archy-linux/archy-dwm.git'
|
||||||
|
REMOTE_NAME: gitdab
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.GITDAB_TOKEN }}
|
17
.github/workflows/gitea-mirror.yml
vendored
Normal file
17
.github/workflows/gitea-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to Gitea
|
||||||
|
on: [ push ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
gitea-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in Gitea
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://gitea.com/archy-linux/archy-dwm.git'
|
||||||
|
REMOTE_NAME: gitea
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.GITEA_TOKEN }}
|
16
.github/workflows/gitlab-mirror.yml
vendored
Normal file
16
.github/workflows/gitlab-mirror.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Mirror the repo to gitlab
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
gitlab-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in gitlab
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://gitlab.com/archy-linux/archy-dwm'
|
||||||
|
GIT_USERNAME: Anas-Elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.GITLAP_TOKEN }}
|
39
.github/workflows/mirror.yml
vendored
39
.github/workflows/mirror.yml
vendored
|
@ -1,39 +0,0 @@
|
||||||
# This is a basic workflow that is manually triggered
|
|
||||||
name: Mirror repo
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
mirror:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: mirror in gitlab
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- uses: yesolutions/mirror-action@master
|
|
||||||
with:
|
|
||||||
REMOTE: 'https://gitlab.com/anas-elgarhy/dwm-anas.git'
|
|
||||||
GIT_USERNAME: Anas-Elgarhy
|
|
||||||
GIT_PASSWORD: ${{ secrets.GITLAP_TOKEN }}
|
|
||||||
|
|
||||||
# - name: mirror in bitbucket
|
|
||||||
# uses: actions/checkout@v3
|
|
||||||
# with:
|
|
||||||
# fetch-depth: 0
|
|
||||||
# - uses: yesolutions/mirror-action@master
|
|
||||||
# with:
|
|
||||||
# REMOTE: 'https://anas_elgarhy@bitbucket.org/anas_elgarhy/dwm-anas.git'
|
|
||||||
# REMOTE_NAME: bitbucket
|
|
||||||
# GIT_USERNAME: anas_elgarhy
|
|
||||||
# GIT_PASSWORD: ${{ secrets.BITBUCKET_TOKEN }}
|
|
||||||
|
|
||||||
- name: mirror in codeberg
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- uses: yesolutions/mirror-action@master
|
|
||||||
with:
|
|
||||||
REMOTE: 'https://codeberg.org/anas-elgarhy/dwm-anas.git'
|
|
||||||
REMOTE_NAME: codeberg
|
|
||||||
GIT_USERNAME: anas-elgarhy
|
|
||||||
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}
|
|
17
.github/workflows/pagure-mirror.yml
vendored
Normal file
17
.github/workflows/pagure-mirror.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Mirror the repo to pagure
|
||||||
|
on: [ push ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
gitdab-mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in Gitdab
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://gitdab.com/archy-linux/archy-dwm.git'
|
||||||
|
REMOTE_NAME: gitdab
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
|
23
README.md
23
README.md
|
@ -1,7 +1,7 @@
|
||||||
# yo-dwm
|
# archy-dwm
|
||||||
## DWM but cleaner and more usable
|
## DWM but cleaner and more usable
|
||||||
|
|
||||||
### Applayed patches:
|
### Patches
|
||||||
- [alwayscenter](https://dwm.suckless.org/patches/alwayscenter)
|
- [alwayscenter](https://dwm.suckless.org/patches/alwayscenter)
|
||||||
- [cool autostart](https://dwm.suckless.org/patches/cool_autostart)
|
- [cool autostart](https://dwm.suckless.org/patches/cool_autostart)
|
||||||
- [fullscreen](https://dwm.suckless.org/patches/fullscreen)
|
- [fullscreen](https://dwm.suckless.org/patches/fullscreen)
|
||||||
|
@ -18,13 +18,18 @@
|
||||||
### Dependencies
|
### Dependencies
|
||||||
- `libxinerama-dev`
|
- `libxinerama-dev`
|
||||||
- `libxft-bgra` for color emojies support
|
- `libxft-bgra` for color emojies support
|
||||||
- `yo-slstatus` the status bar
|
- `archy-slstatus` the status bar
|
||||||
|
|
||||||
### Available in
|
### Mirrors
|
||||||
[](https://github.com/anas-elgarhy/dwm-anas)
|
* [GitHub](https://github.com/archy-linux/archy-dwm) - The upstream repository
|
||||||
[](https://gitlab.com/anas-elgarhy/dwm-anas)
|
* [GitLab](https://gitlab.com/archy-linux/archy-dwm)
|
||||||
[](https://bitbucket.org/anas_elgarhy/dwm-anas)
|
* [NotABug](https://notabug.org/archy-linux/archy-dwm) - Not instant updates
|
||||||
[](https://codeberg.org/anas-elgarhy/dwm-anas)
|
* [Codeberg](https://codeberg.org/archy-linux/archy-dwm)
|
||||||
|
* [Gitea](https://gitea.com/archy-linux/archy-dwm)
|
||||||
|
* [Gitdab](https://gitdab.com/archy-linux/archy-dwm)
|
||||||
|
* [Pagure](https://pagure.io/archy-dwm)
|
||||||
|
* [Bitbucket](https://bitbucket.org/anas_elgarhy/archy-dwm)
|
||||||
|
* [disroot](https://git.disroot.org/archy-linux/archy-dwm)
|
||||||
|
|
||||||
### Refrences:
|
### References:
|
||||||
- [XF86keysym](https://cgit.freedesktop.org/xorg/proto/x11proto/tree/XF86keysym.h)
|
- [XF86keysym](https://cgit.freedesktop.org/xorg/proto/x11proto/tree/XF86keysym.h)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue