summaryrefslogtreecommitdiff
path: root/share/hackvr/examples/filebrowser/backend-filebrowser.sh
blob: 789b60153f36d8906a68676f38a9030970bfb46c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
#give a list of files.
#wait for a selection on stdin
#cd or start that file
#repeat.
while true;do
#not sure why this needs to be printed to show up every time.
  echo ..
  find . -maxdepth 1 #| tr ' ' '\n' #wut? no?
  read -r selection
  if [ -f "$selection" ];then
    xdg-open "$selection" #good enough?
  fi
  if [ -d "$selection" ];then
    cd "$selection"
  fi
  echo
done