-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.xinitrc
63 lines (54 loc) · 1.46 KB
/
.xinitrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
# 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
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources &
# exec /etc/X11/xinit/xinitrc.d/50-systemd-user.sh &
# exec dbus-update-activation-environment --all &
# /usr/lib/polkit-kde-authentication-agent-1 &
exec gsettings set org.gnome.desktop.interface color-scheme "prefer-dark" &
exec firewall-applet &
exec /usr/lib/mate-polkit/polkit-mate-authentication-agent-1 &
exec nm-applet &
exec blueman-applet &
exec corectrl &
# exec sxhkd &
# exec feh --bg-scale /usr/share/backgrounds/archlinux/awesome.png &
exec feh --bg-scale ~/Pictures/Wallpapers/archlinux-magenta-blue.png &
# exec feh --bg-scale /home/arsxhy/Downloads/Bahan-bahan\ ganti\ Themes/Rose-Pines/wallpapers/leafy-moon.png
xsetroot -cursor_name left_ptr &
# Here i3 is kept as default
session=${1:-qtile}
case $session in
qtile ) exec qtile start;;
awesome ) exec awesome;;
Hyprland ) exec Hyprland;;
# i3|i3wm ) exec i3;;
# bspwm ) exec bspwm;;
# No Known Session, Try to Run it as command
* ) exec $1;;
esac
# echo "Pilih Window Manager: "
# echo "1. Qtile"
# echo "2. AwesomeWM"
# echo "3. Hyprland"
# read wm_choice -p "Masukkan Nomor: "
# case $wm_choice in
# 1)
# exec qtile start
# ;;
# 2)
# exec awesome
# ;;
# 3)
# exec Hyprland
# ;;
# *)
# echo "Pilihan tidak valid, memulai default (Qtile)"
# exec qtile start
# ;;
# esac