Added path for wm_scripts.
This commit is contained in:
parent
a664d4742c
commit
a66080a173
10
.bashrc
10
.bashrc
@ -19,13 +19,13 @@ export VISUAL=nvim
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
|
||||
# android SDK
|
||||
export ANDROID_SDK_ROOT=/home/sheldonmlee/Library/Android
|
||||
export PATH="$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$PATH"
|
||||
export PATH="$ANDROID_SDK_ROOT/platform-tools/:$PATH"
|
||||
#export ANDROID_SDK_ROOT=/home/sheldonmlee/Library/Android
|
||||
#export PATH="$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$PATH"
|
||||
#export PATH="$ANDROID_SDK_ROOT/platform-tools:$PATH"
|
||||
|
||||
# custom scripts and programs
|
||||
export PATH="~/.local/bin:$PATH"
|
||||
export PATH="~/.config/wm_scripts/bin:$PATH"
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
export PATH="$HOME/.config/wm_scripts/bin:$PATH"
|
||||
|
||||
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
|
||||
|
||||
|
2
.config/wm_scripts/bin/baraction.sh
Executable file
2
.config/wm_scripts/bin/baraction.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
slstatus -s
|
15
.config/wm_scripts/bin/passrofi
Executable file
15
.config/wm_scripts/bin/passrofi
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
shopt -s nullglob globstar
|
||||
|
||||
dmenu="rofi"
|
||||
prefix=${PASSWORD_STORE_DIR-~/.password-store}
|
||||
password_files=( "$prefix"/**/*.gpg )
|
||||
password_files=( "${password_files[@]#"$prefix"/}" )
|
||||
password_files=( "${password_files[@]%.gpg}" )
|
||||
|
||||
password=$(printf '%s\n' "${password_files[@]}" | "$dmenu" -dmenu "$@")
|
||||
|
||||
[[ -n $password ]] || exit
|
||||
|
||||
pass show -c "$password" 2>/dev/null
|
2
.config/wm_scripts/bin/setwallpaper.sh
Executable file
2
.config/wm_scripts/bin/setwallpaper.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
feh --bg-fill $HOME/wallpaper/wallpaper
|
Loading…
Reference in New Issue
Block a user