forked from yshui/picom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent picom autostart for regolith compat
- Loading branch information
Regolith Linux
committed
Jul 24, 2024
1 parent
64b4789
commit 9133602
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Index: picom/meson_options.txt | ||
=================================================================== | ||
--- picom.orig/meson_options.txt | ||
+++ picom/meson_options.txt | ||
@@ -1,5 +1,5 @@ | ||
option('sanitize', type: 'boolean', value: false, description: 'Build with sanitizers enabled (deprecated)') | ||
-option('config_file', type: 'boolean', value: true, description: 'Enable config file support') | ||
+option('config_file', type: 'boolean', value: false, description: 'Enable config file support') | ||
option('regex', type: 'boolean', value: true, description: 'Enable regex support in window conditions') | ||
|
||
option('vsync_drm', type: 'boolean', value: false, description: 'Enable support for using drm for vsync') | ||
@@ -9,7 +9,7 @@ option('dbus', type: 'boolean', value: t | ||
|
||
option('xrescheck', type: 'boolean', value: false, description: 'Enable X resource leak checker (for debug only)') | ||
|
||
-option('compton', type: 'boolean', value: true, description: 'Install backwards compat with compton') | ||
+option('compton', type: 'boolean', value: false, description: 'Install backwards compat with compton') | ||
|
||
option('with_docs', type: 'boolean', value: false, description: 'Build documentation and man pages') | ||
|
||
Index: picom/meson.build | ||
=================================================================== | ||
--- picom.orig/meson.build | ||
+++ picom/meson.build | ||
@@ -73,7 +73,7 @@ subdir('man') | ||
|
||
install_data('bin/picom-trans', install_dir: get_option('bindir')) | ||
install_data('picom.desktop', install_dir: 'share/applications') | ||
-install_data('picom.desktop', install_dir: get_option('sysconfdir') / 'xdg' / 'autostart') | ||
+# install_data('picom.desktop', install_dir: get_option('sysconfdir') / 'xdg' / 'autostart') | ||
|
||
if get_option('compton') | ||
install_data('compton.desktop', install_dir: 'share/applications') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
regolith-pruning.diff |