diff options
-rwxr-xr-x | compilePlantUML.sh | 6 | ||||
-rwxr-xr-x | emoji.sh | 1 | ||||
-rwxr-xr-x | gpu/gpuHybrid.sh | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/compilePlantUML.sh b/compilePlantUML.sh index dcef247..e5de323 100755 --- a/compilePlantUML.sh +++ b/compilePlantUML.sh @@ -20,9 +20,11 @@ targetDir="/tmp/plantUML" sourceFile="$1" targetFile="${targetDir}/${sourceFile##*/}" targetFile="${targetFile%.*}.png" -plantUMLExec="$HOME/programs/plantUML/plantuml.jar" +#plantUMLExec="$HOME/programs/plantUML/plantuml.jar" [ -d "$targetDir" ] || mkdir -p "$targetDir" -java -jar "$plantUMLExec" "$sourceFile" -o "$targetDir" +# java -jar "$plantUMLExec" "$sourceFile" -o "$targetDir" +plantuml "$sourceFile" -o "$targetDir" [ -n "$open" ] && "$VIEWER" "$targetFile" & exit 0 # So return value is not that of previous line + @@ -7,3 +7,4 @@ selected="$(dmenu -i -l 20 -p "Choose an emoji:" < "$file" | cut -d' ' -f1)" [ -z "$selected" ] && dunstify -t 2000 "No emoji selected." && exit 0 echo "$selected" | tr -d '\n' | xsel -ib dunstify -t 2000 "Copied $(xsel -ob)" + diff --git a/gpu/gpuHybrid.sh b/gpu/gpuHybrid.sh index d3c05a0..0826eb0 100755 --- a/gpu/gpuHybrid.sh +++ b/gpu/gpuHybrid.sh @@ -3,3 +3,4 @@ # Sets on nvidia at startup cp "$HOME/.xinitrci3bcknvidia" "$HOME/.xinitrci3" sudo optimus-manager --set-startup hybrid + |