diff --git a/home/deadd/.config/deadd/deadd.conf b/home/deadd/.config/deadd/deadd.conf index 4cfcf1a..93625a8 100644 --- a/home/deadd/.config/deadd/deadd.conf +++ b/home/deadd/.config/deadd/deadd.conf @@ -222,7 +222,7 @@ labels = "VPN":"Bluetooth":"Wifi":"Screensaver":"RedShift" # center. The commands variable below define the commands that should # be launched when the user clicks on the associated button. There # should be the same number of entries in `commands` and in `labels` -commands = "sudo vpnToggle":"bluetoothToggle":"wifiToggle":"screensaverToggle":"redshiftToggle -O 3000" +commands = "sudo vpnToggle":"bluetoothToggle":"~/.local/scripts/bin/wifiToggle":"screensaverToggle":"redshiftToggle" # Color of the labels of the custom buttons in the notification # center. diff --git a/home/gtk/.config/gtk-2.0/gtkfilechooser.ini b/home/gtk/.config/gtk-2.0/gtkfilechooser.ini index e326c33..d5e9035 100644 --- a/home/gtk/.config/gtk-2.0/gtkfilechooser.ini +++ b/home/gtk/.config/gtk-2.0/gtkfilechooser.ini @@ -2,10 +2,10 @@ LocationMode=filename-entry ShowHidden=false ShowSizeColumn=true -GeometryX=396 -GeometryY=143 -GeometryWidth=1128 -GeometryHeight=811 +GeometryX=535 +GeometryY=71 +GeometryWidth=844 +GeometryHeight=933 SortColumn=modified SortOrder=ascending StartupMode=recent diff --git a/home/gtk/.config/gtk-3.0/bookmarks b/home/gtk/.config/gtk-3.0/bookmarks index 005fb33..2ea165a 100644 --- a/home/gtk/.config/gtk-3.0/bookmarks +++ b/home/gtk/.config/gtk-3.0/bookmarks @@ -1,3 +1,4 @@ +file:///usr/share/icons/Papirus-Dark/96x96 file:///tmp/mozilla_horhik0 file:///home/horhik/code file:///home/horhik/Documents diff --git a/home/qutebrowser/.config/qutebrowser/config.py b/home/qutebrowser/.config/qutebrowser/config.py index 4d9b081..50349ee 100644 --- a/home/qutebrowser/.config/qutebrowser/config.py +++ b/home/qutebrowser/.config/qutebrowser/config.py @@ -295,3 +295,4 @@ c.colors.tabs.selected.even.bg = base02 # Background color for webpages if unset (or empty to use the theme's # color). # c.colors.webpage.bg = base00 +config.load_autoconfig() diff --git a/home/scripts/.local/scripts/bin/dmenu_search b/home/scripts/.local/scripts/bin/dmenu_search new file mode 100755 index 0000000..3d15310 --- /dev/null +++ b/home/scripts/.local/scripts/bin/dmenu_search @@ -0,0 +1,2 @@ +#!/bin/sh +dmenu_path | qutebrowser "https://duckduckgo.com/?q=$(dmenu "$@")" diff --git a/home/scripts/.local/scripts/bin/enable b/home/scripts/.local/scripts/bin/enable new file mode 100755 index 0000000..5c206e4 --- /dev/null +++ b/home/scripts/.local/scripts/bin/enable @@ -0,0 +1,2 @@ +#!/bin/sh +sudo ln -s $HOME/.local/scripts/bin/*Toggle /usr/bin/ diff --git a/home/scripts/.local/scripts/bin/redshiftToggle b/home/scripts/.local/scripts/bin/redshiftToggle new file mode 100755 index 0000000..1619abe --- /dev/null +++ b/home/scripts/.local/scripts/bin/redshiftToggle @@ -0,0 +1,15 @@ +#!/bin/dash + +file=$(cat /tmp/redshift-toggl) +text="off" + +if [ "$file" = "$text" ] +then +killall redshift +redshift -O 3000 +echo "on" > /tmp/redshift-toggl +else +redshift -x +echo "off" > /tmp/redshift-toggl +fi + diff --git a/home/scripts/.local/scripts/bin/wifiToggle b/home/scripts/.local/scripts/bin/wifiToggle new file mode 100755 index 0000000..aa8de30 --- /dev/null +++ b/home/scripts/.local/scripts/bin/wifiToggle @@ -0,0 +1,16 @@ +#!/bin/dash +path=/tmp/redshift-toggl +file=$(cat $path) +text="off" + +if [ "$file" = "$text" ] +then +connmanctl enable wifi +notify-send "wifi is on" +echo "on" > $path +else +connmanctl disable wifi +notify-send "wifi is off" +echo "off" > $path +fi + diff --git a/home/scripts/.local/scripts/patch-notion b/home/scripts/.local/scripts/patch-notion new file mode 100755 index 0000000..4856423 --- /dev/null +++ b/home/scripts/.local/scripts/patch-notion @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "setInterval(() => {document.title = 'Notion'}, 3000)" | sudo tee -a /usr/share/notion-app-nativefier/lib/preload.js diff --git a/home/scripts/.local/scripts/wifiToggle b/home/scripts/.local/scripts/wifiToggle new file mode 100755 index 0000000..0fe0812 --- /dev/null +++ b/home/scripts/.local/scripts/wifiToggle @@ -0,0 +1,14 @@ +#!/bin/dash +path=/tmp/redshift-toggl +file=$(cat $path) +text="off" + +if [ "$file" = "$text" ] +then +connmanctl enable wifi +echo "on" > $path +else +connmanctl disable wifi +echo "off" > $path +fi + diff --git a/home/xmonad/.config/xmobar/bin/a b/home/xmonad/.config/xmobar/bin/a new file mode 100644 index 0000000..56eb4ab --- /dev/null +++ b/home/xmonad/.config/xmobar/bin/a @@ -0,0 +1 @@ +oh no, senpai diff --git a/home/xmonad/.config/xmobar/bin/xmobarstatus b/home/xmonad/.config/xmobar/bin/xmobarstatus index d9adfa1..b0b7316 100755 --- a/home/xmonad/.config/xmobar/bin/xmobarstatus +++ b/home/xmonad/.config/xmobar/bin/xmobarstatus @@ -26,23 +26,22 @@ val=$(acpi | grep -oh "[[:digit:]]*%" | grep -oh "[0-9]*") case $val in [1-9][0-9][0-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; [5-9][0-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; [1-4][0-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; [1-9]) - echo " $val%" - echo "-{ $val%}" + echo "—{ $val%}" ;; 0) echo " " ;; *) - echo "-{ $val%}" + echo "—{ $val%}" ;; esac } @@ -54,53 +53,55 @@ volume () val=$(amixer sget Master | grep 'Left:' | awk -F'[][]' '{ print $2 }'| grep -oh "[0-9]*") case $val in 100) - echo "-{ $val%}" + echo "—{ $val%}" ;; [5-9][0-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; [1-4][0-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; [1-9]) - echo "-{ $val%}" + echo "—{ $val%}" ;; 0) - echo "-{}" + echo "—{}" ;; *) - echo "-{ $val%}" + echo "—{ $val%}" esac } diskspace () { #might be another /dev/sda... - echo "-{ "$(df -h | grep sda2 | grep -oh "[0-9]*%") "}" + echo "—{ "$(df -h | grep sda2 | grep -oh "[0-9]*%")"}" } + wifi () { name=$(connmanctl services | grep "*A" | grep -oh "^*A. [A-Za-z]*" | grep -oh "[[:space:]][A-Za-x]*" | head -n 1) if [ $name != " " ]; then - echo "-{ $name}" + echo "—{ $name}" else echo 睊 off fi } layout () { - echo "-{ "$(xkblayout-state print %s)"}" + echo "—{ "$(xkblayout-state print %s)"}" } timeanddate () { - echo "-{" "$(date +'%T')}" + + echo "—{" "$(date +'%T')}" } calendar () { echo " "$(date +'%d/%m/%Y') } -echo "$(wifi)$(battery)$(volume)$(layout)$(diskspace)$(timeanddate)-{$(calendar)}--" +echo "$(wifi)$(battery)$(volume)$(layout)$(diskspace)$(timeanddate)—{$(calendar)}—-" #echo "                                          " diff --git a/home/xmonad/.config/xmobar/bin/xmobarstatus2 b/home/xmonad/.config/xmobar/bin/xmobarstatus2 new file mode 100755 index 0000000..7df04b7 --- /dev/null +++ b/home/xmonad/.config/xmobar/bin/xmobarstatus2 @@ -0,0 +1,104 @@ +#!/bin/bash + +backgroundColor="#282828" +currentLineColor="#fabd2f" +selectionColor="#665c54" +foregroundColor="#ebdbb2" +foregroundSecondColor="#fbf1c1" +commentColor="#458588" +cyanColor="#83a598" +greenColor="#8ec07c" +greenDarkerColor="#689d6a" +orangeColor="#fe8019" +pinkColor="#d3869b" +purpleColor="#b16286" +redColor="#cc241d" +yellowColor="#fabd2f" + + + + +battery () +{ +val=$(acpi | grep -oh "[[:digit:]]*%" | grep -oh "[0-9]*") + +case $val in + [1—9][0—9][0—9]) + echo "—{ $val%}" + ;; + [5—9][0—9]) + echo "—{ $val%}" + ;; +[1—4][0—9]) + echo "—{ $val%}" + ;; +[1-9]) + echo "—{ $val%}" + ;; +0) + echo " " + ;; +*) + echo "—{ $val%}" + ;; +esac +} + + +volume () +{ + #maybe change to Right, Left, Mono +val=$(amixer sget Master | grep 'Left:' | awk -F'[][]' '{ print $2 }'| grep -oh "[0-9]*") +case $val in + 100) + echo "—{ $val%}" +;; + [5-9][0-9]) + echo "—{ $val%}" + ;; +[1-4][0-9]) + echo "—{ $val%}" + ;; +[1-9]) + echo "—{ $val%}" + ;; +0) + echo "—{0%}" + ;; +*) + echo "—{ $val%}" +esac +} + +diskspace () +{ + #might be another /dev/sda... + echo "—{ "$(df -h | grep sda2 | grep -oh "[0-9]*%")"}" +} + +wifi () +{ + name=$(connmanctl services | grep "*A" | grep -oh "^*A. [A-Za-z]*" | grep -oh "[[:space:]][A-Za-x]*" | head -n 1) +if [ $name != " " ]; + then + echo "—{ $name}" + else + echo 睊 off + fi +} +layout () +{ + echo "—{ "$(xkblayout-state print %s)"}" +} +timeanddate () +{ + echo "—{" "$(date +'%T')}" +} +calendar () +{ + echo " "$(date +'%d/%m/%Y') +} + +echo "$(wifi)$(battery)$(volume)$(layout)$(diskspace)$(timeanddate)—{$(calendar)}——" + +#echo "                                          " diff --git a/home/xmonad/.config/xmobar/config.hs b/home/xmonad/.config/xmobar/config.hs index 413b580..ede81b0 100644 --- a/home/xmonad/.config/xmobar/config.hs +++ b/home/xmonad/.config/xmobar/config.hs @@ -1,10 +1,10 @@ Config { -- appearance - font = "xft:Mononoki-11:bold:antialias=true:hinting=true" + font = "xft:Mononoki Nerd Font-11:bold:antialias=true:hinting=true" , additionalFonts = [ - "xft:Fira Code-10:bold:antialias=true:hinting=True" - , "xft:Mononoki-10:bold:antialias=true:hinting=True" + "xft:EmojiOne:bold:antialias=true:hinting=true" + ,"xft:FontAwesome:bold:antialias=true:hinting=true" ] , bgColor = "#282828" , fgColor = "#ebdbb2" @@ -16,7 +16,8 @@ Config { -- layout , sepChar = "%" -- delineator between plugin names and straight text , alignSep = "][" -- separator between left-right alignment - , template = "--{%StdinReader%}---------------------------------------------------------------------------------------------------------------------------------][{ %coretemp%}-{ %memory% }-{ %dynnetwork% }-{ %battery%}-{ %date% }-{ %kbd% }--" + + , template = "——{%StdinReader%}—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————][%xmobarstatus%" -- general behavior , lowerOnStart = False -- send to bottom of window stack on start @@ -45,6 +46,7 @@ Config { -- weather monitor [ Run Weather "RJTT" [ "--template", " | °C | % | hPa" ] 36000 + , Run Com "xmobarstatus" [] "" 10 -- network activity monitor (dynamic interface resolution) , Run DynNetwork [ "--template" , ": kB/s|kB/s" diff --git a/home/xmonad/.config/xmobar/config_second.hs b/home/xmonad/.config/xmobar/config_second.hs index 276ad20..e205e6f 100644 --- a/home/xmonad/.config/xmobar/config_second.hs +++ b/home/xmonad/.config/xmobar/config_second.hs @@ -1,10 +1,10 @@ Config { -- appearance - font = "xft:Mononoki Nerd Font-14:bold:antialias=true:hinting=true" + font = "xft:Mononoki Nerd Font-11:bold:antialias=true:hinting=true" , additionalFonts = [ - "xft:EmojiOne:bold:antialias=true:hinting=true" - ,"xft:FontAwesome:bold:antialias=true:hinting=true" + "xft:Fira Code-10:bold:antialias=true:hinting=True" + , "xft:Mononoki-10:bold:antialias=true:hinting=True" ] , bgColor = "#282828" , fgColor = "#ebdbb2" @@ -16,7 +16,7 @@ Config { -- layout , sepChar = "%" -- delineator between plugin names and straight text , alignSep = "][" -- separator between left-right alignment - , template = "--{%StdinReader%}---------------------------------------------------------------------------------------------------------------------------------][%xmobarstatus%" + , template = "--{%StdinReader%}————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————][%xmobarstatus2%" -- general behavior , lowerOnStart = False -- send to bottom of window stack on start @@ -45,7 +45,6 @@ Config { -- weather monitor [ Run Weather "RJTT" [ "--template", " | °C | % | hPa" ] 36000 - , Run Com "xmobarstatus" [] "" 10 -- network activity monitor (dynamic interface resolution) , Run DynNetwork [ "--template" , ": kB/s|kB/s" diff --git a/home/xmonad/.config/xmobar/gruvbox/config.hs b/home/xmonad/.config/xmobar/gruvbox/config.hs index 413b580..857056b 100644 --- a/home/xmonad/.config/xmobar/gruvbox/config.hs +++ b/home/xmonad/.config/xmobar/gruvbox/config.hs @@ -1,10 +1,10 @@ Config { -- appearance - font = "xft:Mononoki-11:bold:antialias=true:hinting=true" + font = "xft:Mononoki Nerd Font-11:bold:antialias=true:hinting=true" , additionalFonts = [ - "xft:Fira Code-10:bold:antialias=true:hinting=True" - , "xft:Mononoki-10:bold:antialias=true:hinting=True" + "xft:EmojiOne:bold:antialias=true:hinting=true" + ,"xft:FontAwesome:bold:antialias=true:hinting=true" ] , bgColor = "#282828" , fgColor = "#ebdbb2" @@ -16,7 +16,7 @@ Config { -- layout , sepChar = "%" -- delineator between plugin names and straight text , alignSep = "][" -- separator between left-right alignment - , template = "--{%StdinReader%}---------------------------------------------------------------------------------------------------------------------------------][{ %coretemp%}-{ %memory% }-{ %dynnetwork% }-{ %battery%}-{ %date% }-{ %kbd% }--" + , template = "--{%StdinReader%}------------------------------------------------------------------------------------------------------------------------------------------------------------------------][%xmobarstatus%" -- general behavior , lowerOnStart = False -- send to bottom of window stack on start @@ -45,6 +45,7 @@ Config { -- weather monitor [ Run Weather "RJTT" [ "--template", " | °C | % | hPa" ] 36000 + , Run Com "xmobarstatus" [] "" 10 -- network activity monitor (dynamic interface resolution) , Run DynNetwork [ "--template" , ": kB/s|kB/s" diff --git a/home/xmonad/.config/xmobar/gruvbox/config_second.hs b/home/xmonad/.config/xmobar/gruvbox/config_second.hs index 276ad20..f9e1fab 100644 --- a/home/xmonad/.config/xmobar/gruvbox/config_second.hs +++ b/home/xmonad/.config/xmobar/gruvbox/config_second.hs @@ -1,10 +1,10 @@ Config { -- appearance - font = "xft:Mononoki Nerd Font-14:bold:antialias=true:hinting=true" + font = "xft:Mononoki Nerd Font-11:bold:antialias=true:hinting=true" , additionalFonts = [ - "xft:EmojiOne:bold:antialias=true:hinting=true" - ,"xft:FontAwesome:bold:antialias=true:hinting=true" + "xft:Fira Code-10:bold:antialias=true:hinting=True" + , "xft:Mononoki-10:bold:antialias=true:hinting=True" ] , bgColor = "#282828" , fgColor = "#ebdbb2" @@ -16,7 +16,7 @@ Config { -- layout , sepChar = "%" -- delineator between plugin names and straight text , alignSep = "][" -- separator between left-right alignment - , template = "--{%StdinReader%}---------------------------------------------------------------------------------------------------------------------------------][%xmobarstatus%" + , template = "--{%StdinReader%}------------------------------------------------------------------------------------------------------------------------------------------------------------------------][%xmobarstatus2%" -- general behavior , lowerOnStart = False -- send to bottom of window stack on start @@ -45,7 +45,6 @@ Config { -- weather monitor [ Run Weather "RJTT" [ "--template", " | °C | % | hPa" ] 36000 - , Run Com "xmobarstatus" [] "" 10 -- network activity monitor (dynamic interface resolution) , Run DynNetwork [ "--template" , ": kB/s|kB/s" diff --git a/home/xmonad/.xmonad/.#xmonad.hs b/home/xmonad/.xmonad/.#xmonad.hs new file mode 120000 index 0000000..b94bc91 --- /dev/null +++ b/home/xmonad/.xmonad/.#xmonad.hs @@ -0,0 +1 @@ +horhik@lap.12603:1614299246 \ No newline at end of file diff --git a/home/xmonad/.xmonad/xmonad-x86_64-linux b/home/xmonad/.xmonad/xmonad-x86_64-linux index e0739cc..5150d81 100755 Binary files a/home/xmonad/.xmonad/xmonad-x86_64-linux and b/home/xmonad/.xmonad/xmonad-x86_64-linux differ diff --git a/home/xmonad/.xmonad/xmonad.hi b/home/xmonad/.xmonad/xmonad.hi index 763d000..b8f5674 100644 Binary files a/home/xmonad/.xmonad/xmonad.hi and b/home/xmonad/.xmonad/xmonad.hi differ diff --git a/home/xmonad/.xmonad/xmonad.hs b/home/xmonad/.xmonad/xmonad.hs index 2e3b6af..2e17827 100644 --- a/home/xmonad/.xmonad/xmonad.hs +++ b/home/xmonad/.xmonad/xmonad.hs @@ -34,6 +34,7 @@ import qualified Data.Map as M import GruvboxColors as Colors +home = "/home/horhik/" myTerminal = "alacritty" myEditor = "nvim" myMainDisplay = "eDP-1" @@ -141,9 +142,9 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ -- flameshot gui , ((modm .|. shiftMask, xK_s ), spawn "flameshot gui") - , ((modm .|. controlMask, xK_space ), spawn "$HOME/.local/scripts/deadd_notify") + , ((modm .|. mod1Mask , xK_space ), spawn "$HOME/.local/scripts/deadd_notify") -- change lang - , ((controlMask , xK_space ), spawn "setxkbmap -layout fi,ru,us; xkb-switch -n") + , ((modm, xK_Control_R) , spawn "xkblayout-state set +1") -- toggle fullscreen , ((mod4Mask .|. shiftMask, xK_f), sendMessage ToggleStruts) @@ -152,14 +153,14 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ , ((modm .|. controlMask .|. shiftMask, xK_h), namedScratchpadAction myScratchpads "htop") , ((modm .|. shiftMask , xK_a), namedScratchpadAction myScratchpads "anki") , ((modm .|. shiftMask , xK_m), namedScratchpadAction myScratchpads "pulse") + , ((modm .|. shiftMask , xK_n), namedScratchpadAction myScratchpads "notion") , ((modm .|. shiftMask , xK_d), namedScratchpadAction myScratchpads "todoist") - , ((modm .|. shiftMask , xK_e), namedScratchpadAction myScratchpads "pomo") + , ((modm , xK_d), namedScratchpadAction myScratchpads "pomo") -- | Programs , ((modm .|. shiftMask, xK_z), spawn "zathura &") -- book reader (zathura) , ((modm .|. shiftMask, xK_b), spawn "firefox" ) -- browser , ((modm .|. controlMask, xK_e), spawn "/usr/bin/emacs &" ) -- editor (emacs) - , ((modm .|. shiftMask, xK_n), spawn "firefox --new-tab https://www.notion.so/horhi ") -- noteapp @@ -185,7 +186,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ -- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3 -- [((m .|. modm, key), screenWorkspace sc >>= flip whenJust (windows . f)) - | (key, sc) <- zip [xK_w, xK_e, xK_r] [0..] + | (key, sc) <- zip [xK_comma, xK_period, xK_r] [0..] , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]] ++ @@ -225,9 +226,9 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList $ -- The available layouts. Note that each layout is separated by |||, -- which denotes layout choice. -- -defaultGapSize = 5 +defaultGapSize = 10 defaultGaps = gaps [(U,defaultGapSize), (R,defaultGapSize), (D, defaultGapSize), (L, defaultGapSize)] -defaultSpaces = spacingRaw True (Border 5 5 5 5) True (Border 5 5 5 5) True +defaultSpaces = spacingRaw True (Border 10 10 10 10) True (Border 10 10 10 10) True spacesAndGaps = defaultSpaces . defaultGaps myLayout = smartBorders . avoidStruts $ spacesAndGaps $ tiled ||| Mirror tiled ||| Full @@ -285,6 +286,7 @@ myScratchpads = [ NS "terminal" spawnTerm findTerm manageTerm , NS "htop" "alacritty -t htop -e htop " (title =? "htop") defaultFloating , NS "pomo" "pomodone" (title =? "PomoDoneApp") defaultFloating + , NS "notion" "notion" (title =? "Notion") defaultFloating , NS "anki" spawnAnki findAnki manageAnki , NS "pulse" spawnPulse findPulse managePulse , NS "todoist" spawnTodoist findTodoist manageTodoist @@ -366,8 +368,8 @@ myLogHook (xmproc0, xmproc1) = dynamicLogWithPP $ xmobarPP { -- XMobar , ppUrgent = xmobarColor redColor "" . wrap "[" "]" , ppHidden = xmobarColor foregroundColor "" . noScratchPad , ppVisible = xmobarColor orangeColor "" . wrap "(" ")" - , ppSep = xmobarColor foregroundColor "" "}-----{" - , ppWsSep = "}-{" + , ppSep = xmobarColor cyanColor "" "}—————{" + , ppWsSep = xmobarColor cyanColor "" "}—{" , ppOrder = \(ws:l:t:ex) -> [ws]++ex++[t,l] -- {workspaces}-{title}--{layout} } @@ -386,14 +388,16 @@ myStartupHook = do spawnOnce "nitrogen --restore &" -- spawnOnce "compton --config ~/.config/compton/compton.conf &" spawnOnce "picom &" - spawnOnce "deadd-notification-center" - spawnOnce "setxkbmap us,ru, grp:alt_shift_toggle" - spawnOnce "$HOME/Scripts/startup/touchpad.sh" + spawnOnce "deadd-notification-center &" + spawnOnce "setxkbmap us,ru &" spawnOnce "sh ssh-agent bash ; ssh-add ~/.ssh/arch" - spawnOnce ("enact --pos top --watch") - spawnOnce ("xrandr --output HDMI1 --above eDP1") - spawnOnce ("$HOME/.local/scripts/status/launch&; $HOME/.local/scripts/touchpad.sh") - spawnOnce "xautolock -time 25 -locker 'i3lock-fancy' -notify 24 -notifier 'xkb-switch -s us' &" + spawnOnce "eval '$(ssh-agent -s)'; ssh-add ~/.ssh/id_rsa" + spawnOnce ("enact --pos top --watch &") + spawnOnce ("xrandr --output HDMI1 --above eDP1&") + spawnOnce (home ++ ".local/scripts/status/launch &") + spawnOnce (home ++ ".local/scripts/touchpad.sh &") + spawnOnce ("cd /home/horhik/Freenet/downloads/fms; ./fms --daemon &") + spawnOnce "xautolock -time 25 -locker i3lock-fancy-multimonitor -notifier 'xkb-switch -s us' &" spawnOnce "sleep 10; pulseaudio -k" ------------------------------------------------------------------------ diff --git a/home/xmonad/.xmonad/xmonad.o b/home/xmonad/.xmonad/xmonad.o index 186db39..2b186aa 100644 Binary files a/home/xmonad/.xmonad/xmonad.o and b/home/xmonad/.xmonad/xmonad.o differ