diff options
author | clarkzjw <[email protected]> | 2022-11-17 10:56:25 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2022-11-17 10:56:25 -0800 |
commit | d2d735742ca61b211c9b48a2209d36395daebcf4 (patch) | |
tree | bda27729a1bbac3ab354a1f10d4885899cdbf967 /dot_config/i3/scripts/executable_ppd-status | |
parent | a6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff) | |
download | dotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz |
+ add existing config
Diffstat (limited to 'dot_config/i3/scripts/executable_ppd-status')
-rw-r--r-- | dot_config/i3/scripts/executable_ppd-status | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dot_config/i3/scripts/executable_ppd-status b/dot_config/i3/scripts/executable_ppd-status new file mode 100644 index 0000000..8e6eb7b --- /dev/null +++ b/dot_config/i3/scripts/executable_ppd-status | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | # | ||
3 | # power-profiles-daemon implementation: | ||
4 | # needs package power-profiles-daemon installed and the service running see here: | ||
5 | # https://wiki.archlinux.org/title/CPU_frequency_scaling#power-profiles-daemon | ||
6 | # used in i3-blocks: ~/.config/i3/i3blocks.conf together with: ~/.config/i3/scripts/power-profiles | ||
7 | |||
8 | # script to show current power profile | ||
9 | |||
10 | current_profile=$(/usr/bin/powerprofilesctl get) | ||
11 | echo "$current_profile" | ||