Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion device
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
CONFIG_FILE=".device.config"

if [ -f "$CONFIG_FILE" ]; then
Expand Down
2 changes: 1 addition & 1 deletion display
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
declare INTEL_FILE="/usr/share/X11/xorg.conf.d/20-intel.conf"
declare XORG_FILE="/usr/share/X11/xorg.conf.d/01-dummy-monitor.conf"

Expand Down
2 changes: 1 addition & 1 deletion droid
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DOC=""

DOC+="
Expand Down
2 changes: 1 addition & 1 deletion input
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
CONFIG_FILE=".input.config"

KEY_X=53
Expand Down
2 changes: 1 addition & 1 deletion keyboard
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
. ./.keycodes

keycode() {
Expand Down
2 changes: 1 addition & 1 deletion main
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

main() {
case $1 in
Expand Down
2 changes: 1 addition & 1 deletion monitor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# setup wanted display and network adapter
display=1
network=wlp9s0
Expand Down
2 changes: 1 addition & 1 deletion terminal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
ALIAS_FILE=~/.term_sharedAliases

main() {
Expand Down
2 changes: 1 addition & 1 deletion vnc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

main() {
case $1 in
Expand Down