Compare commits
4 Commits
539a1e0817
...
3c7196eae2
Author | SHA1 | Date | |
---|---|---|---|
3c7196eae2 | |||
70bac5be34 | |||
59f0106d5e | |||
777b011479 |
@ -1,6 +1,6 @@
|
|||||||
profile {
|
profile {
|
||||||
output "LG Electronics LG IPS QHD 201NTPCGD520" enable scale 1.30 position 0,0 mode 2560x1440@60Hz
|
output "LG Electronics LG IPS QHD 201NTPCGD520" enable scale 1.30 position 0,0 mode 2560x1440@75Hz
|
||||||
output "LG Electronics LG ULTRAWIDE 0x01010101" enable position 1968,0 mode 2560x1080@60Hz
|
output "LG Electronics LG IPS QHD 309NTABDW064" enable scale 1.30 position 1974,0 mode 2560x1440@75Hz
|
||||||
}
|
}
|
||||||
|
|
||||||
profile {
|
profile {
|
||||||
|
@ -242,6 +242,13 @@ client.unfocused #222222 #222222 #AAAAAA
|
|||||||
# font
|
# font
|
||||||
font pango: IBMPlexMono Regular 10
|
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
|
# wacom
|
||||||
input "1386:770:Wacom_Intuos_PT_S_Pen" {
|
input "1386:770:Wacom_Intuos_PT_S_Pen" {
|
||||||
accel_profile "flat"
|
accel_profile "flat"
|
||||||
|
@ -3,5 +3,5 @@ set -eou pipefail
|
|||||||
|
|
||||||
echo "$1" | wget-titles-from-urls >> titles.txt
|
echo "$1" | wget-titles-from-urls >> titles.txt
|
||||||
echo "$1" | youtube-audio
|
echo "$1" | youtube-audio
|
||||||
standardize-music
|
|
||||||
ls -Art | tail -n 1 | xargs -d '\n' kid3
|
ls -Art | tail -n 1 | xargs -d '\n' kid3
|
||||||
|
standardize-music
|
||||||
|
@ -9,7 +9,7 @@ fi
|
|||||||
count=`ls -1 *.ogg 2>/dev/null | wc -l`
|
count=`ls -1 *.ogg 2>/dev/null | wc -l`
|
||||||
if [ $count != 0 ]; then
|
if [ $count != 0 ]; then
|
||||||
for i in *.ogg; do
|
for i in *.ogg; do
|
||||||
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
|
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ fi
|
|||||||
count=`ls -1 *.webm 2>/dev/null | wc -l`
|
count=`ls -1 *.webm 2>/dev/null | wc -l`
|
||||||
if [ $count != 0 ]; then
|
if [ $count != 0 ]; then
|
||||||
for i in *.webm; do
|
for i in *.webm; do
|
||||||
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
|
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ fi
|
|||||||
count=`ls -1 *.opus 2>/dev/null | wc -l`
|
count=`ls -1 *.opus 2>/dev/null | wc -l`
|
||||||
if [ $count != 0 ]; then
|
if [ $count != 0 ]; then
|
||||||
for i in *.opus; do
|
for i in *.opus; do
|
||||||
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
|
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ fi
|
|||||||
count=`ls -1 *.m4a 2>/dev/null | wc -l`
|
count=`ls -1 *.m4a 2>/dev/null | wc -l`
|
||||||
if [ $count != 0 ]; then
|
if [ $count != 0 ]; then
|
||||||
for i in *.m4a; do
|
for i in *.m4a; do
|
||||||
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
|
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
7zip
|
||||||
|
adwaita-dark
|
||||||
|
adwaita-qt5-git
|
||||||
|
adwaita-qt6-git
|
||||||
aic94xx-firmware
|
aic94xx-firmware
|
||||||
alacritty
|
alacritty
|
||||||
amd-ucode
|
amd-ucode
|
||||||
@ -117,7 +121,6 @@ lib32-gamemode
|
|||||||
lib32-gst-plugins-base-libs
|
lib32-gst-plugins-base-libs
|
||||||
lib32-gtk3
|
lib32-gtk3
|
||||||
lib32-libappindicator-gtk3
|
lib32-libappindicator-gtk3
|
||||||
lib32-libva-mesa-driver
|
|
||||||
lib32-libxslt
|
lib32-libxslt
|
||||||
lib32-ocl-icd
|
lib32-ocl-icd
|
||||||
lib32-v4l-utils
|
lib32-v4l-utils
|
||||||
@ -131,7 +134,6 @@ libpinyin
|
|||||||
libreoffice-still
|
libreoffice-still
|
||||||
libretro-overlays
|
libretro-overlays
|
||||||
libretro-shaders-slang
|
libretro-shaders-slang
|
||||||
libva-mesa-driver
|
|
||||||
libva-utils
|
libva-utils
|
||||||
libvncserver
|
libvncserver
|
||||||
linux
|
linux
|
||||||
@ -186,7 +188,6 @@ openshot
|
|||||||
openvpn
|
openvpn
|
||||||
opustags
|
opustags
|
||||||
overdue
|
overdue
|
||||||
p7zip
|
|
||||||
package-query
|
package-query
|
||||||
papirus-icon-theme
|
papirus-icon-theme
|
||||||
pavucontrol
|
pavucontrol
|
||||||
@ -225,10 +226,12 @@ remmina
|
|||||||
retroarch
|
retroarch
|
||||||
retroarch-assets-xmb
|
retroarch-assets-xmb
|
||||||
rofi
|
rofi
|
||||||
|
rsgain
|
||||||
rsync
|
rsync
|
||||||
seahorse
|
seahorse
|
||||||
shellcheck
|
shellcheck
|
||||||
shotcut
|
shotcut
|
||||||
|
signal-desktop
|
||||||
simple-scan
|
simple-scan
|
||||||
slurp
|
slurp
|
||||||
smartmontools
|
smartmontools
|
||||||
|
Loading…
x
Reference in New Issue
Block a user