Skip to content

Instantly share code, notes, and snippets.

View 505e06b2's full-sized avatar

505e06b2

View GitHub Profile
@505e06b2
505e06b2 / fix_vivaldi_fullscreen.py
Created January 4, 2020 02:11
Fix the border selection issue with Vivaldi and i3
#!/usr/bin/env python3
import json, os
path = os.path.join(os.environ['HOME'], ".config/vivaldi/Default/Preferences")
settings = {}
with open(path, "r") as f:
settings = json.loads(f.read())