diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/Scripts/lc | 48 |
1 files changed, 5 insertions, 43 deletions
diff --git a/scripts/Scripts/lc b/scripts/Scripts/lc index e84d856..8b9fbcd 100755 --- a/scripts/Scripts/lc +++ b/scripts/Scripts/lc @@ -3,7 +3,7 @@ LOGFILE=.lc.log DMENU="rofi -dmenu" -Commands="s suspend screen goto common bwpass remember forever set-keyboard sa-keyboard rotate poweroff lock scrot region overleaf-render caps-lock win wall cups pass sync random" +Commands="s docpdf suspend screen common remember forever set-keyboard rotate poweroff lock scrot region caps-lock wall pass" handle_stuff() { if [ "$1" = "--dmenu" ]; then @@ -16,13 +16,6 @@ handle_stuff() { #xcape -e "Control_R=Escape" # xmodmap .Xmodmap fi - - if [ "$1" = "sa" ] || [ "$1" = "sa-keyboard" ]; then - setxkbmap -layout us -variant colemak_dh_iso - #xcape -e "Control_R=Escape" - # xmodmap .Xmodmap - fi - # POWER COMMANDS if [ "$1" = "suspend" ]; then systemctl suspend @@ -44,27 +37,14 @@ handle_stuff() { xclip -selection clipboard -t image/png -i $imagename fi - if [ "$1" = "overleaf-render" ]; then - st sh ~/Documents/overleafRenderer/compile.sh - fi - if [ "$1" = "caps-lock" ]; then xdotool key Caps_Lock fi - if [ "$1" = "win" ]; then - vboxmanage startvm "Windows xp" - fi - if [ "$1" = "wall" ]; then $HOME/Scripts/setwall -A fi - if [ "$1" = "random" ]; then - stuff=$(python -c "print('\n'.join((str(i) for i in $(rofi -dmenu))))") - echo $stuff | tr " " "\n" | rofi -dmenu - fi - if [ "$1" = "remember" ]; then import $imagename feh $imagename @@ -81,39 +61,21 @@ handle_stuff() { fi # Launch - if [ "$1" = "s" ]; then - $HOME/Scripts/guiworkspace.sh - fi - - if [ "$1" = "cups" ] || [ "$1" = "cups-website" ]; then - firefox "http://localhost:631/" - fi - if [ "$1" = "pass" ]; then bash $HOME/Scripts/passmenu --type fi - if [ "$1" = "bwpass" ]; then - bash $HOME/Scripts/bwmenu --type - fi - if [ "$1" = "common" ]; then python3 Scripts/commondocs.py ~/commondocs.json $(python3 Scripts/commondocs.py ~/commondocs.json | $DMENU) fi - - if [ "$1" = "sync" ]; then - ./Scripts/sync.sh - dunstify "Sync complete" "Sync completed at $(date)" - fi - - if [ "$1" = "goto" ]; then - caja $(./Scripts/goto -d $(cat .bookmarks | awk -F ' ' '{print $1}' | $DMENU)) - fi - if [ "$1" = "screen" ]; then ~/Scripts/screentool fi + if [ "$!" = "docpdf" ]; then + find ~/Documents -iname "*.pdf" -type f | fzf | xargs zathura + fi + # Calc if [ "$(echo $1 | head -c 1)" = "=" ]; then calc="$(echo $1 | cut -c 2-)" |