diff --git a/dotfiles/.config/dunst/dunstrc b/dotfiles/.config/dunst/dunstrc index 1ca8dde..2ec002e 100644 --- a/dotfiles/.config/dunst/dunstrc +++ b/dotfiles/.config/dunst/dunstrc @@ -140,7 +140,8 @@ # # It's important to note that markup inside the format option will be parsed # regardless of what this is set to. - markup = full + markup = no + #markup = full # The format of the message. Possible variables are: # %a appname @@ -201,7 +202,7 @@ max_icon_size = 32 # Paths to default icons. - icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + icon_path = /usr/share/icons/hicolor/64x64/apps/ ### History ### @@ -218,7 +219,7 @@ dmenu = /usr/bin/dmenu -p dunst: # Browser for opening urls in context menu. - browser = /usr/bin/firefox -new-tab + browser = /usr/bin/librewolf --new-tab # Always run rule-defined scripts, even if the notification is suppressed always_run_script = true diff --git a/dotfiles/.local/bin/foxitLight b/dotfiles/.local/bin/foxitLight index 484901c..ee5dcc4 100755 --- a/dotfiles/.local/bin/foxitLight +++ b/dotfiles/.local/bin/foxitLight @@ -1 +1,3 @@ +#!/bin/sh + GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader diff --git a/dotfiles/.local/bin/startdwm b/dotfiles/.local/bin/startdwm index 814eb66..929f190 100755 --- a/dotfiles/.local/bin/startdwm +++ b/dotfiles/.local/bin/startdwm @@ -1,8 +1,8 @@ #!/bin/sh -dbus-update-activation-environment --all +# dbus-update-activation-environment --all -export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus" +# export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus" while true; do dwm diff --git a/dotfiles/.xinitrc b/dotfiles/.xinitrc new file mode 100644 index 0000000..90f4029 --- /dev/null +++ b/dotfiles/.xinitrc @@ -0,0 +1,11 @@ +#!/bin/sh + +if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile" ]; then + source "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile" +else + source "$HOME/.xprofile" +fi + +while true; do + dwm +done diff --git a/dotfiles/.xprofile b/dotfiles/.xprofile index 982d181..1d66381 100644 --- a/dotfiles/.xprofile +++ b/dotfiles/.xprofile @@ -31,6 +31,7 @@ else fi dbus-update-activation-environment --systemd DISPLAY +# dbus-update-activation-environment --all eval $(gnome-keyring-daemon --start) export SSH_AUTH_SOCK diff --git a/dotfiles/other/etc/systemd/system/disable-wifi.service b/dotfiles/other/etc/systemd/system/disable-wifi.service new file mode 100644 index 0000000..d63fbef --- /dev/null +++ b/dotfiles/other/etc/systemd/system/disable-wifi.service @@ -0,0 +1,11 @@ +[Unit] +Description=Disable WiFi with rfkill + +[Service] +Type=oneshot +ExecStart=/usr/bin/rfkill block wifi +ExecStop= +RemainAfterExit=yes + +[Install] +WantedBy=multi-user.target diff --git a/dotfiles/other/etc/systemd/system/powertop.service b/dotfiles/other/etc/systemd/system/powertop.service new file mode 100644 index 0000000..b312eb1 --- /dev/null +++ b/dotfiles/other/etc/systemd/system/powertop.service @@ -0,0 +1,10 @@ +[Unit] +Description=Powertop tunings + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/usr/bin/powertop --auto-tune + +[Install] +WantedBy=multi-user.target diff --git a/dotfiles/other/etc/systemd/system/sddm.timer b/dotfiles/other/etc/systemd/system/sddm.timer new file mode 100644 index 0000000..9edd11a --- /dev/null +++ b/dotfiles/other/etc/systemd/system/sddm.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Start sddm service at a fixed time after boot + +[Timer] +OnStartupSec=10 +Unit=sddm.service + +[Install] +WantedBy=multi-user.target