Skip to content

Commit

Permalink
issue warning if fcntl not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
eylles committed Jun 27, 2024
1 parent 8a8b2fd commit 9df8379
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pywal/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ def send(colors, cache_dir=CACHE_DIR, to_send=True, vte_fix=False):

sequences = create_sequences(colors, vte_fix)

if not util.has_fcntl:
logging.warning(util.fcntl_warning)

# Send data to open terminal devices.
if to_send:
for dev in devices:
Expand Down

0 comments on commit 9df8379

Please sign in to comment.