Switch from Xmonad to DWM, MangoHud Config Changes, & Fallout Grub Theme

- Change "~" to "=" in some places in README.org
- Update MangoHud config to show info about RAM, Disk, GPU, etc.
- Switch from xmonad to dwm
- Add dwm-flexipatch submodule
- Add fallout grub theme submodule
- Add notifications to session control script
- Remove nyrna from autostart
- Add Bauh package management GUI to autostart
- Comment out turning picom off when starting game
  since it stops when a program goes fullscreen now
This commit is contained in:
Sravan Balaji
2021-06-15 21:23:41 -04:00
parent 4253c6b30c
commit e4ff08d98c
12 changed files with 113 additions and 42 deletions

View File

@@ -11,7 +11,7 @@ help_menu() {
rofi_menu() {
declare -a options=(
" Recompile & Restart Xmonad - restart"
" Restart Dwm - restart"
" Logout - logout"
" Lock - lock"
"⏾ Sleep - sleep"
@@ -39,26 +39,32 @@ main() {
help_menu
;;
--logout)
notify-send -t 0 "Session Control" "Press M-S-q to exit xmonad"
notify-send "Session Control" "Logging Out of Dwm"
xdotool key Super+Shift_L+q
;;
--lock)
notify-send "Session Control" "Locking Session"
light-locker-command --lock
;;
--sleep)
notify-send "Session Control" "Going to Sleep"
systemctl suspend
;;
--reboot)
notify-send "Session Control" "Rebooting System"
reboot
;;
--shutdown)
notify-send "Session Control" "Shutting Down System"
shutdown now
;;
--hibernate)
notify-send "Session Control" "Hibernating System"
systemctl hibernate
;;
--restart)
xmonad --recompile
xmonad --restart
notify-send "Session Control" "Restarting Dwm"
xdotool key Super+Control_L+Shift_L+q
;;
--rofi)
rofi_menu