diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/qutebrowser/config.py | 2 | ||||
| -rw-r--r-- | config/xmonad/xmonad.hs | 2 | ||||
| -rw-r--r-- | config/zsh/aliases.zsh | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 783c932..8f1784b 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -77,7 +77,7 @@ c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark t # c.content.proxy = 'socks://localhost:9050/' # tor c.content.autoplay = False -c.content.notifications = False +c.content.notifications.enabled = False # c.content.cookies.accept = 'no-3rdparty' c.content.headers.user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version}" diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index 2d3a979..c25af11 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -61,7 +61,7 @@ keys' = [ ("<XF86AudioLowerVolume>", spawn "pulseaudio-ctl down") , ("M-i", spawn "st -e zsh -c 'source ~/.config/zsh/.zshrc && rc'") , ("M-m", spawn "st -e mocp -C /home/cacharle/.config/moc/config") , ("M-S-d", spawn "notify-send -i x-office-calendar \"$(date +\"%H:%M %A %d/%m/%Y %B\")\"") - , ("M-S-b", spawn "notify-send \"battery: $(cat /sys/class/power_supply/BAT0/capacity)\"") + , ("M-S-b", spawn "notify-send --hint=int:transient:1 --hint=int:value:\"$(cat /sys/class/power_supply/BAT0/capacity)\" \"Battery\"") , ("M-q", spawn "notify-send 'Restarting xmonad'" >> spawn restartCmd) , ("M-S-q", confirm "Are you sure you want to shutdown?" $ io (exitWith ExitSuccess)) ] diff --git a/config/zsh/aliases.zsh b/config/zsh/aliases.zsh index 2878007..da86921 100644 --- a/config/zsh/aliases.zsh +++ b/config/zsh/aliases.zsh @@ -148,3 +148,5 @@ rc() { } vf() { f="$(fzf || exit 1)" && "$EDITOR" "$f" ; } + +alias zathura='zathura --fork' |
