Compare commits

...

2 commits

Author SHA1 Message Date
Hippolyte Chauvin
29c3841354 Ajout du script xinitrc 2023-04-16 12:48:57 +02:00
Hippolyte Chauvin
d271d5589a Ajout du script makeprio 2023-04-16 12:47:33 +02:00
2 changed files with 78 additions and 0 deletions

38
bin/makeprio Executable file
View file

@ -0,0 +1,38 @@
#!/bin/bash
# Variables
sudo=sudo
renice=renice
pid="$(pidof "$1")"
# Error function
error() {
>&2 echo -e "\033[1;31mERROR:\033[0m $1"; shift
exit "${1:-1}"
}
# Test if process exists
if [[ -z $pid ]]; then
error "No such process." 1
else
shift
fi
# Arguments
prio="${1:--20}"; shift
# Command building
renice=(
"$sudo"
"$renice"
"$prio"
"$pid"
)
# Debug
#echo "${renice[@]}"
#exit 0
# Execution
"${renice[@]}"

40
home/xinitrc Executable file
View file

@ -0,0 +1,40 @@
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# Environment
export \
TERMINAL=st \
DRI_PRIME=1 \
QT_QPA_PLATFORMTHEME=qt5ct
numlockx &
exec /usr/bin/i3