Submodule Updates & Picom Config Changes
- Update doom-emacs submodule - Update dracula theme submodules - Update doom-emacs-config submodule with file extension mode association and frame opacity - Update dwm-flexipatch submodule with deck layout - Update picom config to vsync at 144Hz instead of auto-detecting refresh rate - Add matlab-schemes submodule for MATLAB editor themeing - Remove automatically turning picom back on in game_exit.sh because it causing visual glitches. Manually turning it back on seems to work fine. - Fix rofi menu icons for picom script - Use picom "-b" flag instead of running it in background manually with "&"
This commit is contained in:
Submodule .config/doom-emacs updated: ca8892ee2e...2084eddf5f
Submodule .config/doom-emacs-config updated: 918d196525...220ca9515a
Submodule .config/dwm-flexipatch updated: 8d2a133926...2907b9eefe
@@ -323,6 +323,7 @@ detect-client-opacity = true;
|
||||
# try detecting this with X RandR extension.
|
||||
#
|
||||
# refresh-rate = 60
|
||||
refresh-rate = 144
|
||||
|
||||
# Limit picom to repaint at most once every 1 / 'refresh_rate' second to
|
||||
# boost performance. This should not be used with
|
||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -90,3 +90,7 @@
|
||||
path = .config/zathura
|
||||
url = git@github.com:dracula/zathura.git
|
||||
branch = master
|
||||
[submodule ".themes/matlab-schemes"]
|
||||
path = .themes/matlab-schemes
|
||||
url = git@github.com:scottclowe/matlab-schemes.git
|
||||
branch = master
|
||||
|
@@ -1,3 +1,2 @@
|
||||
#!/bin/bash
|
||||
/home/sravan/.scripts/deadd.sh --unpause
|
||||
/home/sravan/.scripts/picom.sh --on
|
||||
|
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
/home/sravan/.scripts/deadd.sh --pause
|
||||
/home/sravan/.scripts/picom.sh --off
|
||||
/home/sravan/.scripts/deadd.sh --pause
|
||||
|
@@ -18,8 +18,8 @@ is_running() {
|
||||
rofi_menu() {
|
||||
declare -a options=(
|
||||
"⏼ Toggle - toggle"
|
||||
" Turn On - on"
|
||||
" Turn Off - off"
|
||||
" Turn On - on"
|
||||
" Turn Off - off"
|
||||
" Back - back"
|
||||
" Quit - quit"
|
||||
)
|
||||
@@ -55,7 +55,7 @@ main() {
|
||||
killall picom
|
||||
fi
|
||||
|
||||
picom --config /home/sravan/.config/picom/picom.conf &
|
||||
picom --config /home/sravan/.config/picom/picom.conf -b
|
||||
|
||||
notify-send "Turning Picom ON"
|
||||
;;
|
||||
|
Submodule .themes/dracula-freecad updated: 30b19d6e6e...0c9c3bf5ad
Submodule .themes/dracula-gnome-terminal updated: 4dfebf1c4a...50e50f548a
Submodule .themes/dracula-gtk updated: e369c8e230...a2c193c090
Submodule .themes/dracula-kitty updated: 6d6239abe9...eeaa86a730
Submodule .themes/dracula-latex updated: bff3dbbffd...3d2a8395bc
Submodule .themes/dracula-libreoffice updated: cdb1df5de0...f934bb4234
Submodule .themes/dracula-matlab updated: bb30e9b415...b62a74d55a
Submodule .themes/dracula-matplotlib updated: cbc801991b...348b1aae51
Submodule .themes/dracula-tty updated: f0aa77e238...c1d10f2e6b
Submodule .themes/dracula-xournalpp updated: 045fa9a477...22608997b3
1
.themes/matlab-schemes
Submodule
1
.themes/matlab-schemes
Submodule
Submodule .themes/matlab-schemes added at d7d2683d65
Submodule .vim/pack/themes/start/dracula updated: d1ff992bf6...86eb25b3dc
10
README.org
10
README.org
@@ -2573,6 +2573,7 @@ detect-client-opacity = true;
|
||||
# try detecting this with X RandR extension.
|
||||
#
|
||||
# refresh-rate = 60
|
||||
refresh-rate = 144
|
||||
|
||||
# Limit picom to repaint at most once every 1 / 'refresh_rate' second to
|
||||
# boost performance. This should not be used with
|
||||
@@ -2781,8 +2782,8 @@ is_running() {
|
||||
rofi_menu() {
|
||||
declare -a options=(
|
||||
"⏼ Toggle - toggle"
|
||||
" Turn On - on"
|
||||
" Turn Off - off"
|
||||
" Turn On - on"
|
||||
" Turn Off - off"
|
||||
" Back - back"
|
||||
" Quit - quit"
|
||||
)
|
||||
@@ -2818,7 +2819,7 @@ main() {
|
||||
killall picom
|
||||
fi
|
||||
|
||||
picom --config /home/sravan/.config/picom/picom.conf &
|
||||
picom --config /home/sravan/.config/picom/picom.conf -b
|
||||
|
||||
notify-send "Turning Picom ON"
|
||||
;;
|
||||
@@ -7850,8 +7851,8 @@ These are scripts that should be run from Lutris when launching or exiting a gam
|
||||
*Preferences > System options > Pre-launch script*
|
||||
|
||||
#+BEGIN_SRC shell :shebang #!/bin/bash :tangle .scripts/game_launch.sh
|
||||
/home/sravan/.scripts/deadd.sh --pause
|
||||
/home/sravan/.scripts/picom.sh --off
|
||||
/home/sravan/.scripts/deadd.sh --pause
|
||||
#+END_SRC
|
||||
|
||||
*** Post-Exit Script
|
||||
@@ -7860,7 +7861,6 @@ These are scripts that should be run from Lutris when launching or exiting a gam
|
||||
|
||||
#+BEGIN_SRC shell :shebang #!/bin/bash :tangle .scripts/game_exit.sh
|
||||
/home/sravan/.scripts/deadd.sh --unpause
|
||||
/home/sravan/.scripts/picom.sh --on
|
||||
#+END_SRC
|
||||
|
||||
** Control Center
|
||||
|
Reference in New Issue
Block a user