1
0
mirror of https://github.com/alrayyes/dwm synced 2023-11-14 15:56:31 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
c4ce0c2640 Changed font to fira code 2019-11-10 18:49:54 +01:00
f89039146e Changed firefox class name 2019-10-04 10:21:41 +02:00
5 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ src/
higherlearning-dwm*.xz
higherlearning-dwm*.gz
dwm*.gz
dwm*.xz

View File

@ -34,7 +34,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
"${_patches[@]}")
md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
'dda4ab6363b58a3b8e2cacf7166b6f74'
'598fcb5275d7f036807765370b5a226d'
'939f403a71b6e85261d09fc3412269ee'
'31a7569d7f3d43846f59e854ec5d1da0'
'fbb786263f2d714b18368ff64779d669'

View File

@ -22,7 +22,7 @@ makepkg -si
## 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```
## License

View File

@ -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 showbar = 1; /* 0 means no 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_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@ -108,7 +108,7 @@ static const Rule rules[] = {
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
{ "Toggl Desktop", 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 },
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },

View File

@ -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 showbar = 1; /* 0 means no 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_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
@ -108,7 +108,7 @@ static const Rule rules[] = {
{ "Syncthing GTK", NULL, NULL, 0, 1, -1 },
{ "Toggl Desktop", 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 },
{ "Spotify", NULL, NULL, 1 << 3, 0, -1 },
{ "ncmpcpp", NULL, NULL, 1 << 3, 0, -1 },