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

@@ -1,3 +1,3 @@
#!/bin/bash
/home/sravan/.scripts/picom.sh --off
# /home/sravan/.scripts/picom.sh --off
/home/sravan/.scripts/dunst.sh --dnd

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

View File

@@ -28,7 +28,7 @@ declare -a kill_system_array=(\
declare -a apps_array=(\
# System Tray Applications
"redshift-gtk" \ # Redshift Blue Light Filter
"nyrna" \ # Nyrna Application Suspend
"bauh-tray" \ # Bauh Package Management GUI
"blueman-tray" \ # Blueman Bluetooth Manager
"nm-applet" \ # Network Manager Applet
"kdeconnect-indicator" \ # KDE Connect Indicator
@@ -40,7 +40,7 @@ declare -a apps_array=(\
declare -a kill_apps_array=(\
# System Tray Applications
"killall redshift" \ # Redshift Blue Light Filter
"killall nyrna" \ # Nyrna Application Suspend
"killall bauh-tray" \ # Bauh Package Management GUI
"killall blueman-tray" \ # Blueman Bluetooth Manager
"killall nm-applet" \ # Network Manager Applet
"killall kdeconnect-indicator" \ # KDE Connect Indicator