summaryrefslogtreecommitdiff
path: root/.config/login.d/02_xdg_runtime_dir.sh
AgeCommit message (Collapse)Author
2015-12-10XDG_RUNTIME_DIR: "Recent" Linux kernels support flock over NFS.purdue-cs/masterLuke Shumaker
And Purdue seems to have enabled that.
2015-12-06minor fixes to the XDG_RUNTIME_DIR implementationLuke Shumaker
2015-09-22.config/login.d/02_xdg_runtime_dir.sh only runs on login, no need for a checkLuke Shumaker
In fact, the check broke the Purdue CS boxes because it was being run under the Xsession program, which is not a login shell.
2015-07-19fix XDG_RUNTIME_DIR managementLuke Shumaker
2015-04-20Be careful about shebangs, which shells are used, and what gets executedLuke Shumaker
Use - #!/hint/bash for bash that gets sourced (non-executable) - #!/hint/sh for sh(1) that gets sourced (non-executable) - #!/bin/sh for sh(1) that gets executed - #!/usr/bin/env bash for bash that gets executed To this end, also - Clean up a couple of related comments - Fix a couple of bash-isms that I noticed in sh(1) files - Fix permissions on a couple of files that get sourced
2015-04-13clean up XDG_RUNTIME_DIR handlingLuke Shumaker