This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "InputClass" | |
Identifier "libinput touchpad catchall" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Driver "libinput" | |
# Natural Scrolling | |
Option "NaturalScrolling" "True" | |
# Tap to Click | |
Option "Tapping" "on" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ubuntu | |
```shell | |
sudo apt install zathura-dev | |
``` | |
// If you want to install djvu-extension | |
```shell | |
sudo apt install libdjvulibre-dev | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sound/pci/hda/cs35l41_hda.c b/sound/pci/hda/cs35l41_hda.c | |
index f7815ee24f83..93d86c5a9d53 100644 | |
--- a/sound/pci/hda/cs35l41_hda.c | |
+++ b/sound/pci/hda/cs35l41_hda.c | |
@@ -1270,6 +1270,8 @@ static int cs35l41_hda_read_acpi(struct cs35l41_hda *cs35l41, const char *hid, i | |
size_t nval; | |
int i, ret; | |
+ printk("CSC3551: probing %s\n", hid); | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- NVIM中文跳转 | |
local pinyin = require 'user.pinyin' | |
local utf8 = require 'lua-utf8' | |
local dev_level = 3 | |
local function log( info, level ) | |
level = level or 1 |