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:
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
/home/sravan/.scripts/picom.sh --off
|
||||
# /home/sravan/.scripts/picom.sh --off
|
||||
/home/sravan/.scripts/dunst.sh --dnd
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user