2023-01-23 16:14:35 +00:00
|
|
|
#!/bin/sh
|
2023-07-31 11:34:19 +00:00
|
|
|
# ___ _____ ___ _ _____ ____ _ _
|
|
|
|
# / _ \_ _|_ _| | | ____| / ___|| |_ __ _ _ __| |_
|
|
|
|
# | | | || | | || | | _| \___ \| __/ _` | '__| __|
|
|
|
|
# | |_| || | | || |___| |___ ___) | || (_| | | | |_
|
|
|
|
# \__\_\|_| |___|_____|_____| |____/ \__\__,_|_| \__|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# by Stephan Raabe (2023)
|
|
|
|
# -----------------------------------------------------
|
2023-01-23 16:14:35 +00:00
|
|
|
|
2023-09-07 06:35:26 +00:00
|
|
|
# My screen resolution
|
2023-02-06 15:11:51 +00:00
|
|
|
xrandr --rate 120
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# For Virtual Machine
|
|
|
|
# xrandr --outout Virtual-1 --mode 1920x1080
|
|
|
|
|
|
|
|
# Set keyboard mapping
|
2023-02-12 20:48:34 +00:00
|
|
|
setxkbmap de
|
2023-09-07 06:35:26 +00:00
|
|
|
# setxkbmap en
|
|
|
|
|
|
|
|
# Load picom
|
2023-02-03 10:43:35 +00:00
|
|
|
picom &
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# Load power manager
|
2023-01-24 14:17:17 +00:00
|
|
|
xfce4-power-manager &
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# Load notification service
|
2023-01-25 19:14:03 +00:00
|
|
|
dunst &
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# Launch polybar
|
2023-04-06 12:30:10 +00:00
|
|
|
~/dotfiles/polybar/launch.sh &
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# Setup Wallpaper and update colors
|
2023-07-31 11:34:19 +00:00
|
|
|
~/dotfiles/scripts/updatewal.sh &
|
2023-09-07 06:35:26 +00:00
|
|
|
|
|
|
|
# Load Windows 11 VM
|
2023-08-13 09:08:30 +00:00
|
|
|
# virsh --connect qemu:///system start win11
|