Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent picom autostart for regolith compat #1

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions debian/patches/regolith-pruning.diff
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')
1 change: 1 addition & 0 deletions debian/patches/series
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
regolith-pruning.diff
Loading