diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 1351da4..cc8a21f 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -1,49 +1,17 @@ [global] - font = "CozetteVector" - allow_markup = yes - format = "%s\n%b" - sort = yes - indicate_hidden = yes - alignment = center - show_age_threshold = 60 - word_wrap = yes - ignore_newline = no - geometry = "200x5-6+30" - idle_threshold = 120 - monitor = 0 - follow = mouse - sticky_history = yes - line_height = 0 - separator_height = 2 - padding = 8 - horizontal_padding = 8 - separator_color = "#689d6a" - startup_notification = false - # https://github.com/knopwob/dunst/issues/26#issuecomment-36159395 - #icon_position = left - #icon_folders = /usr/share/icons/elementary/actions/16/ - -[frame] - width = 1 - color = "#689d6a" - -[shortcuts] - close = ctrl+space - close_all = ctrl+shift+space - history = ctrl+grave - context = ctrl+shift+period +frame_color = "#89b4fa" +separator_color= frame [urgency_low] - background = "#fbf1c7" - foreground = "#3c3836" - timeout = 5 +background = "#1e1e2e" +foreground = "#cdd6f4" [urgency_normal] - background = "#fbf1c7" - foreground = "#3c3836" - timeout = 20 +background = "#1e1e2e" +foreground = "#cdd6f4" [urgency_critical] - background = "#9d0006" - foreground = "#fbf1c7" - timeout = 0 +background = "#1e1e2e" +foreground = "#cdd6f4" +frame_color = "#fab387" + diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini index 3651e16..5733e58 100644 --- a/.config/gtk-3.0/settings.ini +++ b/.config/gtk-3.0/settings.ini @@ -1,4 +1,5 @@ [Settings] +gtk-application-prefer-dark-theme=1 gtk-cursor-theme-name=Oxygen 19 Pink Blossom gtk-key-theme-name=Emacs diff --git a/scripts/hostapd.sh b/scripts/hostapd.sh new file mode 100755 index 0000000..ddfadfb --- /dev/null +++ b/scripts/hostapd.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +interface="wlp1s0" + +if [ "$1" = "stop" ]; then + sudo systemctl stop hostapd + sudo systemctl stop dnsmasq + + sudo systemctl start NetworkManager + + exit 1 +fi + +sudo systemctl stop NetworkManager + +sudo ip addr add 192.168.150.1/24 dev $interface + +sudo systemctl start hostapd +sudo systemctl start dnsmasq diff --git a/scripts/machine-specific-zsh/bocchi.zsh b/scripts/machine-specific-zsh/bocchi.zsh index 9a6e260..5cee13c 100644 --- a/scripts/machine-specific-zsh/bocchi.zsh +++ b/scripts/machine-specific-zsh/bocchi.zsh @@ -1,10 +1,10 @@ -export PATH=$PATH:/home/lizzy/myemacs/28.1/bin -export PATH=$PATH:/home/lizzy/.cargo/bin export PATH=$PATH:/home/lizzy/.local/bin -export PATH=$PATH:/home/lizzy/.roswell/bin -source /etc/profile.d/devkit-env.sh +. /opt/asdf-vm/asdf.sh -alias emacs="emacsclient -nw" - -. "$HOME/.asdf/asdf.sh" +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" +fi +export GPG_TTY=$(tty) +gpg-connect-agent updatestartuptty /bye >/dev/null