mirror of
https://github.com/alrayyes/dwm
synced 2023-11-14 15:56:31 +00:00
Compare commits
2 Commits
e7ac19c632
...
c4ce0c2640
Author | SHA1 | Date | |
---|---|---|---|
c4ce0c2640 | |||
f89039146e |
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ src/
|
|||||||
higherlearning-dwm*.xz
|
higherlearning-dwm*.xz
|
||||||
higherlearning-dwm*.gz
|
higherlearning-dwm*.gz
|
||||||
dwm*.gz
|
dwm*.gz
|
||||||
|
dwm*.xz
|
||||||
|
2
PKGBUILD
2
PKGBUILD
@ -34,7 +34,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
|
|||||||
"${_patches[@]}")
|
"${_patches[@]}")
|
||||||
|
|
||||||
md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
|
md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
|
||||||
'dda4ab6363b58a3b8e2cacf7166b6f74'
|
'598fcb5275d7f036807765370b5a226d'
|
||||||
'939f403a71b6e85261d09fc3412269ee'
|
'939f403a71b6e85261d09fc3412269ee'
|
||||||
'31a7569d7f3d43846f59e854ec5d1da0'
|
'31a7569d7f3d43846f59e854ec5d1da0'
|
||||||
'fbb786263f2d714b18368ff64779d669'
|
'fbb786263f2d714b18368ff64779d669'
|
||||||
|
@ -22,7 +22,7 @@ makepkg -si
|
|||||||
|
|
||||||
## Further Notes
|
## Further Notes
|
||||||
|
|
||||||
+ Default font is [Sauce Code Pro Nerd Font Mono](https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SourceCodePro) at 18pt
|
+ Default font is [Fira Code Nerd Font Mono](https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/FiraCode)
|
||||||
* When modifying [config.h](https://github.com/alrayyes/dwm/blob/master/config.h) be sure to run ```updpkgsums``` to update checksums before running ```makepkg -si```
|
* When modifying [config.h](https://github.com/alrayyes/dwm/blob/master/config.h) be sure to run ```updpkgsums``` to update checksums before running ```makepkg -si```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
4
config.h
4
config.h
@ -9,7 +9,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
|
|||||||
static const int showsystray = 1; /* 0 means no systray */
|
static const int showsystray = 1; /* 0 means no systray */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char *fonts[] = { "SauceCodePro Nerd Font:style=Regular:pixelsize=18:antialias=true:autohint=true" };
|
static const char *fonts[] = { "FuraCode Nerd Font:style=Regular:pixelsize=18:antialias=true:autohint=true" };
|
||||||
static const char col_gray1[] = "#222222";
|
static const char col_gray1[] = "#222222";
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
@ -108,7 +108,7 @@ static const Rule rules[] = {
|
|||||||
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
|
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Toggl Desktop", NULL, NULL, 0, 1, -1 },
|
{ "Toggl Desktop", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
|
{ "firefox", NULL, NULL, 1 << 8, 0, -1 },
|
||||||
{ "Gpodder", NULL, NULL, 1 << 3, 0, -1 },
|
{ "Gpodder", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
|
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },
|
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
|
@ -9,7 +9,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
|
|||||||
static const int showsystray = 1; /* 0 means no systray */
|
static const int showsystray = 1; /* 0 means no systray */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char *fonts[] = { "SauceCodePro Nerd Font:style=Regular:pixelsize=14:antialias=true:autohint=true" };
|
static const char *fonts[] = { "FuraCode Nerd Font:style=Regular:pixelsize=14:antialias=true:autohint=true" };
|
||||||
static const char col_gray1[] = "#222222";
|
static const char col_gray1[] = "#222222";
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
@ -108,7 +108,7 @@ static const Rule rules[] = {
|
|||||||
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
|
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Toggl Desktop", NULL, NULL, 0, 1, -1 },
|
{ "Toggl Desktop", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Iceweasel", NULL, NULL, 1 << 8, 0, -1 },
|
{ "iceweasel", NULL, NULL, 1 << 8, 0, -1 },
|
||||||
{ "Gpodder", NULL, NULL, 1 << 3, 0, -1 },
|
{ "Gpodder", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
|
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },
|
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
|
Loading…
Reference in New Issue
Block a user