Compare commits

..

No commits in common. "7630ee5878d1a5432e57eb6886a9acc8287815a5" and "d8c195394751dfe21c2414dd2f1866bc398d2681" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View File

@ -65,7 +65,6 @@
# Files containing current and max brightness values
my $cur_file = "/sys/class/backlight/intel_backlight/brightness";
chmod('0644',$cur_file) unless ( -w $cur_file );
my $max_file = "/sys/class/backlight/intel_backlight/max_brightness";
my $cur_log = $ENV{HOME}."/.spool/blc.current";
my $last_log = $ENV{HOME}."/.spool/blc.last";
@ -126,12 +125,9 @@ sub logger
sub writef
{
my $target = shift;
if (open(my $fh,'>',$cur_file)) {
print $fh $target;
close($fh);
} else {
print "Failed to write to $cur_file: $!\n";
}
open(my $fh,'>',$cur_file);
print $fh $target;
close($fh);
}
sub increment

View File

@ -6,4 +6,4 @@ cd ${HOME}/.private-scripts/snippets
HEIGHT=$(swaymsg -t get_outputs | tr '\n' ' ' | sed -e 's/ */ /g' | sed -e 's/\(.*"focused": [a-z]*\),/\1\n/' | less | grep '"focused": true' | sed -e 's/.*"rect": {[^}]*"height": \([0-9]*\).*/\1/')
cat $(find ./ -type f | sed -E 's/\.\///' | ${HOME}/.local/bin/tofi --prompt-text 'Snippets: ' --height $HEIGHT --config ${HOME}/.dotfiles/tofi/sidebar.toml) | wl-copy -p
cat $(find ./ -type f | sed -E 's/\.\///' | tofi --prompt-text 'Snippets: ' --height $HEIGHT --config ${HOME}/.dotfiles/tofi/sidebar.toml) | wl-copy -p