Skip to content

Commit 73e87e9

Browse files
committed
remove conf.d support
this was a convention that probably only I used. I noticed it breaks when there's a broken symlink in conf.d and decided to remove it. It makes more sense to just source the files from the main config.py.
1 parent 7b9baef commit 73e87e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# next
2+
- breaking: stop sourcing files from `~/.config/qutebrowser/conf.d/`
3+
- this was undocumented, nonstandard, and didn't work as well as it could
24
- switch to `pyproject.toml`
35
- hopefully use the right qutebrowser dirs on Windows
46
- `choose`: add `qutebrowser` menu item for the main qutebrowser profile

src/qbpm/profiles.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ def create_config(
5151
if home_page:
5252
out(f"c.url.start_pages = ['{home_page}']")
5353
out(f"config.source(r'{qb_config_dir / 'config.py'}')")
54-
for conf in qb_config_dir.glob("conf.d/*.py"):
55-
out(f"config.source(r'{conf}')")
5654

5755

5856
def exists(profile: Profile) -> bool:

0 commit comments

Comments
 (0)