new stuff

This commit is contained in:
Jacob Janzen 2024-09-26 21:08:50 -05:00
parent 1c714dc335
commit a9ce5f2782
5 changed files with 29 additions and 3 deletions

View file

@ -102,7 +102,8 @@
"$mainMod, S, exec, hyprshot -m window --clipboard-only"
"$mainMod SHIFT, S, exec, hyprshot -m region --clipboard-only"
"$mainMod SHIFT CONTROL, S, exec, hyprshot -m output --clipboard-only"
"$mainMod, M, exit"
"$mainMod, M, exec, ~/.local/bin/poweroptions.sh"
"$mainMod, F, fullscreen"
];
bindel = [
",XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"

View file

@ -15,10 +15,12 @@
home.packages = with pkgs; [
discord # not FOSS
fuzzel
gcc
htop
hyfetch
hyprshot
mpc-cli
mpv
networkmanagerapplet
obs-studio
pavucontrol

View file

@ -31,7 +31,6 @@
};
clock = {
format = "{:%H:%M\t%Y-%m-%d}";
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
};
cpu = {
format = "{usage}% ";

View file

@ -3,6 +3,6 @@
{
services.mako = {
enable = true;
backgroundColor = "#ece0c9ff";
backgroundColor = "#191916ff";
};
}

View file

@ -0,0 +1,24 @@
#+title: Power Options Script
Use =fuzzel= to open a menu to power off, reboot, or log out.
#+begin_src sh :tangle ~/.local/bin/poweroptions.sh :mkdirp yes :tangle-mode o755
#!/bin/sh
getoption () {
fuzzel --dmenu -l 3 -x 1 -r 10 << EOF
󰐥 power off
󰜉 restart
󰍃 logout
EOF
}
option=$(getoption | xargs)
case $option in
'󰐥 power off')
systemctl poweroff;;
'󰜉 restart')
systemctl reboot;;
'󰍃 logout')
hyprctl dispatch exit;;
esac
#+end_src