-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split patch into two different files. One for the
makefile and the other for the script itself. Plus, added the udev eclass. I was not aware of it before Signed-off-by: Tomas Fabrizio Orsi <[email protected]>
- Loading branch information
1 parent
3d2da89
commit caf8232
Showing
4 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST V1.1.tar.gz 96160 BLAKE2B 1381c7f3abdc5d2c19f3a058cc8efd4ab71753787219f3e36ed6c71402d9d16c0bfb148e5b9e19f37b6dc0e1fd621dede6203dcfb0055ecb0b344fc31c5c9c8c SHA512 c8181f50fd84770302f5e995def2c0ee28ee2ced60b22799cb66f67d051f64c19363ec5546aa18beb383c3858a0b5f159611d8fd80972b55e7ac2fb4c9c7ae9c | ||
DIST v1.0.tar.gz 52585 BLAKE2B 2341ec58ac99279eefd1004d33f4004cdb7992a49c0d1b67a06896ba7ea17ca2f05af3563288a5d9dad6dd331dd21d73197a18c16df830374a2358b2b6be9781 SHA512 7ca2b3d41b382d8c0ab3bb083c086975d79b810aae934b8ffd0d3ec6af4c258d187897a20a260a9c309b3bd7d59576069227f58ed2418486b80c03b446cee6e9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/devify b/devify | ||
index 0e16e14..6419515 100755 | ||
--- a/devify | ||
+++ b/devify | ||
@@ -1,13 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
status=$2 | ||
-icon_pack=/usr/local/share/icons/MonoDev | ||
+icon_pack=/usr/share/icons/MonoDev | ||
user=$(who | head -n 1 | awk '{print $1}') | ||
wal_dir=/home/$user/.cache/wal/colors | ||
icon_color=$(grep -oP '#.*([A-Za-z]|[0-9])' $icon_pack/main_color.svg) | ||
|
||
-DBUS_SESSION_BUS_ADDRESS=unix:path="/run/user/$( id -u "$user" )/bus" | ||
-export DBUS_SESSION_BUS_ADDRESS | ||
+# DBUS_SESSION_BUS_ADDRESS=unix:path="/run/user/$( id -u "$user" )/bus" | ||
+# export DBUS_SESSION_BUS_ADDRESS | ||
+export DISPLAY=:0 | ||
|
||
notify() { | ||
if [ "$status" == "add" ]; then |