2023-12-03 11:50:14 -05:00
|
|
|
#!/bin/bash
|
2023-07-31 07:34:19 -04:00
|
|
|
# ___ _____ ___ _ _____ ____ _ _
|
|
|
|
# / _ \_ _|_ _| | | ____| / ___|| |_ __ _ _ __| |_
|
|
|
|
# | | | || | | || | | _| \___ \| __/ _` | '__| __|
|
|
|
|
# | |_| || | | || |___| |___ ___) | || (_| | | | |_
|
|
|
|
# \__\_\|_| |___|_____|_____| |____/ \__\__,_|_| \__|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# by Stephan Raabe (2023)
|
|
|
|
# -----------------------------------------------------
|
2023-01-23 11:14:35 -05:00
|
|
|
|
2023-09-07 02:35:26 -04:00
|
|
|
# My screen resolution
|
2023-10-17 08:45:45 -04:00
|
|
|
# xrandr --rate 120
|
2023-09-07 02:35:26 -04:00
|
|
|
|
|
|
|
# For Virtual Machine
|
2023-10-17 08:45:45 -04:00
|
|
|
# xrandr --output Virtual-1 --mode 1920x1080
|
2023-09-07 02:35:26 -04:00
|
|
|
|
2023-12-20 05:05:15 -05:00
|
|
|
# Keyboard layout
|
2023-12-21 05:05:20 -05:00
|
|
|
setxkbmap us
|
2023-09-07 02:35:26 -04:00
|
|
|
|
|
|
|
# Load picom
|
2024-01-31 07:54:12 -05:00
|
|
|
# picom &
|
2023-09-07 02:35:26 -04:00
|
|
|
|
|
|
|
# Load power manager
|
2023-01-24 09:17:17 -05:00
|
|
|
xfce4-power-manager &
|
2023-09-07 02:35:26 -04:00
|
|
|
|
|
|
|
# Load notification service
|
2023-01-25 14:14:03 -05:00
|
|
|
dunst &
|
2023-09-07 02:35:26 -04:00
|
|
|
|
|
|
|
# Setup Wallpaper and update colors
|
2023-12-21 05:05:20 -05:00
|
|
|
~/dotfiles/qtile/scripts/wallpaper.sh init
|