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:
Sravan Balaji 2021-09-26 18:17:57 -04:00
parent cac0719d5f
commit 9017a65bcf
21 changed files with 29 additions and 24 deletions

@ -1 +1 @@
Subproject commit ca8892ee2eba3ead7a334ce51c5c153734aad2da
Subproject commit 2084eddf5f18163b27158f82dc81180b2d8e8ff3

@ -1 +1 @@
Subproject commit 918d196525c2a84aa65fe69ee80729c095d00ad3
Subproject commit 220ca9515a48e672481f4ed1ca52980dc0af7d3c

@ -1 +1 @@
Subproject commit 8d2a133926a0bd8755e02251f5ab09a2f93bd250
Subproject commit 2907b9eefe03096ad37da270abdd16fec1f47ac8

View File

@ -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
View File

@ -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

View File

@ -1,3 +1,2 @@
#!/bin/bash
/home/sravan/.scripts/deadd.sh --unpause
/home/sravan/.scripts/picom.sh --on

View File

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

View File

@ -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"
;;

@ -1 +1 @@
Subproject commit 30b19d6e6e007144ffac871b3a79a8ace0206d96
Subproject commit 0c9c3bf5ad54be4e1ebc798148be6c1fc92b7d13

@ -1 +1 @@
Subproject commit 4dfebf1c4a8e52a89353e0646b6f241b006868e8
Subproject commit 50e50f548aac61ee006e47345cdd18d8f49698f7

@ -1 +1 @@
Subproject commit e369c8e230b5b8d090677c2254509fcef61946aa
Subproject commit a2c193c0905d98edccbdb44e5bcfc060ac723146

@ -1 +1 @@
Subproject commit 6d6239abe975e168e6ffb8b19c03a997bbe88fe6
Subproject commit eeaa86a730e3d38649053574dc60a74ce06a01bc

@ -1 +1 @@
Subproject commit bff3dbbffd63a8242c74f79c07982ee2b0dfd269
Subproject commit 3d2a8395bce015a941a22a7aceef49e4e23c2a7c

@ -1 +1 @@
Subproject commit cdb1df5de0ac960355ddf246329f7ac7a8970a49
Subproject commit f934bb423442161f2b0c1e29cb441569960c7c7f

@ -1 +1 @@
Subproject commit bb30e9b4153eb52c78faad93c5ef3403d3d850b3
Subproject commit b62a74d55a0193aa6a1c8ec74e3eba07777bc979

@ -1 +1 @@
Subproject commit cbc801991b6054e15075d7eeb909b5c760fc2842
Subproject commit 348b1aae51b9f26b9dab16a473d7f1eaf1944899

@ -1 +1 @@
Subproject commit f0aa77e23896c0b60ad342f89405e5c7d2296019
Subproject commit c1d10f2e6b3181c5d067596c5ab60953c4921029

@ -1 +1 @@
Subproject commit 045fa9a477e923c5f9576da348014e202225974e
Subproject commit 22608997b3ef4597f7de84a7a293cfbf538b4cca

@ -0,0 +1 @@
Subproject commit d7d2683d6522f395627295aef613b577836691ec

@ -1 +1 @@
Subproject commit d1ff992bf605c098577b7f0e632e3ea887b71520
Subproject commit 86eb25b3dc8aa228373723c92f102f9d5fffdf11

View File

@ -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