Compare commits
2 commits
97feea790c
...
29c3841354
Author | SHA1 | Date | |
---|---|---|---|
|
29c3841354 | ||
|
d271d5589a |
2 changed files with 78 additions and 0 deletions
38
bin/makeprio
Executable file
38
bin/makeprio
Executable 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
40
home/xinitrc
Executable 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
|
||||
|
Loading…
Reference in a new issue