sylware / nyanlinux (public) (License: AFFERO GPLv3) (since 2019-09-09) (hash sha1)
scripts for a lean, from scratch, amd hardware, linux distro
List of commits:
Subject Hash Author Date (UTC)
housekeeping 1d491adb072e20f5eba6ed6b9bd43aa42c6e400d Sylvain BERTRAND 2020-01-05 22:13:50
dwm addition (dota2 friendly edition) 9b1ee73aacde79f4831357484f6ede3d5b8bae9b Sylvain BERTRAND 2020-01-01 22:05:35
gfx stack update 3af4530977ef1b01b58184b8335c5dec184043f4 Sylvain BERTRAND 2019-12-29 18:29:34
gfx stack update 8d0a533fd0d9254794e52ccca3eb060884fb4103 Sylvain BERTRAND 2019-12-22 19:46:39
update libressl/gnutls (gnu is technically dying) 176392c0d069861eb5ad4dfaa88c8e82f37ff3be Sylvain BERTRAND 2019-12-22 19:44:31
gfx stack update 9ee999ade37cc3bf0028cc4d9cd0a6320fb04872 Sylvain BERTRAND 2019-12-16 19:40:10
fontconfig update with new lean build system 0c6bc4799fea2a88efccc0f84ad6ff8805f88504 Sylvain BERTRAND 2019-12-12 23:08:17
gfx stack update b2f427e870c7d08306b85aa6554e2d0a537f626e Sylvain BERTRAND 2019-12-09 18:21:12
dosfstools for fat32 d6df64f27c7f25e8c36de1e8f6bb2d89c0605827 Sylvain BERTRAND 2019-12-09 11:27:51
gfx stack update 1745824d280d1a172f69f6e7141a34d83798c4ab Sylvain BERTRAND 2019-12-02 03:33:06
gfx stack update 53b14f9e2383f3c5b24ff5ba47a97295ad778389 Sylvain BERTRAND 2019-11-24 20:50:01
enable mplayer av1 decoding with ffmpeg c77b02db60e924fe8473827903712d6456d0e04b Sylvain BERTRAND 2019-11-19 23:31:12
remove old vulkan loader f6c3134c6c5603ef3c8ca628b0aae6cfe2aa806c Sylvain BERTRAND 2019-11-19 20:24:12
added ffmpeg av1 decoding using dav1d 656ff5ec5cd4f66ad3d26e81ca9fc62a4a24f056 Sylvain BERTRAND 2019-11-19 20:15:06
gfx stack update f504d662bcef4ea5ee49de01a312b2b6eead3a72 Sylvain BERTRAND 2019-11-18 15:56:11
significant gfx stack update 81b1641e4a68d13bdb3207958c1b61f5c9178110 Sylvain BERTRAND 2019-11-12 17:19:01
st with alpha 40c4dd0ba37efa471f371b5ebb2c700791cf2e41 Sylvain BERTRAND 2019-10-29 04:12:09
gfx stack update 2e34313ea063d321682a21a4d1b18b33fd1c08b2 Sylvain BERTRAND 2019-10-28 19:42:48
add a direct into steam startup 2f9f5cdf6cc52bd91252d3320e84a75b51e9ba29 Sylvain BERTRAND 2019-10-27 18:38:37
gfx stack update 7f8dbe3e5666565b1d7dbd593894440dce671843 Sylvain BERTRAND 2019-10-24 23:08:53
Commit 1d491adb072e20f5eba6ed6b9bd43aa42c6e400d - housekeeping
Author: Sylvain BERTRAND
Author date (UTC): 2020-01-05 22:13
Committer name: Sylvain BERTRAND
Committer date (UTC): 2020-01-05 22:13
Parent(s): 9b1ee73aacde79f4831357484f6ede3d5b8bae9b
Signing key:
Tree: 1fdfca137a3452ec2c4eb838288bf7e5add52bc5
File Lines added Lines deleted
builders/dwm-0/config.h 5 5
File builders/dwm-0/config.h changed (mode: 100644) (index 16b5c02..14498b9)
... ... static const Rule rules[] = {
30 30 /* class instance title tags mask isfloating monitor */ /* class instance title tags mask isfloating monitor */
31 31 // { "Gimp", NULL, NULL, 0, 1, -1 }, // { "Gimp", NULL, NULL, 0, 1, -1 },
32 32 // { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, // { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
33 { "Steam", NULL, NULL, 0, 1, -1 },
33 { "Steam", NULL, NULL, 0, 0, -1 },
34 34 { "MPlayer", NULL, NULL, 0, 1, -1 }, { "MPlayer", NULL, NULL, 0, 1, -1 },
35 { NULL , NULL, "Celeste", 0, 1, -1 },
35 36 }; };
36 37
37 38 /* layout(s) */ /* layout(s) */
 
... ... static const Layout layouts[] = {
64 65 /* commands */ /* commands */
65 66 static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
66 67 static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
67 //TODO: put the complete command line
68 static const char *termcmd[] = { "/nyan/st/current/bin/st", "-g", "80x34", "-e", "/bin/sh", "-i", NULL };
69 static const char *linkscmd[] = { "/nyan/links/current/bin/links", "-g", NULL };
70 static const char *bgcmd[] = { "/root/bin/bg", NULL };
68 static const char *termcmd[] = { "/root/bin/dwm_st.sh", NULL };
69 static const char *linkscmd[] = { "/root/bin/dwm_links.sh", NULL };
70 static const char *bgcmd[] = { "/root/bin/dwm_bg.sh", NULL };
71 71
72 72 static Key keys[] = { static Key keys[] = {
73 73 /* modifier key function argument */ /* modifier key function argument */
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/sylware/nyanlinux

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/sylware/nyanlinux

Clone this repository using git:
git clone git://git.rocketgit.com/user/sylware/nyanlinux

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main