Compare commits

..

1 Commits

Author SHA1 Message Date
539a1e0817 add laptop changes 2024-11-02 15:42:26 -04:00
7 changed files with 31 additions and 56 deletions

View File

@@ -2,21 +2,19 @@
ShuangpinProfile=Ziranma
# Show current shuangpin mode
ShowShuangpinMode=True
# Candidates Per Page
# Page size
PageSize=7
# Show English Candidates
# Enable Spell
SpellEnabled=True
# Show symbol candidates
# Enable Symbols
SymbolsEnabled=True
# Show Chaizi candidates
# Enable Chaizi
ChaiziEnabled=True
# Enable more Characters after Unicode CJK Extension B
# Enable Characters in Unicode CJK Extension B
ExtBEnabled=True
# Show stroke candidates when typing with h(一), s(丨), p(丿), n(㇏), z(𠃍)
StrokeCandidateEnabled=True
# Enable Cloud Pinyin
CloudPinyinEnabled=True
# Cloud Pinyin Candidate Order
# Cloud Pinyin Index
CloudPinyinIndex=1
# Show animation when Cloud Pinyin is loading
CloudPinyinAnimation=True
@@ -30,17 +28,13 @@ PreeditCursorPositionAtBeginning=True
PinyinInPreedit=False
# Enable Prediction
Prediction=False
# Keep the current typed text for next input prediction
KeepCurrentContext=True
# Number of Predictions
# Prediction Size
PredictionSize=10
# Backspace behavior on prediction
BackspaceBehaviorOnPrediction="Backspace when not using on-screen keyboard"
# Action when switching input method
SwitchInputMethodBehavior="Commit current preedit"
# Select Second Candidate
# Select 2nd Candidate
SecondCandidate=
# Select Third Candidate
# Select 3rd Candidate
ThirdCandidate=
# Use Keypad as Selection key
UseKeypadAsSelection=False
@@ -48,8 +42,6 @@ UseKeypadAsSelection=False
BackSpaceToUnselect=True
# Number of Sentences
Number of sentence=2
# Number of Phrase Candidates
WordCandidateLimit=15
# Prompt long word length when input length over (0 for disable)
LongWordLengthLimit=4
# Key to trigger quickphrase
@@ -99,10 +91,17 @@ FirstRun=False
[FilterByStroke]
0=grave
[QuickPhraseTriggerRegex]
0=.(/|@)$
1=^(www|bbs|forum|mail|bbs)\\.
2=^(http|https|ftp|telnet|mailto):
[QuickPhrase trigger]
0=www.
1=ftp.
2=http:
3=mail.
4=bbs.
5=forum.
6=https:
7=ftp:
8=telnet:
9=mailto:
[Fuzzy]
# ue -> ve
@@ -137,8 +136,6 @@ C_CH=False
F_H=False
# l <-> n
L_N=False
# l <-> r
L_R=False
# s <-> sh
S_SH=False
# z <-> zh

View File

@@ -1,13 +1,8 @@
profile {
output "LG Electronics LG IPS QHD 201NTPCGD520" enable scale 1.30 position 0,0 mode 2560x1440@75Hz
output "LG Electronics LG IPS QHD 309NTABDW064" enable scale 1.30 position 1974,0 mode 2560x1440@75Hz
output "LG Electronics LG IPS QHD 201NTPCGD520" enable scale 1.30 position 0,0 mode 2560x1440@60Hz
output "LG Electronics LG ULTRAWIDE 0x01010101" enable position 1968,0 mode 2560x1080@60Hz
}
profile {
output "BOE 0x0BCA Unknown" enable scale 1.75 position 0,0 mode 2256x1504@59.999Hz
}
profile {
output "BOE 0x0BCA Unknown" enable scale 1.75 position 0,0 mode 2256x1504@59.999Hz
output "AOC 16T15 AXT1442Z08642" enable scale 1.30 position 1289,0 mode 1920x1080@60Hz
}

View File

@@ -242,13 +242,6 @@ client.unfocused #222222 #222222 #AAAAAA
# font
font pango: IBMPlexMono Regular 10
input "5215:621:SINO_WEALTH_GXT_144_Gaming_Mouse" {
accel_profile "flat"
dwt disabled
left_handed disabled
pointer_accel -0.78
}
# wacom
input "1386:770:Wacom_Intuos_PT_S_Pen" {
accel_profile "flat"

View File

@@ -3,5 +3,5 @@ set -eou pipefail
echo "$1" | wget-titles-from-urls >> titles.txt
echo "$1" | youtube-audio
ls -Art | tail -n 1 | xargs -d '\n' kid3
standardize-music
ls -Art | tail -n 1 | xargs -d '\n' kid3

View File

@@ -6,12 +6,6 @@ if [ $count != 0 ]; then
rename JPG jpg *.JPG
fi
# rename .jpeg -> .jpg
count=`ls -1 *.jpeg 2>/dev/null | wc -l`
if [ $count != 0 ]; then
rename jpeg jpg *.jpeg
fi
# remove exif except orientation from .jpg
count=`ls -1 *.jpg 2>/dev/null | wc -l`
if [ $count != 0 ]; then

View File

@@ -9,7 +9,7 @@ fi
count=`ls -1 *.ogg 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.ogg; do
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
done
fi
@@ -21,7 +21,7 @@ fi
count=`ls -1 *.webm 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.webm; do
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
done
fi
@@ -33,7 +33,7 @@ fi
count=`ls -1 *.opus 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.opus; do
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
done
fi
@@ -45,9 +45,9 @@ fi
count=`ls -1 *.m4a 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.m4a; do
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
done
fi
shopt -s nullglob
rsgain custom --skip-existing --lowercase --tagmode=i *.mp3 *.flac
rsgain custom -S -L -a -s i *.mp3 *.flac

View File

@@ -1,7 +1,3 @@
7zip
adwaita-dark
adwaita-qt5-git
adwaita-qt6-git
aic94xx-firmware
alacritty
amd-ucode
@@ -121,6 +117,7 @@ lib32-gamemode
lib32-gst-plugins-base-libs
lib32-gtk3
lib32-libappindicator-gtk3
lib32-libva-mesa-driver
lib32-libxslt
lib32-ocl-icd
lib32-v4l-utils
@@ -134,7 +131,7 @@ libpinyin
libreoffice-still
libretro-overlays
libretro-shaders-slang
librewolf-bin
libva-mesa-driver
libva-utils
libvncserver
linux
@@ -189,6 +186,7 @@ openshot
openvpn
opustags
overdue
p7zip
package-query
papirus-icon-theme
pavucontrol
@@ -227,12 +225,10 @@ remmina
retroarch
retroarch-assets-xmb
rofi
rsgain
rsync
seahorse
shellcheck
shotcut
signal-desktop
simple-scan
slurp
smartmontools