Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: prettier formatting #95

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/apps/audiotube/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ appstream:
homepage: https://apps.kde.org/audiotube/
bugtracker: https://bugs.kde.org/enter_bug.cgi?product=audiotube
---

# AudioTube

AudioTube — бесплатный клиент YouTube Music с открытым исходным кодом, который позволяет выполнять поиск, составление плейлистов и воспроизведение музыки.
AudioTube — бесплатный клиент YouTube Music с открытым исходным кодом, который позволяет выполнять поиск, составление плейлистов и воспроизведение музыки.

![Скриншот программы](https://cdn.kde.org/screenshots/audiotube/desktop.png)

Expand Down
1 change: 1 addition & 0 deletions docs/apps/safeeyes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ appstream:
---

# SafeEyes

SafeEyes — утилита для сохранения вашего зрения, написанная на Python с открытым исходным кодом.

![Скриншот программы](./img/screenshot.jpg)
Expand Down
5 changes: 2 additions & 3 deletions docs/graphics/nvidia/nvidia-drivers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@ update-kernel
Для дальнейшей установки проприетарного драйвера NVIDIA **необходимо перезагрузить операционную систему**.

Установка проприетарного драйвера и добавление Nouveau в чёрный список:

- Перейдите в режим root:

```shell
su -
```

- Установите `nvidia_glx_common`:
::: code-group
::: code-group

```shell[apt-get]
apt-get install nvidia_glx_common
Expand Down Expand Up @@ -433,8 +434,6 @@ epm -i nvidia-xconfig

:::



## Детальная настройка драйвера

### Активация [Kernel Mode Setting](https://www.kernel.org/doc/html/latest/gpu/drm-kms.html).
Expand Down
13 changes: 7 additions & 6 deletions docs/graphics/nvidia/nvidia-nouveau/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ reboot
Для видеокарт **Maxwell** потребуется обязательное [внедрение прошивки NVIDIA](#внедрение-прошивки-nvidia).
:::


### OpenGL и Zink

#### Zink по умолчанию
Expand Down Expand Up @@ -244,6 +243,7 @@ echo pstate > /sys/kernel/debug/dri/0/pstate
Можно прописать в параметр `GRUB_CMDLINE_LINUX_DEFAULT` и сгенерировать новых `grub.cfg`, либо прописать в файле /etc/modprobe.conf.

Пример записи в /etc/modprobe.conf:

```shell
su -
cat << _EOF_ > /etc/modprobe.d/nouveau_recloking.conf
Expand All @@ -264,11 +264,11 @@ make-initrd

Для **Fermi**, **Kepler**, **Maxwell**, **Pascal** и **Volta** существует способ управления частотами через 3 режима:

| Режим | Описание |
| ----- | ---------------------------------------|
| `0` | Базовые тактовые частоты (по умолчанию)|
| `1` | Тактовые частоты в режиме `Boost` |
| `2` | Максимальные тактовые частоты |
| Режим | Описание |
| ----- | --------------------------------------- |
| `0` | Базовые тактовые частоты (по умолчанию) |
| `1` | Тактовые частоты в режиме `Boost` |
| `2` | Максимальные тактовые частоты |

Управление происходит через параметр `config.NvBoost`.

Expand All @@ -277,6 +277,7 @@ make-initrd
Можно прописать это в параметр `GRUB_CMDLINE_LINUX_DEFAULT` и сгенерировать новый `grub.cfg`, либо прописать в файле /etc/modprobe.conf.

Пример записи в /etc/modprobe.conf:

```shell
su -
cat << _EOF_ > /etc/modprobe.d/nouveau_nvboost.conf
Expand Down
10 changes: 5 additions & 5 deletions shims.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}
declare module '*.vue' {
import { defineComponent } from 'vue'
const component: ReturnType<typeof defineComponent>
export default component
}