DWL updates
* Added support for displaying unoccupied tags * DWL log file writing * Added support for locking screan after 10 min idle
This commit is contained in:
parent
a9df8abf10
commit
6de1ddf4a8
@ -52,6 +52,11 @@ done
|
||||
# ----------------------------------------------------------
|
||||
swaybg --mode fill --image ~/.config/wallpaper.jpg &
|
||||
|
||||
# ----------------------------------------------------------
|
||||
# Lock when idle
|
||||
# ----------------------------------------------------------
|
||||
swayidle -w timeout 600 swaylock &
|
||||
|
||||
# ----------------------------------------------------------
|
||||
# Redirect STDIN to STDOUT and pass along to tags script
|
||||
# ----------------------------------------------------------
|
||||
|
@ -4,6 +4,7 @@ echo $XDG_RUNTIME_DIR used for Wayland session
|
||||
export WLR_LIBINPUT_NO_DEVICES=1
|
||||
# export DWLTAGS_SHOW_MON=1
|
||||
export PATH=~/bin:$PATH
|
||||
# export DWL_LOG_VERBOSE=1
|
||||
|
||||
echo "Session: in $XDG_RUNTIME_DIR" >> $DWL_LOG_FILE
|
||||
env
|
||||
|
44
dwltags.pl
44
dwltags.pl
@ -9,6 +9,9 @@ use Getopt::Long;
|
||||
|
||||
my $info = {};
|
||||
my $tags_file = $ENV{'DWL_TAGS_FILE'};
|
||||
my $dwl_log_h = FileHandle->new(">> " . $ENV{'DWL_LOG_FILE'});
|
||||
die "Could not open $ENV{'DWL_LOG_FILE'} to append" unless (defined $dwl_log_h);
|
||||
$dwl_log_h->autoflush();
|
||||
|
||||
my @mons = map { /^([\w-]+)/; $1 } grep { /^([\w-]+)/ } `wlr-randr`;
|
||||
|
||||
@ -18,18 +21,22 @@ GetOptions("file=s" => \$tags_file)
|
||||
# Color scheme is only used in ANSI mode
|
||||
# <class>_f/_g: class is used in JSON mode to be used in style.css for styling
|
||||
my $colorscheme = {
|
||||
'norm_f' => '#ffffff',
|
||||
'norm_b' => '#111111',
|
||||
'sel_f' => '#ffffff',
|
||||
'sel_b' => '#aa4444',
|
||||
'occ_f' => '#ffffff',
|
||||
'occ_b' => '#111111',
|
||||
'occsel_f' => '#ffffff',
|
||||
'occsel_b' => '#aa4444',
|
||||
'unocc_f' => '#ffffff',
|
||||
'unocc_b' => '#888888',
|
||||
'unoccsel_f' => '#ffffff',
|
||||
'unoccsel_b' => '#aa8888',
|
||||
'mon_f' => '#000000',
|
||||
'mon_b' => '#777777',
|
||||
'lay_f' => '#111111',
|
||||
'lay_b' => '#77aaaa',
|
||||
'title_f' => '#ffcccc',
|
||||
'title_b' => '#111111'
|
||||
# 'norm_f' => 'white',
|
||||
# 'norm_b' => 'black',
|
||||
# 'occ_f' => 'white',
|
||||
# 'occ_b' => 'black',
|
||||
# 'sel_f' => 'black',
|
||||
# 'sel_b' => 'red',
|
||||
# 'mon_f' => 'black',
|
||||
@ -46,7 +53,7 @@ for my $mon (@mons) {
|
||||
print_tags({
|
||||
'selmon' => '1',
|
||||
'mon' => $mon,
|
||||
'tags' => '1 1',
|
||||
'tags' => '0 1',
|
||||
'title' => '',
|
||||
'layout' => '[]='
|
||||
}, $tags_file . "." . $mon);
|
||||
@ -56,7 +63,9 @@ while (<>) {
|
||||
my $line = $_;
|
||||
chomp $line;
|
||||
|
||||
# print_log("DWLTAGS [VV] : $line");
|
||||
if (exists $ENV{'DWL_LOG_VERBOSE'}) {
|
||||
print_log("DWLTAGS [VV] : $line");
|
||||
}
|
||||
|
||||
if (my ($mon, $key, $val) = $line =~ /^(\S+)\s+(\S+)\s(.*)$/) {
|
||||
$info->{$key} = $val;
|
||||
@ -82,14 +91,15 @@ sub print_tags {
|
||||
if (my ($tuse, $tsel) = $info->{'tags'} =~ /(\d+)\s+(\d+)/) {
|
||||
my $tags = "";
|
||||
|
||||
for (my $i = 0; $i < $numtags; $i++) {
|
||||
my $sel = "norm";
|
||||
for (my $i = 0; $i < ($numtags-1); $i++) {
|
||||
my $sel = "unocc";
|
||||
if (($tuse & (1 << $i))) {
|
||||
if ($tsel & (1 << $i)) {
|
||||
$sel = "sel";
|
||||
}
|
||||
$tags .= getformatted($sel, " ". ($i+1) . " ");
|
||||
$sel = "occ";
|
||||
}
|
||||
if ($tsel & (1 << $i)) {
|
||||
$sel .= "sel";
|
||||
}
|
||||
$tags .= getformatted($sel, " ". ($i+1) . " ");
|
||||
}
|
||||
|
||||
if (exists $ENV{'DWLTAGS_SHOW_MON'}) {
|
||||
@ -137,9 +147,7 @@ sub dzen_colored {
|
||||
|
||||
sub print_log {
|
||||
my ($line) = @_;
|
||||
my $fh = FileHandle->new(">> " . $ENV{'DWL_LOG_FILE'});
|
||||
if (defined $fh) {
|
||||
print $fh $line . "\n";
|
||||
$fh->close;
|
||||
if (defined $dwl_log_h) {
|
||||
print $dwl_log_h $line . "\n";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user