revert #71 (requested in #83)

This commit is contained in:
piotr
2025-03-11 01:23:21 +01:00
parent 3a2717b488
commit b939ff4a02
2 changed files with 0 additions and 43 deletions

View File

@@ -104,14 +104,6 @@ source = ~/.config/hypr/workspaces.conf
Do not set `disable_autoreload true` in Hyprland settings, or you'll have to reload Hyprland manually after applying chages.
#### Hyprland & Nix
Insert:
```text
monitor = [ (builtins.readFile ~/.config/hypr/workspaces.conf) ];
```
## Settings
The runtime configuration file is placed in your config directory, like `~/.config/nwg-displays/config`.

View File

@@ -872,41 +872,6 @@ def apply_settings(display_buttons, outputs_activity, outputs_path, use_desc=Fal
create_confirm_win(backup, outputs_path)
elif os.getenv("HYPRLAND_INSTANCE_SIGNATURE") and os.getenv("NIX_PATH"):
transforms = {"normal": 0, "90": 1, "180": 2, "270": 3, "flipped": 4, "flipped-90": 5, "flipped-180": 6,
"flipped-270": 7}
for db in display_buttons:
name = db.name if not use_desc else "desc:{}".format(db.description)
db_names.append(name)
line = "\"{},{}x{}@{},{}x{},{}\"".format(name, db.physical_width, db.physical_height, db.refresh, db.x, db.y, db.scale)
if db.mirror:
line += ",mirror,{}".format(db.mirror)
if db.ten_bit:
line += ",bitdepth,10"
lines.append(line)
if db.transform != "normal":
lines.append("\"{},transform,{}\"".format(name, transforms[db.transform]))
# avoid looking up the hardware name
if db.name in outputs_activity and not outputs_activity[db.name]:
lines.append("\"{},disable\"".format(name))
cmd = "on" if db.dpms else "off"
hyprctl(f"dispatch dpms {cmd} {db.name}")
print("[Saving]")
for line in lines:
print(line)
backup = []
if os.path.isfile(outputs_path):
backup = load_text_file(outputs_path).splitlines()
save_list_to_text_file(lines, outputs_path)
create_confirm_win(backup, outputs_path)
elif os.getenv("HYPRLAND_INSTANCE_SIGNATURE"):
transforms = {"normal": 0, "90": 1, "180": 2, "270": 3, "flipped": 4, "flipped-90": 5, "flipped-180": 6,
"flipped-270": 7}