This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cmd/snapd/main.go b/cmd/snapd/main.go | |
index 741d998404..55d06d2d9c 100644 | |
--- a/cmd/snapd/main.go | |
+++ b/cmd/snapd/main.go | |
@@ -52,6 +52,10 @@ func init() { | |
} | |
func main() { | |
+ if _, found := os.LookupEnv("SNAPD_DISABLE_AUTOREFRESH"); found { | |
+ logger.Noticef("AutoRefresh disabled due to SNAPD_DISABLE_AUTOREFRESH environment variable being set") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gnu screen muscle memory | |
set -g prefix C-A | |
bind-key C-C new-window | |
bind-key C-A last-window | |
bind-key C-Space next-window | |
bind-key C-P previous-window | |
bind-key C-N next-window | |
bind-key C-D detach | |
bind-key -n Home send Escape "OH" | |
bind-key -n End send Escape "OF" |