Compare commits
No commits in common. "fd829d6d88649edae51c91ade39bd25e15320c80" and "89adca657420abe7eaa3f6aa47947fc9cdcbff82" have entirely different histories.
fd829d6d88
...
89adca6574
9 changed files with 48 additions and 132 deletions
17
.github/workflows/bitbucket-mirror.yml
vendored
17
.github/workflows/bitbucket-mirror.yml
vendored
|
@ -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 }}
|
|
17
.github/workflows/codeberg-mirror.yml
vendored
17
.github/workflows/codeberg-mirror.yml
vendored
|
@ -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 }}
|
|
17
.github/workflows/disroot-mirror.yml
vendored
17
.github/workflows/disroot-mirror.yml
vendored
|
@ -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 }}
|
|
17
.github/workflows/gitdab-mirror.yml
vendored
17
.github/workflows/gitdab-mirror.yml
vendored
|
@ -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 }}
|
|
17
.github/workflows/gitea-mirror.yml
vendored
17
.github/workflows/gitea-mirror.yml
vendored
|
@ -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 }}
|
|
16
.github/workflows/gitlab-mirror.yml
vendored
16
.github/workflows/gitlab-mirror.yml
vendored
|
@ -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 }}
|
|
39
.github/workflows/mirror.yml
vendored
Normal file
39
.github/workflows/mirror.yml
vendored
Normal file
|
@ -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 }}
|
17
.github/workflows/pagure-mirror.yml
vendored
17
.github/workflows/pagure-mirror.yml
vendored
|
@ -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
|
|
||||||
|
|
23
README.md
23
README.md
|
@ -1,7 +1,7 @@
|
||||||
# archy-dwm
|
# yo-dwm
|
||||||
## DWM but cleaner and more usable
|
## DWM but cleaner and more usable
|
||||||
|
|
||||||
### Patches
|
### Applayed 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,18 +18,13 @@
|
||||||
### Dependencies
|
### Dependencies
|
||||||
- `libxinerama-dev`
|
- `libxinerama-dev`
|
||||||
- `libxft-bgra` for color emojies support
|
- `libxft-bgra` for color emojies support
|
||||||
- `archy-slstatus` the status bar
|
- `yo-slstatus` the status bar
|
||||||
|
|
||||||
### Mirrors
|
### Available in
|
||||||
* [GitHub](https://github.com/archy-linux/archy-dwm) - The upstream repository
|
[](https://github.com/anas-elgarhy/dwm-anas)
|
||||||
* [GitLab](https://gitlab.com/archy-linux/archy-dwm)
|
[](https://gitlab.com/anas-elgarhy/dwm-anas)
|
||||||
* [NotABug](https://notabug.org/archy-linux/archy-dwm) - Not instant updates
|
[](https://bitbucket.org/anas_elgarhy/dwm-anas)
|
||||||
* [Codeberg](https://codeberg.org/archy-linux/archy-dwm)
|
[](https://codeberg.org/anas-elgarhy/dwm-anas)
|
||||||
* [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)
|
|
||||||
|
|
||||||
### References:
|
### Refrences:
|
||||||
- [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