update
This commit is contained in:
@@ -5,3 +5,12 @@ indent = { tab-width = 4, unit = " " }
|
||||
[[language]]
|
||||
name = "cpp"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
|
||||
[[language]]
|
||||
name = "python"
|
||||
formatter = { command = "ruff", args = ["format", "-"] }
|
||||
language-servers = ["ruff"]
|
||||
|
||||
[language-server.ruff]
|
||||
command = "ruff"
|
||||
args = ["server"]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
screenshot-path "~/Pictures/Screenshots/niri_screenshot_%Y-%m-%d_%H-%M-%S.png"
|
||||
|
||||
debug {
|
||||
render-drm-device "/dev/dri/renderD129"
|
||||
render-drm-device "/dev/dri/renderD128"
|
||||
honor-xdg-activation-with-invalid-serial
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
# Constants
|
||||
niri_config_file="$HOME/.config/niri/config/misc.kdl"
|
||||
prefer_order=(nvidia intel)
|
||||
prefer_order=(intel nvidia)
|
||||
|
||||
# Get vendor and path of each GPU
|
||||
default_card_path="$(find /dev/dri/card* 2>/dev/null | head -n 1)"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
},
|
||||
"action": {
|
||||
"onSelected": "qs ipc call background set '{{ path }}'; change-colortheme -c '{{ colorHex }}'",
|
||||
"onPreview": "qs ipc call background preview '{{ path }}'; change-colortheme -c '{{ colorHex }}' quickshell niri",
|
||||
"onPreview": "exit 0; qs ipc call background preview '{{ path }}'; change-colortheme -c '{{ colorHex }}' quickshell niri",
|
||||
"quitOnSelected": true,
|
||||
"saveState": [
|
||||
{
|
||||
@@ -23,7 +23,7 @@
|
||||
"command": "qs ipc call colors get mPrimary"
|
||||
}
|
||||
],
|
||||
"onRestore": "qs ipc call background preview ''; change-colortheme -c '{{ flavor }}' quickshell niri"
|
||||
"onRestore": "exit 0; qs ipc call background preview ''; change-colortheme -c '{{ flavor }}' quickshell niri"
|
||||
},
|
||||
"cache": {
|
||||
"maxImageEntries": 300
|
||||
|
||||
Submodule config/wallpaper/Pictures/backgrounds updated: 5984c56815...48f5388c45
@@ -1,6 +1,6 @@
|
||||
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config0
|
||||
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
||||
"$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
|
||||
#:schema https://yazi-rs.github.io/schemas/keymap.json
|
||||
|
||||
[mgr]
|
||||
prepend_keymap = [
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
[[plugin.deps]]
|
||||
use = "yazi-rs/plugins:git"
|
||||
rev = "26512c7"
|
||||
rev = "4ffa48f"
|
||||
hash = "6849444b7c2df08eace83f3f86fb55a3"
|
||||
|
||||
[[plugin.deps]]
|
||||
use = "yazi-rs/plugins:smart-enter"
|
||||
rev = "26512c7"
|
||||
rev = "4ffa48f"
|
||||
hash = "187cc58ba7ac3befd49c342129e6f1b6"
|
||||
|
||||
[[plugin.deps]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
|
||||
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
||||
"$schema" = "https://yazi-rs.github.io/schemas/yazi.json"
|
||||
#:schema https://yazi-rs.github.io/schemas/yazi.json
|
||||
|
||||
[mgr]
|
||||
ratio = [1, 3, 4]
|
||||
@@ -86,10 +86,10 @@ suppress_preload = false
|
||||
[plugin]
|
||||
fetchers = [
|
||||
# Mimetype
|
||||
{ id = "mime", url = "*/", run = "mime.dir", prio = "high" },
|
||||
{ id = "mime", url = "*", run = "mime.local", if = "!mime", prio = "high" },
|
||||
{ id = "git", url = "*", run = "git", prio = "normal" },
|
||||
{ id = "git", url = "*/", run = "git", prio = "normal" },
|
||||
{ id = "mime", url = "*/", run = "mime.dir", prio = "high", group = "mime" },
|
||||
{ id = "mime", url = "*", run = "mime.local", if = "!mime", prio = "high", group = "mime" },
|
||||
{ id = "git", url = "*", run = "git", prio = "normal", group = "mime" },
|
||||
{ id = "git", url = "*/", run = "git", prio = "normal", group = "mime" },
|
||||
]
|
||||
preloaders = [
|
||||
# Image
|
||||
|
||||
Reference in New Issue
Block a user