2024-08-23 19:55:31 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
# set keyboard repeat rate
|
|
|
|
|
xset r rate 200 30
|
|
|
|
|
|
|
|
|
|
# monitor settings
|
|
|
|
|
xrandr --output DisplayPort-1 --mode 1920x1080 --rate 144
|
|
|
|
|
|
|
|
|
|
# tablet settings
|
|
|
|
|
xsetwacom set "Wacom One by Wacom S Pen stylus" MapToOutput DisplayPort-0
|
|
|
|
|
|
|
|
|
|
# set color temperature
|
|
|
|
|
sct 4500
|
|
|
|
|
|
|
|
|
|
# compositor
|
|
|
|
|
picom &
|
|
|
|
|
|
|
|
|
|
LIBEXEC=/run/current-system/sw/libexec
|
|
|
|
|
[ -d "$LIBEXEC" ] || LIBEXEC=/usr/lib
|
|
|
|
|
# session manager
|
|
|
|
|
"$LIBEXEC"/polkit-kde-authentication-agent-1 &
|
|
|
|
|
# desktop portal
|
|
|
|
|
"$LIBEXEC"/xdg-desktop-portal-kde &
|
2024-10-11 01:15:11 -04:00
|
|
|
"$LIBEXEC"/xdg-desktop-portal &
|
2024-08-23 19:55:31 -04:00
|
|
|
kded5 &
|
|
|
|
|
|
|
|
|
|
# ime
|
|
|
|
|
export GTK_IM_MODULE=fctix
|
|
|
|
|
export QT_IM_MODULE=fcitx
|
|
|
|
|
export XMODIFIERS=@im=fcitx
|
|
|
|
|
fcitx5 &
|
|
|
|
|
|
|
|
|
|
# file manager daemon
|
|
|
|
|
dolphin --daemon &
|
|
|
|
|
|
|
|
|
|
# qt setting
|
|
|
|
|
export QT_QPA_PLATFORMTHEME="qt6ct"
|
|
|
|
|
# same dpi for multi monitor
|
|
|
|
|
export WINIT_X11_SCALE_FACTOR=1
|
|
|
|
|
|
|
|
|
|
safeeyes &
|
|
|
|
|
|
2024-10-11 00:48:32 -04:00
|
|
|
copyq &
|
|
|
|
|
|
2024-11-01 03:55:36 -04:00
|
|
|
xrdb -merge ~/.config/Xresources
|
|
|
|
|
|
2024-11-26 03:14:51 -05:00
|
|
|
exec ${@:-awesome}
|