Skip to content

Commit

Permalink
Merge branch 'master' into add_plasma_troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjharder authored Jan 31, 2024
2 parents 7d59ac7 + e8abc65 commit ffe5af1
Show file tree
Hide file tree
Showing 91 changed files with 1,322 additions and 502 deletions.
353 changes: 353 additions & 0 deletions .cspell-allowed-words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,353 @@
abcm
ahci
alienware
anthy
anydesk
aosp
apcupsd
appindicator
askpass
asus
atheros
autodep
autogen
autoplay
avahi
ayatana
bbswitch
behaviour
binutils
bitwig
bootable
bootctl
bootloader
bootup
bopomofo
brasero
brlaser
brsaneconfig
brscan
bsymbolic
buddiesofbudgie
builddeps
caddyfile
caja
calamares
cangjie
cbindgen
centrino
cflags
changeme
checkdeps
chipsets
chrooted
chrooting
chsh
cifs
clion
cmdline
configfile
confopts
cran
cryptsetup
cxxflags
cython
datacenter
datagrip
dbus
destdir
devel
devlog
dircolors
directoy
diskutil
distro
distros
docdir
droidcam
dtags
dumpall
dumpcap
dymo
efibootmgr
emul
enpass
envsetup
eopkg
eopkgs
epcsearch
ermo
escpr
exfat
fastboot
fcgi
fdata
fdisk
ferryctl
ferryd
filesharing
firstpost
flarum
flatpak
flicky
flto
fluidsynth
fpath
funroll
gamepad
gconf
geoclue
getsol
getsolus
gobject
goroot
gotopkg
gotosoluspkgs
gpasswd
gperf
gssapi
haruna
headerbar
homeserver
hostnames
hplip
hyphenator
ibetical
ibus
ikey
inet
inkjet
inspiron
installdir
installroot
insync
ipofyourscanner
issuenumber
journalctl
kdenetwork
khelp
ksgrd
ksshaskpass
ksysguard
ldflags
libc
libcmis
libcurl
libdir
libfoobar
libfreetype
libgcc
libgcrypt
libgeoclue
libglu
libgpod
libgtk
libideviceactivation
libimobiledevice
libinput
libjpeg
libspeex
libspeexdsp
libsplit
libssh
libstdc
libsuffix
libudev
libuiohook
libwebp
lifebook
livingsilver
localrepo
luks
lutris
lvchange
lzop
macbook
maintainership
markus
mendeleydesktop
metacity
mojang
moneydance
mountpoint
mprefer
mscorefonts
multirepo
mydisk
myfiles
mygui
nanorc
necromancing
nemo
neovim
netgear
newerth
nfpath
nghttp
nightlies
nmbdoptions
noauto
nomodeset
nopatch
noprefixroute
nproc
nuitka
nvme
ocen
ocenaudio
oflag
openrazer
organised
packagekit
packagename
persson
perussanasto
pfifo
pgsql
phab
phabricator
phpstorm
pico
pipewire
pkgconfig
pkgconfigs
pkgfiles
pkgname
plexmediaserver
pomo
pomodoneapp
portege
posix
powerline
presario
probook
pspec
psql
qdisc
qjackctl
qlen
qmake
qmlc
qosmio
qsynth
qtile
quickstart
ralink
rbind
rdesktop
rdisk
readline
realtek
redditor
redistributable
reindex
releng
relocs
relro
replaceme
resolv
retroarch
rhythmbox
roccat
rootfsbase
routable
rpath's
rslave
rstudio
rubymine
rundeps
runpath
runrecovery
rustup
sambaoptions
schedtool
schenker
sdkman
servername
setcap
sharename
smbclient
smbd
smbdoptions
smbpasswd
solbuild
solusesp
solusian
solusians
somecommand
somekey
someotherpackage
somepackage
somepath
someshare
somevalue
soundfont
soundfonts
spideroak
squashfs
statuslines
subpackages
sunvox
synaptics
sysconfig
systemsettings
taskfile
teamviewer
teamviewerd
tecra
testparm
thinkpad
tidyverse
tigervnc
timeframe
titlebar
tmpfiles
touchpad
touchpads
trackpad
uefi
ufriilt
unetbootin
unikey
untick
usermod
usershare
usysconf
utilising
vaio
vala
vboot
vboxusers
verifyng
vgchange
vhba
visio
vncserver
voikko
vostro
vpcec
vulkan
webstorm
whatprovides
whatuses
winbind
winbindoptions
wireshark
workdir
wsdd
wxwidgets
xcfe
xmodifiers
xone
xorg
xorgxrdp
xrdp
xstartup
xwrapper
yjobs
yourgithubaccount
ypkg
zcat
zeroconf
zhuyin
zram
18 changes: 18 additions & 0 deletions .cspell-sort-wordlist.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -e

# Checks that .cspell-allowed-words.txt exists, then:
# 1. Converts all text to lowercase
# 2. Sorts the file
# 3. Removes duplicate entries

TARGET='.cspell-allowed-words.txt'

if [ ! -f $TARGET ]; then
echo "File $TARGET not found!"
exit 1
fi

awk -i inplace '{print tolower($0)}' $TARGET
sort -o $TARGET $TARGET
awk -i inplace '!seen[$0]++' $TARGET
15 changes: 15 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2",
"language": "en",
"words": ["add", "to", ".cspell-allowed-words.txt", "instead"],
"flagWords": ["flaggedword", "hte", "repo"],
"dictionaries": ["cspell-allowed-words"],

"dictionaryDefinitions": [
{
"name": "cspell-allowed-words",
"path": "./.cspell-allowed-words.txt",
"addWords": true
}
]
}
Loading

0 comments on commit ffe5af1

Please sign in to comment.