power menu, redshift, polybar
This commit is contained in:
16
.config/polybar/scripts/info-trash/README.md
Normal file
16
.config/polybar/scripts/info-trash/README.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Script: info-trash
|
||||
|
||||
This script count the files in you trash directory.
|
||||
|
||||

|
||||
|
||||
|
||||
## Module
|
||||
|
||||
```ini
|
||||
[module/info-trash]
|
||||
type = custom/script
|
||||
exec = ~/polybar-scripts/info-trash.sh
|
||||
interval = 60
|
||||
click-left = ~/polybar-scripts/info-trash.sh --clean &
|
||||
```
|
||||
13
.config/polybar/scripts/info-trash/info-trash.sh
Normal file
13
.config/polybar/scripts/info-trash/info-trash.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$1" in
|
||||
--clean)
|
||||
rm -rf ~/.local/share/Trash/files
|
||||
rm -rf ~/.local/share/Trash/info
|
||||
mkdir ~/.local/share/Trash/files
|
||||
mkdir ~/.local/share/Trash/info
|
||||
;;
|
||||
*)
|
||||
find ~/.local/share/Trash/files/ -maxdepth 1 | wc -l
|
||||
;;
|
||||
esac
|
||||
BIN
.config/polybar/scripts/info-trash/screenshots/1.png
Normal file
BIN
.config/polybar/scripts/info-trash/screenshots/1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 540 B |
Reference in New Issue
Block a user