├── 256-colors ├── 8-colors ├── LICENSE ├── PSone ├── adbcheck ├── adbpower ├── add ├── addscripts ├── announcetime ├── autostart ├── bar ├── barsleep ├── barwake ├── batalarm ├── batback ├── batbar ├── batt ├── betterlockscreen ├── bgclock ├── bri ├── broadcast ├── caps ├── car ├── carrecent ├── ccar ├── chrd ├── clipwords ├── clock ├── cmdsp ├── colr ├── compress_pdf ├── cpcar ├── cputemp ├── cpuused-notify ├── deadd-center ├── desk ├── deskdown ├── deskno ├── deskup ├── dim ├── dimlock ├── dirsize ├── diskey ├── diskspace ├── doc ├── domcol ├── dots ├── downopen ├── droplatest ├── dsec ├── dwmbar ├── endsess ├── fanspeed ├── faster ├── fetchgithub ├── filesize ├── fixdolphin ├── forcedim ├── gender ├── generic ├── genpass ├── hexcolortoner ├── img ├── imgclock ├── initc ├── initcpp ├── initjava ├── initscript ├── invertscreen ├── ipa ├── ipaddr ├── isimage ├── javacar ├── junit ├── keyboardhook ├── lock ├── lord ├── lord.c ├── manpdf ├── mc ├── mc-config ├── mdown ├── memer ├── memused ├── memused-notify ├── micforce ├── micvol ├── music-meta-notify ├── music-monitor ├── neofetch-notify ├── netadn ├── netspeed ├── notification-status ├── now-playing ├── openlatest ├── pass ├── pctl ├── pipicom ├── pkgadd ├── pkgdel ├── pkglist ├── pkgsync ├── plasmabar ├── pmenu ├── pycar ├── reinstall-droidcam ├── removeansi ├── removelf ├── restart ├── restartdwm ├── restartkde ├── rm-ansi-code ├── rofi-run ├── scripts ├── search ├── sec ├── servehost ├── setrate ├── setres ├── show-ls-colorcode ├── sine ├── sites ├── snip ├── splatmoji ├── spot ├── sshinit ├── startdwm ├── strobe ├── svbt ├── svim ├── templ ├── timer ├── tmwidth ├── toggletouch ├── trim ├── ubg ├── unfuckpacman ├── unlock ├── updatepkglist ├── vbar ├── videocheck ├── virtcam.md ├── vol ├── voli ├── walc ├── weather ├── webcam ├── win ├── wlc ├── wotd ├── yt └── ythumb /256-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/256-colors -------------------------------------------------------------------------------- /8-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/8-colors -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /PSone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/PSone -------------------------------------------------------------------------------- /adbcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/adbcheck -------------------------------------------------------------------------------- /adbpower: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell input keyevent 26 4 | -------------------------------------------------------------------------------- /add: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | paste -s -d '+' "$@" | bc 4 | -------------------------------------------------------------------------------- /addscripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/addscripts -------------------------------------------------------------------------------- /announcetime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/announcetime -------------------------------------------------------------------------------- /autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/autostart -------------------------------------------------------------------------------- /bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/bar -------------------------------------------------------------------------------- /barsleep: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sleep 1s 3 | -------------------------------------------------------------------------------- /barwake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | killall barsleep 3 | -------------------------------------------------------------------------------- /batalarm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/batalarm -------------------------------------------------------------------------------- /batback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/batback -------------------------------------------------------------------------------- /batbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/batbar -------------------------------------------------------------------------------- /batt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/batt -------------------------------------------------------------------------------- /betterlockscreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/betterlockscreen -------------------------------------------------------------------------------- /bgclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/bgclock -------------------------------------------------------------------------------- /bri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/bri -------------------------------------------------------------------------------- /broadcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/broadcast -------------------------------------------------------------------------------- /caps: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | setxkbmap -option caps:escape 3 | 4 | -------------------------------------------------------------------------------- /car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/car -------------------------------------------------------------------------------- /carrecent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/carrecent -------------------------------------------------------------------------------- /ccar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/ccar -------------------------------------------------------------------------------- /chrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/chrd -------------------------------------------------------------------------------- /clipwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/clipwords -------------------------------------------------------------------------------- /clock: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | date '+%a %b %d %R' 3 | -------------------------------------------------------------------------------- /cmdsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/cmdsp -------------------------------------------------------------------------------- /colr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/colr -------------------------------------------------------------------------------- /compress_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/compress_pdf -------------------------------------------------------------------------------- /cpcar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/cpcar -------------------------------------------------------------------------------- /cputemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/cputemp -------------------------------------------------------------------------------- /cpuused-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/cpuused-notify -------------------------------------------------------------------------------- /deadd-center: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | kill -s USR1 "$(pidof deadd-notification-center)" 3 | -------------------------------------------------------------------------------- /desk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/desk -------------------------------------------------------------------------------- /deskdown: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | wmctrl -s $(( $(~/scripts/deskno) - 1 )) 4 | -------------------------------------------------------------------------------- /deskno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/deskno -------------------------------------------------------------------------------- /deskup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | wmctrl -s $(( $(~/scripts/deskno) +1 )) 4 | -------------------------------------------------------------------------------- /dim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dim -------------------------------------------------------------------------------- /dimlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dimlock -------------------------------------------------------------------------------- /dirsize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dirsize -------------------------------------------------------------------------------- /diskey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/diskey -------------------------------------------------------------------------------- /diskspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/diskspace -------------------------------------------------------------------------------- /doc: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd "$HOME/docs/$1" || return 1 3 | -------------------------------------------------------------------------------- /domcol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/domcol -------------------------------------------------------------------------------- /dots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dots -------------------------------------------------------------------------------- /downopen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/downopen -------------------------------------------------------------------------------- /droplatest: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | dragon-drop "$(ls -t | head -n1)" 4 | -------------------------------------------------------------------------------- /dsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dsec -------------------------------------------------------------------------------- /dwmbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/dwmbar -------------------------------------------------------------------------------- /endsess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/endsess -------------------------------------------------------------------------------- /fanspeed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/fanspeed -------------------------------------------------------------------------------- /faster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/faster -------------------------------------------------------------------------------- /fetchgithub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/fetchgithub -------------------------------------------------------------------------------- /filesize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/filesize -------------------------------------------------------------------------------- /fixdolphin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | XDG_MENU_PREFIX=plasma- kbuildsycoca6 3 | -------------------------------------------------------------------------------- /forcedim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/forcedim -------------------------------------------------------------------------------- /gender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayan01/scripts/HEAD/gender -------------------------------------------------------------------------------- /generic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | -------------------------------------------------------------------------------- /genpass: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | tr -dc 'A-Za-z0-9!@#$%^&*()_+{}:"<>'