From 20deaf64bd3638779135280454f3da17cdb66c52 Mon Sep 17 00:00:00 2001 From: kd Date: Sun, 24 May 2020 16:47:15 -0400 Subject: added fedora configs --- wal/.config/wal/templates/dunstrc | 75 +++++++++++++++++++++++++++++++++++++++ wal/.config/wal/update_bspwm.sh | 10 ++++++ wal/.config/wal/update_dunst.sh | 8 +++++ 3 files changed, 93 insertions(+) create mode 100644 wal/.config/wal/templates/dunstrc create mode 100755 wal/.config/wal/update_bspwm.sh create mode 100755 wal/.config/wal/update_dunst.sh (limited to 'wal') diff --git a/wal/.config/wal/templates/dunstrc b/wal/.config/wal/templates/dunstrc new file mode 100644 index 0000000..d35e6f1 --- /dev/null +++ b/wal/.config/wal/templates/dunstrc @@ -0,0 +1,75 @@ +# New Start: A modern Arch workflow built with an emphasis on functionality. +# Copyright (C) 2018 Donovan Glover + +# NOTE: This file is automatically generated by pywal. Do not edit it by hand. + +[global] + monitor = 0 + follow = keyboard + indicate_hidden = yes + shrink = yes + transparency = 20 + notification_height = 0 + separator_height = 2 + # Make the width 3740 (3840 - 100), have 50 left margin and 95 above + geometry = "350x5-30+30" + + # Show multiple notifications in the same box + separator_height = 0 + + # Add vertical padding to the inside of the notification + padding = 5 + + # Add horizontal padding for when the text gets long enough + horizontal_padding = 12 + + # The frame color and width of the notification + frame_color = "{color4}" + frame_width = 3 + + # How long a user needs to be idle for sticky notifications + idle_threshold = 120 + + # Font and typography settings + font = Fira Mono 11 + alignment = center + word_wrap = yes + + # Format for how notifications will be displayed + # Usage: `notify-send 'Title' 'Summary'` + format = "%s\n%b" + + # Allow some HTML tags like and in notifications + markup = full + alignment = left + show_age_threshold = 60 + ellipsize = middle + ignore_newline = no + stack_duplicates = yes + hide_duplicate_count = yes + show_indicators = yes + icon_position = left + max_icon_size = 40 + sticky_history = yes + history_length = 20 + +# These are the keybindings used to control dunst notifications +[shortcuts] + close = ctrl+space + close_all = ctrl+shift+space + history = ctrl+grave + +# Set the background and foreground (text) color for all notifications +[urgency_low] + background = "{background}" + foreground = "{foreground}" + +[urgency_normal] + background = "{background}" + foreground = "{foreground}" + +[urgency_critical] + background = "{background}" + foreground = "{foreground}" + +# vim:ft=cfg diff --git a/wal/.config/wal/update_bspwm.sh b/wal/.config/wal/update_bspwm.sh new file mode 100755 index 0000000..4f598ef --- /dev/null +++ b/wal/.config/wal/update_bspwm.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# Source the colors from wal +source ~/.cache/wal/colors.sh + +# Set the border colors +bspc config normal_border_color "$color8" +bspc config active_border_color "$color7" +bspc config focused_border_color "$color7" +bspc config presel_feedback_color "$color7" diff --git a/wal/.config/wal/update_dunst.sh b/wal/.config/wal/update_dunst.sh new file mode 100755 index 0000000..249d388 --- /dev/null +++ b/wal/.config/wal/update_dunst.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +# Symlink dunst config +ln -sf ~/.cache/wal/dunstrc ~/.config/dunst/dunstrc + +# Restart dunst with the new color scheme +pkill dunst +dunst & -- cgit v1.2.3