Установка обоев в NetBSD JWM

Возможно, сеанс init вызывается вместо системного init. Попробуйте отключить переменную UPSTART _ SESSION

env -u UPSTART_SESSION initctl list
env -u UPSTART_SESSION initctl start uptest

и т.д.

-121--289833-

Более эффективно, сделать это с помощью egrep :

egrep '^chr10{space or tab}' cov.txt

Или если все содержимое похоже на то, что вы показали,

grep -w chr10 cov.txt
-121--96765-

я бы перезагрузил базовую систему в другой каталог.

debootstrap --variant=minbase --arch=amd64 jessie /tmp/bootstrap http://ftp.us.debian.org/debian/

Затем скопируйте все файлы из/tmp/bootstrap/bin в/bin, сохраняя разрешения.

cp -a /tmp/bootstrap/bin/* /bin/

Теперь многие (и основные) ваши файлы в/bin должны быть в порядке, и вы должны иметь возможность видеть, которые не были тронуты с помощью метки времени (старые файлы могут иметь неправильные разрешения).

Для остальных можно использовать

apt-get install --reinstall PACKAGE

, чтобы вернуть разрешения.

Вы можете найти пакет в файле с помощью

dpkg -S /path/to/file

Это даже сценарий...

Удачи!

0
10.06.2018, 09:31
2 ответа

К цитируют авторов ,

Configuration of JWM is done by editing ".jwmrc".

[...]

Virtual desktops are controlled with the Desktops tag. Within this tag the following attributes are supported.

  • width The number of virtual desktops in the horizontal direction. The default is 4.
  • height The number of virtual desktops in the vertical direction. The default is 1. Within the Desktops tag the following tags are supported.

    • Background The default background for desktops. The type attribute determines the type of background and the text contained within this tag is the value.

      Valid types are:

      • solid A solid color. See Colors. This is the default.
      • gradient A gradient color. See Colors.
      • image A stretched image.
      • scale A scaled image.
      • tile A tiled image.
      • command A command to be run for setting the background.
1
28.01.2020, 02:43

Вы можете установить фоновое изображение в интерактивном режиме, если вы установите feh.

feh --no-fehbg --bg-fill some-image.jpg

(Я использую дополнительный переключатель --no-fehbg, чтобы избежать записи файла ~/.fehbg.)

0
28.01.2020, 02:43

Теги

Похожие вопросы