mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-04 13:17:21 +02:00
Compare commits
5 Commits
95e81c4ec8
...
e55c578577
Author | SHA1 | Date | |
---|---|---|---|
e55c578577 | |||
9ac713b034 | |||
d68451625b | |||
1f90117415 | |||
d63bc48552 |
@ -1,6 +1,10 @@
|
|||||||
# -*- conf -*-
|
# -*- conf -*-
|
||||||
|
|
||||||
font=Comic Shanns Mono-Regular:size=12,Noto Sans Mono:size=12, Noto Color Emoji
|
font=Comic Shanns Mono-Regular:size=10,Noto Sans Mono:size=10, Noto Color Emoji
|
||||||
|
dpi-aware=yes
|
||||||
|
|
||||||
|
#[environment]
|
||||||
|
#name=value
|
||||||
|
|
||||||
[cursor]
|
[cursor]
|
||||||
color=282a36 ffffff
|
color=282a36 ffffff
|
||||||
@ -8,3 +12,6 @@ color=282a36 ffffff
|
|||||||
[colors]
|
[colors]
|
||||||
foreground=ffffff
|
foreground=ffffff
|
||||||
background=000000
|
background=000000
|
||||||
|
|
||||||
|
[tweak]
|
||||||
|
render-timer=osd
|
||||||
|
@ -432,7 +432,7 @@
|
|||||||
"{6003eac6-4b07-4aaf-960b-92fa006cd444}": {
|
"{6003eac6-4b07-4aaf-960b-92fa006cd444}": {
|
||||||
"blocked_install_message": "Mozilla Orbit. AI hurts climate and the crawlers are DDoSing the internet. However the summary feature sometimes spares my mental health, so begrudgingly it's allowed and won't be normal_installed let alone force_installed.",
|
"blocked_install_message": "Mozilla Orbit. AI hurts climate and the crawlers are DDoSing the internet. However the summary feature sometimes spares my mental health, so begrudgingly it's allowed and won't be normal_installed let alone force_installed.",
|
||||||
"default_area": "navbar",
|
"default_area": "navbar",
|
||||||
"installation_mode": "allowed",
|
"installation_mode": "blocked",
|
||||||
"private_browsing": false,
|
"private_browsing": false,
|
||||||
"restricted_domains": []
|
"restricted_domains": []
|
||||||
},
|
},
|
||||||
@ -650,7 +650,7 @@
|
|||||||
"Value": 0
|
"Value": 0
|
||||||
},
|
},
|
||||||
"browser.ml.chat.enabled": {
|
"browser.ml.chat.enabled": {
|
||||||
"Status": "clear",
|
"Status": "user",
|
||||||
"Type": "boolean",
|
"Type": "boolean",
|
||||||
"Value": false
|
"Value": false
|
||||||
},
|
},
|
||||||
@ -659,6 +659,11 @@
|
|||||||
"Type": "string",
|
"Type": "string",
|
||||||
"Value": "https://chat.mistral.ai/chat"
|
"Value": "https://chat.mistral.ai/chat"
|
||||||
},
|
},
|
||||||
|
"browser.ml.linkPreview.enabled": {
|
||||||
|
"Status": "default",
|
||||||
|
"Type": "boolean",
|
||||||
|
"Value": true
|
||||||
|
},
|
||||||
"browser.preferences.moreFromMozilla": {
|
"browser.preferences.moreFromMozilla": {
|
||||||
"Status": "default",
|
"Status": "default",
|
||||||
"Type": "boolean",
|
"Type": "boolean",
|
||||||
|
15
install
15
install
@ -143,6 +143,21 @@ if [ "$(id -u)" == "0" ]; then
|
|||||||
mkdir -vp /usr/local/share/applications/
|
mkdir -vp /usr/local/share/applications/
|
||||||
cp -v local/share/applications/*.desktop /usr/local/share/applications/
|
cp -v local/share/applications/*.desktop /usr/local/share/applications/
|
||||||
|
|
||||||
|
# Profile configuration. SECURITY WARNING
|
||||||
|
cp -v etc/profile.d/*.sh /etc/profile.d/
|
||||||
|
chmod -v a+r /etc/profile.d/*.sh
|
||||||
|
|
||||||
|
# Kernel configuration. SECURITY WARNING
|
||||||
|
cp -v etc/sysctl.d/*.conf /etc/sysctl.d/
|
||||||
|
chmod -v a+r /etc/sysctl.d/*.conf
|
||||||
|
(sysctl -p --system &)
|
||||||
|
|
||||||
|
# SSHd hardening hopefully. SECURITY WARNING
|
||||||
|
mkdir -vp /etc/ssh/sshd_config.d/
|
||||||
|
chmod -v a+x /etc/ssh/sshd_config.d/
|
||||||
|
cp etc/ssh/sshd_config.d/00-basic-security.conf /etc/ssh/sshd_config.d/
|
||||||
|
chmod -v a+r /etc/ssh/sshd_config.d/*.conf
|
||||||
|
|
||||||
# Enables laziness on checking whether or not apt is installed
|
# Enables laziness on checking whether or not apt is installed
|
||||||
mkdir -vp /etc/apt/apt.conf.d/
|
mkdir -vp /etc/apt/apt.conf.d/
|
||||||
# Enables progress bar and colours for apt/dpkg, which are helpful at
|
# Enables progress bar and colours for apt/dpkg, which are helpful at
|
||||||
|
@ -145,6 +145,7 @@ if hash lsb_release 2> /dev/null; then
|
|||||||
elif hash hostnamectl 2> /dev/null; then
|
elif hash hostnamectl 2> /dev/null; then
|
||||||
hostnamectl hostname &
|
hostnamectl hostname &
|
||||||
fi
|
fi
|
||||||
|
lsb_release -sd &
|
||||||
|
|
||||||
if hash ifconfig 2> /dev/null; then
|
if hash ifconfig 2> /dev/null; then
|
||||||
\LC_ALL=C.utf8 \ifconfig | \grep inet | \grep -Ev "127.0.0.1|inet6"
|
\LC_ALL=C.utf8 \ifconfig | \grep inet | \grep -Ev "127.0.0.1|inet6"
|
||||||
|
1
rc/zshrc
1
rc/zshrc
@ -42,6 +42,7 @@ if hash lsb_release 2> /dev/null; then
|
|||||||
elif hash hostnamectl 2> /dev/null; then
|
elif hash hostnamectl 2> /dev/null; then
|
||||||
hostnamectl hostname &
|
hostnamectl hostname &
|
||||||
fi
|
fi
|
||||||
|
lsb_release -sd
|
||||||
|
|
||||||
if hash ifconfig 2> /dev/null; then
|
if hash ifconfig 2> /dev/null; then
|
||||||
LC_ALL=C.utf8 \ifconfig | \grep inet | \grep -Ev "127.0.0.1|inet6"
|
LC_ALL=C.utf8 \ifconfig | \grep inet | \grep -Ev "127.0.0.1|inet6"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user