diff options
-rw-r--r-- | config/sway/daemons | 2 | ||||
-rwxr-xr-x | local/bin/allsync | 6 | ||||
-rwxr-xr-x | local/bin/startsway | 3 | ||||
m--------- | private | 0 | ||||
-rw-r--r-- | vim/ftplugin/c.vim | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/config/sway/daemons b/config/sway/daemons index 29b879f..1baec66 100644 --- a/config/sway/daemons +++ b/config/sway/daemons @@ -7,4 +7,4 @@ exec --no-startup-id { } for_window [class="Ferdi"] move scratchpad -exec ferdi +exec ferdium diff --git a/local/bin/allsync b/local/bin/allsync index e5bb633..db64b4e 100755 --- a/local/bin/allsync +++ b/local/bin/allsync @@ -126,4 +126,8 @@ sec "Passwords" pass git pull || fail "Passwords pull failed" pass git push || fail "Passwords push failed" -exit $ecode +if [ "${AUTORUN:-n}" = "y" ]; then + echo "Reported failure exit code: $ecode" >&2 +else + exit $ecode +fi diff --git a/local/bin/startsway b/local/bin/startsway index 76545b1..3982c19 100755 --- a/local/bin/startsway +++ b/local/bin/startsway @@ -4,9 +4,6 @@ exec 1> >(logger -s -t "${0##*/}") 2>&1 # Declare the current desktop export XDG_CURRENT_DESKTOP=sway -# Use GTK theme for QT applications -export QT_QPA_PLATFORMTHEME=gtk2 -export QT_STYLE_OVERRIDE='gtk2' # Fix fullscreen game offscreen export SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS=0 # To fix missing textures on intel diff --git a/private b/private -Subproject 9e3fb5c8a8c48bc1a26a68bc1c072d70447ced8 +Subproject 13956724dbf3420eede9fdcdb7cce6a3fdc9964 diff --git a/vim/ftplugin/c.vim b/vim/ftplugin/c.vim index df078c6..6916f13 100644 --- a/vim/ftplugin/c.vim +++ b/vim/ftplugin/c.vim @@ -1,4 +1,4 @@ -let b:ale_linters = ['ccls', 'cppcheck', 'flawfinder'] +let b:ale_linters = ['clangd', 'cppcheck', 'flawfinder'] let b:ale_fixers = ['clang-format', 'remove_trailing_lines', 'trim_whitespace'] let g:ale_c_ccls_init_options = {'cache': {'directory': '/tmp/ccls/cache'}, 'compilationDatabaseDirectory': 'build'} let g:ale_c_parse_compile_commands = 1 |