diff --git a/.github/workflows/bitbucket-mirror.yml b/.github/workflows/bitbucket-mirror.yml deleted file mode 100644 index f81d0f1..0000000 --- a/.github/workflows/bitbucket-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 }} diff --git a/.github/workflows/codeberg-mirror.yml b/.github/workflows/codeberg-mirror.yml deleted file mode 100644 index db046ee..0000000 --- a/.github/workflows/codeberg-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 }} diff --git a/.github/workflows/disroot-mirror.yml b/.github/workflows/disroot-mirror.yml deleted file mode 100644 index 21d1e01..0000000 --- a/.github/workflows/disroot-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 }} diff --git a/.github/workflows/gitdab-mirror.yml b/.github/workflows/gitdab-mirror.yml deleted file mode 100644 index 814ac3d..0000000 --- a/.github/workflows/gitdab-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 }} diff --git a/.github/workflows/gitea-mirror.yml b/.github/workflows/gitea-mirror.yml deleted file mode 100644 index fa53d44..0000000 --- a/.github/workflows/gitea-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 }} diff --git a/.github/workflows/gitlab-mirror.yml b/.github/workflows/gitlab-mirror.yml deleted file mode 100644 index 628c68a..0000000 --- a/.github/workflows/gitlab-mirror.yml +++ /dev/null @@ -1,16 +0,0 @@ -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 }} diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..a39f47a --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,39 @@ +# 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 }} diff --git a/.github/workflows/pagure-mirror.yml b/.github/workflows/pagure-mirror.yml deleted file mode 100644 index f010b79..0000000 --- a/.github/workflows/pagure-mirror.yml +++ /dev/null @@ -1,17 +0,0 @@ -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 - diff --git a/README.md b/README.md index 45f79c5..c53d337 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# archy-dwm +# yo-dwm ## DWM but cleaner and more usable -### Patches +### Applayed patches: - [alwayscenter](https://dwm.suckless.org/patches/alwayscenter) - [cool autostart](https://dwm.suckless.org/patches/cool_autostart) - [fullscreen](https://dwm.suckless.org/patches/fullscreen) @@ -18,18 +18,13 @@ ### Dependencies - `libxinerama-dev` - `libxft-bgra` for color emojies support -- `archy-slstatus` the status bar +- `yo-slstatus` the status bar -### Mirrors -* [GitHub](https://github.com/archy-linux/archy-dwm) - The upstream repository -* [GitLab](https://gitlab.com/archy-linux/archy-dwm) -* [NotABug](https://notabug.org/archy-linux/archy-dwm) - Not instant updates -* [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) +### Available in +[![GitHub](https://img.shields.io/badge/GitHub-Main%20repo-brightgreen?style=for-the-badge&logo=GitHub)](https://github.com/anas-elgarhy/dwm-anas) +[![GitLab](https://img.shields.io/badge/GitLab-Mirror%20repo-brightgreen?style=for-the-badge&logo=GitLab)](https://gitlab.com/anas-elgarhy/dwm-anas) +[![BitBucket](https://img.shields.io/badge/BitBucket-Mirror%20repo-brightgreen?style=for-the-badge&logo=BitBucket)](https://bitbucket.org/anas_elgarhy/dwm-anas) +[![Codeberg](https://img.shields.io/badge/Codeberg-Mirror%20repo-brightgreen?style=for-the-badge&logo=Codeberg)](https://codeberg.org/anas-elgarhy/dwm-anas) -### References: +### Refrences: - [XF86keysym](https://cgit.freedesktop.org/xorg/proto/x11proto/tree/XF86keysym.h)