config/shell: enable rootless sysyadm
This commit is contained in:
parent
c2ef280230
commit
3af285ac53
|
@ -249,15 +249,6 @@ killJava() {
|
||||||
|
|
||||||
alias l="ls -l --almost-all --human-readable --group-directories-first --file-type"
|
alias l="ls -l --almost-all --human-readable --group-directories-first --file-type"
|
||||||
|
|
||||||
# Swap the names of two files
|
|
||||||
swap() {
|
|
||||||
test $# -eq 2 || exit 1
|
|
||||||
mv -n $1 $1.tmp
|
|
||||||
mv -n $2 $1
|
|
||||||
mv -n $1.tmp $2
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
alias f="noglob fdd"
|
alias f="noglob fdd"
|
||||||
fdd() { $(which fd >/dev/null && echo fd || echo fdfind) --color=always --hidden --no-ignore-vcs --one-file-system "$@" | less -F; }
|
fdd() { $(which fd >/dev/null && echo fd || echo fdfind) --color=always --hidden --no-ignore-vcs --one-file-system "$@" | less -F; }
|
||||||
compdef f=fd
|
compdef f=fd
|
||||||
|
@ -270,6 +261,14 @@ which perl-rename >/dev/null && alias lowercase="perl-rename '$lowercase_transli
|
||||||
alias move='rsync --recursive --progress --human-readable --remove-source-files'
|
alias move='rsync --recursive --progress --human-readable --remove-source-files'
|
||||||
alias rdiff='rsync --recursive --progress --delete --links --dry-run'
|
alias rdiff='rsync --recursive --progress --delete --links --dry-run'
|
||||||
|
|
||||||
|
# Swap the names of two files
|
||||||
|
swap() {
|
||||||
|
test $# -eq 2 || exit 1
|
||||||
|
mv -n $1 $1.tmp
|
||||||
|
mv -n $2 $1
|
||||||
|
mv -n $1.tmp $2
|
||||||
|
}
|
||||||
|
|
||||||
# mv with automatic sudo if neccessary
|
# mv with automatic sudo if neccessary
|
||||||
smv() {
|
smv() {
|
||||||
test -w "$1" && test -w "$(dirname $2)" && mv "$@" || sudo mv "$@"
|
test -w "$1" && test -w "$(dirname $2)" && mv "$@" || sudo mv "$@"
|
||||||
|
|
|
@ -12,7 +12,7 @@ yc() {
|
||||||
yadm commit -v --template /tmp/yc-msg ${@:2} -- "$XDG_CONFIG_HOME/$folder"
|
yadm commit -v --template /tmp/yc-msg ${@:2} -- "$XDG_CONFIG_HOME/$folder"
|
||||||
}
|
}
|
||||||
|
|
||||||
alias sysyadm="sudo yadm -Y /etc/yadm"
|
alias sysyadm="yadm --yadm-dir /etc/yadm --yadm-data /etc/yadm"
|
||||||
alias sysinit="sysyadm init -b main -w /; sysyadm gitconfig include.path '$XDG_CONFIG_HOME/git/config'"
|
alias sysinit="sysyadm init -b main -w /; sysyadm gitconfig include.path '$XDG_CONFIG_HOME/git/config'"
|
||||||
sy() {
|
sy() {
|
||||||
unignore="/etc/yadm/unignore"
|
unignore="/etc/yadm/unignore"
|
||||||
|
|
|
@ -3,39 +3,25 @@ section() { printf "\n[1m[4m$1[0m\n"; }
|
||||||
highlight() { printf "[1m[3m$1[0m\n"; }
|
highlight() { printf "[1m[3m$1[0m\n"; }
|
||||||
|
|
||||||
## System
|
## System
|
||||||
### TODO move to sysyadm
|
|
||||||
section "System"
|
section "System"
|
||||||
|
|
||||||
highlight "Enable REISUB and increase watch limit for Intellij & co"
|
|
||||||
echo "kernel.sysrq=1" | sudo tee /etc/sysctl.d/60-sysrq.conf
|
|
||||||
echo "fs.inotify.max_user_watches=800000" | sudo tee /etc/sysctl.d/60-max-user-watches.conf
|
|
||||||
sudo sysctl --system
|
|
||||||
|
|
||||||
highlight "Default sudoers configuration"
|
highlight "Default sudoers configuration"
|
||||||
echo 'Defaults editor=/usr/bin/nvim
|
echo 'Defaults editor=/usr/bin/nvim
|
||||||
Defaults env_keep="EDITOR"' | sudo tee /etc/sudoers.d/editor
|
Defaults env_keep="EDITOR"' |
|
||||||
echo -e "Defaults timestamp_timeout=120\nDefaults passwd_timeout=30" | sudo tee /etc/sudoers.d/timeout
|
sudo tee /etc/sudoers.d/editor
|
||||||
|
echo 'Defaults timestamp_timeout=120
|
||||||
|
Defaults passwd_timeout=30' |
|
||||||
|
sudo tee /etc/sudoers.d/timeout
|
||||||
highlight "password-free reboot"
|
highlight "password-free reboot"
|
||||||
echo "$USER ALL = NOPASSWD: /sbin/halt, /sbin/reboot, /usr/sbin/reboot, /sbin/poweroff, /usr/sbin/shutdown" | sudo tee /etc/sudoers.d/shutdown
|
echo "$USER ALL = NOPASSWD: /usr/bin/halt, /usr/bin/shutdown, /usr/bin/reboot, /usr/bin/poweroff, /bin/reboot, /bin/shutdown" |
|
||||||
|
sudo tee /etc/sudoers.d/shutdown
|
||||||
highlight "Reduce system startup & shutdown timeout"
|
|
||||||
sudo mkdir -p /etc/systemd/system.conf.d /etc/systemd/user.conf.d
|
|
||||||
echo "[Manager]
|
|
||||||
DefaultTimeoutStartSec=5s
|
|
||||||
DefaultTimeoutStopSec=10s" | sudo tee /etc/systemd/system.conf.d/boot.conf /etc/systemd/user.conf.d/boot.conf
|
|
||||||
|
|
||||||
highlight "Default to current user in tty1,2,3"
|
highlight "Default to current user in tty1,2,3"
|
||||||
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d /etc/systemd/system/getty@tty2.service.d /etc/systemd/system/getty@tty3.service.d
|
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d /etc/systemd/system/getty@tty2.service.d /etc/systemd/system/getty@tty3.service.d
|
||||||
echo "[Service]
|
echo "[Service]
|
||||||
ExecStart=
|
ExecStart=
|
||||||
ExecStart=-/usr/bin/agetty --skip-login --login-options $USER %I" | sudo tee /etc/systemd/system/getty@tty1.service.d/override.conf /etc/systemd/system/getty@tty2.service.d/override.conf /etc/systemd/system/getty@tty3.service.d/override.conf
|
ExecStart=-/usr/bin/agetty --skip-login --login-options $USER %I" |
|
||||||
|
sudo tee /etc/systemd/system/getty@tty1.service.d/override.conf /etc/systemd/system/getty@tty2.service.d/override.conf /etc/systemd/system/getty@tty3.service.d/override.conf
|
||||||
highlight '/etc/locale.conf'
|
|
||||||
echo 'LANG=en_IE.UTF-8
|
|
||||||
LANGUAGE=en_IE.UTF-8
|
|
||||||
LC_ALL=en_IE.UTF-8
|
|
||||||
LC_MONETARY=de_DE.UTF-8
|
|
||||||
LC_COLLATE=C' | sudo tee /etc/locale.conf
|
|
||||||
|
|
||||||
## Hardware
|
## Hardware
|
||||||
section 'Hardware'
|
section 'Hardware'
|
||||||
|
@ -97,6 +83,6 @@ highlight "Mixxx symlinks"
|
||||||
mkdir -p ~/.mixxx
|
mkdir -p ~/.mixxx
|
||||||
ln -s -t ~/.mixxx ${XDG_DATA_HOME:-$HOME/.local/share}/mixxx/* ${XDG_CONFIG_HOME:-$HOME/.config}/mixxx/*
|
ln -s -t ~/.mixxx ${XDG_DATA_HOME:-$HOME/.local/share}/mixxx/* ${XDG_CONFIG_HOME:-$HOME/.config}/mixxx/*
|
||||||
|
|
||||||
highlight "Setup kakoune for plugins"
|
highlight "Setup kakoune plugin loader"
|
||||||
plugkak="${XDG_CONFIG_HOME:-$HOME/.config}/kak/plugins/plug.kak"
|
plugkak="${XDG_CONFIG_HOME:-$HOME/.config}/kak/plugins/plug.kak"
|
||||||
! test -d "$plugkak" && mkdir -p "$(dirname $plugkak)" && git clone https://github.com/robertmeta/plug.kak.git "$plugkak"
|
test -d "$plugkak" || { mkdir -p "$(dirname $plugkak)" && git clone https://github.com/robertmeta/plug.kak.git "$plugkak"; }
|
||||||
|
|
|
@ -153,6 +153,7 @@ unsetopt CASE_GLOB
|
||||||
setopt pipefail
|
setopt pipefail
|
||||||
|
|
||||||
# Enable zmv (see ZSHCONTRIB(1))
|
# Enable zmv (see ZSHCONTRIB(1))
|
||||||
|
alias szmv='sudo zsh -c autoload zmv && zmv'
|
||||||
autoload zmv
|
autoload zmv
|
||||||
alias zmv='noglob zmv'
|
alias zmv='noglob zmv'
|
||||||
alias zmw='noglob zmv -W'
|
alias zmw='noglob zmv -W'
|
||||||
|
|
Loading…
Reference in New Issue