varlesh / oreo-cursors

oreo-cursors
GNU General Public License v2.0
178 stars 18 forks source link

The 'make build' command doesn't work #30

Open PSGitHubUser1 opened 4 months ago

PSGitHubUser1 commented 4 months ago

Here is the log:

:: Created /home/shubham/oreo-cursors/src/oreo_spark_white_bordered_cursors/ :: Successfully created src/ files bash build.sh => Workon './src/oreo_black_cursors' ... terminate called after throwing an instance of 'Gio::DBus::Error' xargs: sh: terminated by signal 6 make: *** [Makefile:9: build] Error 125

JefteKeller commented 4 months ago

Setting DBUS_SESSION_BUS_ADDRESS="" before building solved the issue for me.

PSGitHubUser1 commented 4 months ago

Setting DBUS_SESSION_BUS_ADDRESS="" before building solved the issue for me.

How I set that? Which file?

hetenyi-domonkos commented 3 months ago

Setting DBUS_SESSION_BUS_ADDRESS="" before building solved the issue for me.

This really works, you're a godsend

Setting DBUS_SESSION_BUS_ADDRESS="" before building solved the issue for me.

How I set that? Which file?

I appended it into the build.sh file, like this:

#!/usr/bin/env bash

# Oreo cursors, based on KDE Breeze
# Copyright (c) 2016 Keefer Rourke <keefer.rourke@gmail.com>
# Copyright (c) 2020 Sergei Eremenko <https://github.com/SmartFinn>

set -e

DBUS_SESSION_BUS_ADDRESS=""
INKSCAPE_VERSION=$(inkscape --version 2>/dev/null | awk '/Inkscape[ ]/ {print $2; exit}')

convert_to_png() {
    local src_dir="$1"

Not sure is that's the correct place for it, but it worked for me.

qlixed commented 3 months ago

You can also run the command as follows: $ DBUS_SESSION_BUS_ADDRESS="" make build