From 4679a048733d7476c42bd1f4760fa9df10c61fd7 Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Tue, 7 Jun 2022 14:15:40 -0500 Subject: [PATCH] fixed stickyctl stuff --- fonts/fontconfig/fonts.conf | 13 ++++++++++++- herbstluftwm/autostart | 8 ++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/fonts/fontconfig/fonts.conf b/fonts/fontconfig/fonts.conf index 04c596c..fb9eac2 100644 --- a/fonts/fontconfig/fonts.conf +++ b/fonts/fontconfig/fonts.conf @@ -18,7 +18,18 @@ Helvetica DejaVu Sans - Unifont + + + + Times + + DejaVu Serif + + + + Georgia + + DejaVu Serif diff --git a/herbstluftwm/autostart b/herbstluftwm/autostart index d11bcf1..1c0658a 100755 --- a/herbstluftwm/autostart +++ b/herbstluftwm/autostart @@ -8,7 +8,7 @@ hc() { } # don't need sticky win on pinebook -if [ "$HOSTNAME" != "ellison"]; then +if [ "$HOSTNAME" != "ellison" ]; then hc new_attr string my_sticky refresh_panel="pgrep -f 'bash.*panel\.sh' | xargs -n1 kill -s USR1" fi @@ -106,8 +106,8 @@ if [ "$HOSTNAME" != "ellison" ]; then hc keybind $Mod-Shift-Up shift up hc keybind $Mod-Shift-Right shift right - hc keybind $Mod-j spawn ~/skynet-old/bin/stickyctl stick - hc keybind $Mod-Shift-j spawn ~/skynet-old/bin/stickyctl unstick + hc keybind $Mod-j spawn ~/skynet/bin/stickyctl stick + hc keybind $Mod-Shift-j spawn ~/skynet/bin/stickyctl unstick # tags tag_names=( {1..9} 0 ) @@ -118,7 +118,7 @@ if [ "$HOSTNAME" != "ellison" ]; then hc add "${tag_names[$i]}" key="${tag_keys[$i]}" if ! [ -z "$key" ] ; then - hc keybind "$Mod-$key" chain , lock , use_index "$i" , spawn ~/skynet-old/bin/stickyctl get-sticky , unlock + hc keybind "$Mod-$key" chain , lock , use_index "$i" , spawn ~/skynet/bin/stickyctl get-sticky , unlock hc keybind "$Mod-Shift-$key" move_index "$i" fi done