updates, dunst stuff
This commit is contained in:
parent
6c2b8f492a
commit
2ac854a7ea
@ -1,49 +1,17 @@
|
||||
[global]
|
||||
font = "CozetteVector"
|
||||
allow_markup = yes
|
||||
format = "<b>%s</b>\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"
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
[Settings]
|
||||
gtk-application-prefer-dark-theme=1
|
||||
gtk-cursor-theme-name=Oxygen 19 Pink Blossom
|
||||
gtk-key-theme-name=Emacs
|
||||
|
||||
|
19
scripts/hostapd.sh
Executable file
19
scripts/hostapd.sh
Executable file
@ -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
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user