Initial commit.

This commit is contained in:
CronyAkatsuki 2024-06-20 17:26:20 +02:00
commit fb9d04b7ef
28 changed files with 2359 additions and 0 deletions

53
.config/X11/xinitrc Normal file
View file

@ -0,0 +1,53 @@
#!/bin/sh
sudo ryzenadj-service --stapm-limit 35000 --fast-limit 35000 --slow-limit 35000 --slow-time 60 --stapm-time 1000 --tctl-temp 85 --vrmmax-current 70000 &>/dev/null &
userresources=$HOME/.config/X11/xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
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
# start some nice programs
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
# Setup monitor
external-monitor.sh
# Fix mouse cursor
xsetroot -cursor_name left_ptr
# Replace caps lock with escape
setxkbmap -option caps:escape
# Set mouse settings
mouse-settings
# Recompile xmonad
xmonad --recompile
# Set wallpaper
xwallpaper --zoom $HOME/pics/wallpaper.png
exec xmonad

9
.config/X11/xresources Normal file
View file

@ -0,0 +1,9 @@
! Fix hinting for fonts
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintslight
Xft.hinting: 1
Xft.antialias: 1
Xft.rgba: rgb
! Fix cursor
Xcursor.theme: catppuccin-frappe-rosewater-cursors