mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-19 12:47:27 +02:00
Compare commits
10 Commits
9a78f6c387
...
ae471c224b
Author | SHA1 | Date | |
---|---|---|---|
ae471c224b | |||
1af8de8186 | |||
0d02542f4c | |||
3ff87045a3 | |||
a00bd7ae42 | |||
73ff0cbcf0 | |||
f0a7657d47 | |||
dfa77e7d69 | |||
0597b4f359 | |||
e2188d25f8 |
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -75,3 +75,6 @@ LICENSE text lockable
|
|||||||
CITATION.cff text lockable
|
CITATION.cff text lockable
|
||||||
|
|
||||||
# NOTE! .gitattributes doesn't support the case-insensitive style above!
|
# NOTE! .gitattributes doesn't support the case-insensitive style above!
|
||||||
|
|
||||||
|
package.json text linguist-vendored
|
||||||
|
pnpm-lock.yaml text linguist-vendored
|
||||||
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -12,6 +12,8 @@
|
|||||||
!.mikaela
|
!.mikaela
|
||||||
!.mikaela_install
|
!.mikaela_install
|
||||||
!.pre-commit-config.yaml
|
!.pre-commit-config.yaml
|
||||||
|
!.prettierignore
|
||||||
|
!.prettierrc
|
||||||
!.reuse
|
!.reuse
|
||||||
|
|
||||||
# Certificates (unlikely to happen, but better safe than sorry)
|
# Certificates (unlikely to happen, but better safe than sorry)
|
||||||
@ -20,3 +22,6 @@
|
|||||||
# Symlinks
|
# Symlinks
|
||||||
install.run
|
install.run
|
||||||
LICENSE
|
LICENSE
|
||||||
|
|
||||||
|
|
||||||
|
node_modules/
|
||||||
|
@ -18,10 +18,11 @@ mkdir -p ~/.ssh
|
|||||||
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
||||||
cat etc/ssh/ssh_config >~/.ssh/config
|
cat etc/ssh/ssh_config >~/.ssh/config
|
||||||
cat .editorconfig >~/.editorconfig
|
cat .editorconfig >~/.editorconfig
|
||||||
mkdir -p ~/.local/firefox/defaults/pref/
|
if [ -d ~/.local/firefox/defaults/pref/ ]; then
|
||||||
cat conf/autoconfig.js >~/.local/firefox/defaults/pref/autoconfig.js
|
cat conf/autoconfig.js >~/.local/firefox/defaults/pref/autoconfig.js
|
||||||
#cat conf/librewolf.overrides.cfg >~/.local/firefox/librewolf.overrides.cfg
|
#cat conf/librewolf.overrides.cfg >~/.local/firefox/librewolf.overrides.cfg
|
||||||
cat conf/firefox-forbidden-policies.js >~/.local/firefox/firefox-forbidden-policies.js
|
cat conf/firefox-forbidden-policies.js >~/.local/firefox/firefox-forbidden-policies.js
|
||||||
|
fi
|
||||||
#cat conf/librewolf.overrides.cfg >~/public_html/autoconfig.js
|
#cat conf/librewolf.overrides.cfg >~/public_html/autoconfig.js
|
||||||
cat conf/firefox-forbidden-policies.js >~/public_html/autoconfig.js
|
cat conf/firefox-forbidden-policies.js >~/public_html/autoconfig.js
|
||||||
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
||||||
|
0
.prettierignore
Normal file
0
.prettierignore
Normal file
0
.prettierrc
Normal file
0
.prettierrc
Normal file
@ -19,9 +19,12 @@
|
|||||||
"jid1-MnnxcxisBPnSXQ@jetpack": {
|
"jid1-MnnxcxisBPnSXQ@jetpack": {
|
||||||
"checkForDNTPolicy": true,
|
"checkForDNTPolicy": true,
|
||||||
"disabledSites": [
|
"disabledSites": [
|
||||||
"cloudflare.com",
|
"challenges.cloudflare.com",
|
||||||
|
"chrome-extension-scheme",
|
||||||
"ecosia.org",
|
"ecosia.org",
|
||||||
"keyoxide.org"
|
"keyoxide.org",
|
||||||
|
"moz-extension-scheme",
|
||||||
|
"research.cloudflare.com"
|
||||||
],
|
],
|
||||||
"learnInIncognito": true,
|
"learnInIncognito": true,
|
||||||
"learnLocally": true,
|
"learnLocally": true,
|
||||||
@ -36,26 +39,13 @@
|
|||||||
"uBlock0@raymondhill.net": {
|
"uBlock0@raymondhill.net": {
|
||||||
"toAdd": {
|
"toAdd": {
|
||||||
"trustedSiteDirectives": [
|
"trustedSiteDirectives": [
|
||||||
"azure.com",
|
|
||||||
"bittimittari.fi",
|
|
||||||
"chrome-extension-scheme",
|
"chrome-extension-scheme",
|
||||||
"cloudflare.com",
|
"challenges.cloudflare.com",
|
||||||
"disroot.org",
|
|
||||||
"duckduckgo.com",
|
"duckduckgo.com",
|
||||||
"ecosia.org",
|
"ecosia.org",
|
||||||
"element.io",
|
|
||||||
"google",
|
|
||||||
"google.com",
|
|
||||||
"keyoxide.org",
|
"keyoxide.org",
|
||||||
"live.com",
|
|
||||||
"matrix.org",
|
|
||||||
"microsoft.com",
|
|
||||||
"microsoft365.com",
|
|
||||||
"microsoftonline.com",
|
|
||||||
"moz-extension-scheme",
|
"moz-extension-scheme",
|
||||||
"office.com",
|
"research.cloudflare.com"
|
||||||
"one.one",
|
|
||||||
"pikaviestin.fi"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"toOverwrite": {
|
"toOverwrite": {
|
||||||
@ -78,7 +68,8 @@
|
|||||||
"ublock-cookies-easylist",
|
"ublock-cookies-easylist",
|
||||||
"adguard-cookies",
|
"adguard-cookies",
|
||||||
"ublock-cookies-adguard",
|
"ublock-cookies-adguard",
|
||||||
"ublock-quick-fixes"
|
"ublock-quick-fixes",
|
||||||
|
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -237,6 +228,10 @@
|
|||||||
"Enabled": true
|
"Enabled": true
|
||||||
},
|
},
|
||||||
"Preferences": {
|
"Preferences": {
|
||||||
|
"app.update.download.attempts": {
|
||||||
|
"Comment": "If this is what it looks like, it will stop the prompts to download Firefox manually.",
|
||||||
|
"Status": "clear"
|
||||||
|
},
|
||||||
"autoadmin.failover_to_cached": {
|
"autoadmin.failover_to_cached": {
|
||||||
"Comment": "Preference not allowed for stability reasons. :(",
|
"Comment": "Preference not allowed for stability reasons. :(",
|
||||||
"Status": "locked",
|
"Status": "locked",
|
||||||
@ -706,6 +701,7 @@
|
|||||||
"Value": 1
|
"Value": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"PromptForDownloadLocation": true,
|
||||||
"SearchEngines": {
|
"SearchEngines": {
|
||||||
"Add": [
|
"Add": [
|
||||||
{
|
{
|
||||||
@ -763,6 +759,7 @@
|
|||||||
"Fujitsu mPollux DigiSignApplication": "/usr/lib64/libcryptoki.so"
|
"Fujitsu mPollux DigiSignApplication": "/usr/lib64/libcryptoki.so"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ShowHomeButton": true
|
"ShowHomeButton": true,
|
||||||
|
"StartDownloadsInTempDirectory": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
- [`disable-brave-tor.json`](#disable-brave-torjson)
|
- [`disable-brave-tor.json`](#disable-brave-torjson)
|
||||||
- [`disable-brave-vpn.json`](#disable-brave-vpnjson)
|
- [`disable-brave-vpn.json`](#disable-brave-vpnjson)
|
||||||
- [`disable-floc.json`](#disable-flocjson)
|
- [`disable-floc.json`](#disable-flocjson)
|
||||||
- [`disable-incognito.json.badidea`](#disable-incognitojsonbadidea)
|
|
||||||
- [`doh-adguard-dns0.json`](#doh-adguard-dns0json)
|
- [`doh-adguard-dns0.json`](#doh-adguard-dns0json)
|
||||||
- [`dph-adguard.json`](#dph-adguardjson)
|
- [`dph-adguard.json`](#dph-adguardjson)
|
||||||
- [`doh-adguard-unfiltered.json`](#doh-adguard-unfilteredjson)
|
- [`doh-adguard-unfiltered.json`](#doh-adguard-unfilteredjson)
|
||||||
@ -209,10 +208,6 @@ Disables floc or ad topics that are against privacy.
|
|||||||
|
|
||||||
- https://start.duckduckgo.com/?q=google+floc+privacy+topics
|
- https://start.duckduckgo.com/?q=google+floc+privacy+topics
|
||||||
|
|
||||||
## `disable-incognito.json.badidea`
|
|
||||||
|
|
||||||
Disables incognito mode. I don't recommend this.
|
|
||||||
|
|
||||||
## `doh-adguard-dns0.json`
|
## `doh-adguard-dns0.json`
|
||||||
|
|
||||||
## `dph-adguard.json`
|
## `dph-adguard.json`
|
||||||
|
@ -10,26 +10,13 @@
|
|||||||
"cjpalhdlnbpafiamejdnhcphjbkeiagm": {
|
"cjpalhdlnbpafiamejdnhcphjbkeiagm": {
|
||||||
"toAdd": {
|
"toAdd": {
|
||||||
"trustedSiteDirectives": [
|
"trustedSiteDirectives": [
|
||||||
"azure.com",
|
|
||||||
"bittimittari.fi",
|
|
||||||
"chrome-extension-scheme",
|
"chrome-extension-scheme",
|
||||||
"cloudflare.com",
|
"challenges.cloudflare.com",
|
||||||
"disroot.org",
|
|
||||||
"duckduckgo.com",
|
"duckduckgo.com",
|
||||||
"ecosia.org",
|
"ecosia.org",
|
||||||
"element.io",
|
|
||||||
"google",
|
|
||||||
"google.com",
|
|
||||||
"keyoxide.org",
|
"keyoxide.org",
|
||||||
"live.com",
|
|
||||||
"matrix.org",
|
|
||||||
"microsoft.com",
|
|
||||||
"microsoft365.com",
|
|
||||||
"microsoftonline.com",
|
|
||||||
"moz-extension-scheme",
|
"moz-extension-scheme",
|
||||||
"office.com",
|
"research.cloudflare.com"
|
||||||
"one.one",
|
|
||||||
"pikaviestin.fi"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"toOverwrite": {
|
"toOverwrite": {
|
||||||
@ -52,7 +39,8 @@
|
|||||||
"ublock-cookies-easylist",
|
"ublock-cookies-easylist",
|
||||||
"adguard-cookies",
|
"adguard-cookies",
|
||||||
"ublock-cookies-adguard",
|
"ublock-cookies-adguard",
|
||||||
"ublock-quick-fixes"
|
"ublock-quick-fixes",
|
||||||
|
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -73,9 +61,12 @@
|
|||||||
"pkehgijcmpdhfbdbbnkijodmdjhbjlgp": {
|
"pkehgijcmpdhfbdbbnkijodmdjhbjlgp": {
|
||||||
"checkForDNTPolicy": true,
|
"checkForDNTPolicy": true,
|
||||||
"disabledSites": [
|
"disabledSites": [
|
||||||
"cloudflare.com",
|
"challenges.cloudflare.com",
|
||||||
|
"chrome-extension-scheme",
|
||||||
"ecosia.org",
|
"ecosia.org",
|
||||||
"keyoxide.org"
|
"keyoxide.org",
|
||||||
|
"moz-extension-scheme",
|
||||||
|
"research.cloudflare.com"
|
||||||
],
|
],
|
||||||
"learnInIncognito": true,
|
"learnInIncognito": true,
|
||||||
"learnLocally": true,
|
"learnLocally": true,
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"DownloadRestrictions": 4,
|
||||||
|
"PromptForDownloadLocation": true
|
||||||
|
}
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"IncognitoModeAvailability": "Disabled"
|
|
||||||
}
|
|
@ -4,9 +4,10 @@ Description=Aminda's deduplication service
|
|||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
TimeoutStartSec=infinity
|
TimeoutStartSec=infinity
|
||||||
ExecStart=-/usr/sbin/duperemove -rdhq --hashfile=/root/home.hash /home
|
ExecStart=-/usr/bin/duperemove -rdhq --hashfile=/root/home.hash /home
|
||||||
ExecStart=-/usr/sbin/duperemove -rdhq --hashfile=/root/flatpak.hash /var/lib/flatpak
|
ExecStart=-/usr/bin/duperemove -rdhq --hashfile=/root/usr-local-bin.hash /usr/local/bin
|
||||||
ExecStart=-/usr/sbin/duperemove -rdhq --hashfile=/root/snap.hash /var/lib/snapd
|
ExecStart=-/usr/bin/duperemove -rdhq --hashfile=/root/flatpak.hash /var/lib/flatpak
|
||||||
|
ExecStart=-/usr/bin/duperemove -rdhq --hashfile=/root/snap.hash /var/lib/snapd
|
||||||
User=root
|
User=root
|
||||||
StandardOutput=journal
|
StandardOutput=journal
|
||||||
StandardError=journal
|
StandardError=journal
|
||||||
|
4
install
4
install
@ -55,10 +55,6 @@ if hash pre-commit 2>/dev/null; then
|
|||||||
pre-commit gc
|
pre-commit gc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f $HOME/.MIKAELAGREP ]; then
|
|
||||||
mv $HOME/.MIKAELAGREP $MIKAELA_GREP
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f "$MIKAELA_GREP" ]; then
|
if [ -f "$MIKAELA_GREP" ]; then
|
||||||
bash -x .mikaela_install
|
bash -x .mikaela_install
|
||||||
fi
|
fi
|
||||||
|
7
package.json
vendored
Normal file
7
package.json
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"devDependencies": {
|
||||||
|
"prettier": "3.2.5",
|
||||||
|
"prettier-plugin-nginx": "1.0.3",
|
||||||
|
"prettier-plugin-toml": "2.0.1"
|
||||||
|
}
|
||||||
|
}
|
70
pnpm-lock.yaml
generated
vendored
Normal file
70
pnpm-lock.yaml
generated
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
lockfileVersion: "9.0"
|
||||||
|
|
||||||
|
settings:
|
||||||
|
autoInstallPeers: true
|
||||||
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
|
importers:
|
||||||
|
.:
|
||||||
|
devDependencies:
|
||||||
|
prettier:
|
||||||
|
specifier: 3.2.5
|
||||||
|
version: 3.2.5
|
||||||
|
prettier-plugin-nginx:
|
||||||
|
specifier: 1.0.3
|
||||||
|
version: 1.0.3
|
||||||
|
prettier-plugin-toml:
|
||||||
|
specifier: 2.0.1
|
||||||
|
version: 2.0.1(prettier@3.2.5)
|
||||||
|
|
||||||
|
packages:
|
||||||
|
"@taplo/core@0.1.1":
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-BG/zLGf5wiNXGEVPvUAAX/4ilB3PwDUY2o0MV0y47mZbDZ9ad9UK/cIQsILat3bqbPJsALVbU6k3cskNZ3vAQg==,
|
||||||
|
}
|
||||||
|
|
||||||
|
"@taplo/lib@0.4.0-alpha.2":
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA==,
|
||||||
|
}
|
||||||
|
|
||||||
|
prettier-plugin-nginx@1.0.3:
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-vV5q85s8XnV6NEgvz1gVLfZhmxAxY03MyOYj2ApBpjFkbs00lRsRkTmqO9L39ADuD18z1RRCcfZ3eVxKhI/nqg==,
|
||||||
|
}
|
||||||
|
|
||||||
|
prettier-plugin-toml@2.0.1:
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-99z1YOkViECHtXQjGIigd3talI/ybUI1zB3yniAwUrlWBXupNXThB1hM6bwSMUEj2/+tomTlMtT98F5t4s8IWA==,
|
||||||
|
}
|
||||||
|
engines: { node: ">=16.0.0" }
|
||||||
|
peerDependencies:
|
||||||
|
prettier: ^3.0.3
|
||||||
|
|
||||||
|
prettier@3.2.5:
|
||||||
|
resolution:
|
||||||
|
{
|
||||||
|
integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==,
|
||||||
|
}
|
||||||
|
engines: { node: ">=14" }
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
|
snapshots:
|
||||||
|
"@taplo/core@0.1.1": {}
|
||||||
|
|
||||||
|
"@taplo/lib@0.4.0-alpha.2":
|
||||||
|
dependencies:
|
||||||
|
"@taplo/core": 0.1.1
|
||||||
|
|
||||||
|
prettier-plugin-nginx@1.0.3: {}
|
||||||
|
|
||||||
|
prettier-plugin-toml@2.0.1(prettier@3.2.5):
|
||||||
|
dependencies:
|
||||||
|
"@taplo/lib": 0.4.0-alpha.2
|
||||||
|
prettier: 3.2.5
|
||||||
|
|
||||||
|
prettier@3.2.5: {}
|
Loading…
x
Reference in New Issue
Block a user