1
Wejdź sobie do katalogu, który wskazuje błąd:
Konkretnie to błąd jest chyba w skrypcie https://github.com/manilarome/lightdm-we...grounds.js
w poniższej funkcji:
a dokładnie w kawałku:
Cytat:CONSOLE LOG [ERROR] theme_utils.dirlist(): Błąd podczas otwierania katalogu „/usr/share/backgrounds/linuxmint-ulyssa/Creditsi zmień sobie nazwę pliku Credits na Credits.txt bo skrypty tego theme glorious chyba błędnie traktują ten plik jako katalog do przeszukania.
Konkretnie to błąd jest chyba w skrypcie https://github.com/manilarome/lightdm-we...grounds.js
w poniższej funkcji:
Kod:
// Find image files recursively and save it to an array
_findImages(dirlist) {
let images = [],
subdirs = [],
recursion = 0;
// Check image files/dir, and push it to its respective array
for (let file of dirlist) {
if (file.match(/(png|PNG)|(jpg|JPEG)|(bmp|BMP)/) ) {
images.push(file);
} else if (!file.match(/\w+\.\w+/)) {
subdirs.push(file);
}
}
// Search recursively
if (subdirs.length && recursion < 3) {
recursion++;
for (let dir of subdirs) {
let list = greeterutil.dirlist(dir);
if (list && list.length) {
images.push.apply(images, this._findImages(list));
}
}
}
// Return array of images
return images;
}
Kod:
else if (!file.match(/\w+\.\w+/)) {
subdirs.push(file);
}
Zasady forum | Poradniki i najczęstsze pytania | 90% odpowiedzi na wszystkie pytania
A imię jego czterdzieści i cztery.
A imię jego czterdzieści i cztery.